Hey, I'm planning to use firecrawl for a

Hey, I'm planning to use firecrawl for a project in which I need to basically check the news for new data breaches & if so find if jira was the issue ( jira fail counter xd )
3 Replies
Gaurav Chadha
Gaurav Chadha3w ago
Hey @fizz, search with category will be the best to use here https://docs.firecrawl.dev/features/search#search-categories add jira in category, and update your data body like:
{
"query": "data breach latest news",
"categories": ["jira", "news"],
"limit": 10,
"scrapeOptions": {
"formats": ["markdown", "links"]
}
}'
{
"query": "data breach latest news",
"categories": ["jira", "news"],
"limit": 10,
"scrapeOptions": {
"formats": ["markdown", "links"]
}
}'
Firecrawl Docs
Search | Firecrawl
Search the web and get full content from results
fizz
fizzOP3w ago
Oh this is amazing, is there a way to then get fixed data e.g company, date etc
Gaurav Chadha
Gaurav Chadha3w ago
Yes, you can use query parameters - https://docs.firecrawl.dev/api-reference/endpoint/search#supported-query-operators, example "query": "data breach latest news site:cnn.com"

Did you find this page helpful?