search_credit_cards_by_keyword
paisabazaar.comSearches credit cards on https://paisabazaar.com by keyword terms across the main compare listing and top-10 card metadata, then returns matching cards from the main listing with all non-empty record fields.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_credit_cards_by_keyword?
Searches credit cards on https://paisabazaar.com by keyword terms across the main compare listing and top-10 card metadata, then returns matching cards from the main listing with all non-empty record fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, limit and get the result back without maintaining a scraper.
Response
{
"cards": [
{}
],
"count": 0,
"query": "<string>",
"terms": [
"<string>"
],
"source_url_main": "<string>",
"source_url_top10": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/65ee117f-523c-4125-8320-53415f0fe571/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "65ee117f-523c-4125-8320-53415f0fe571",
"variables": {
"query": "cashback, travel",
"limit": 25
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="65ee117f-523c-4125-8320-53415f0fe571") — the "search_credit_cards_by_keyword" function, which searches credit cards on https://paisabazaar.com by keyword terms across the main compare listing and top-10 card metadata, then returns matching cards from the main listing with all non-empty record fields.. It takes query (str), limit (int). Return the result as structured JSON.