Skip to main content

Product Pricing Data / Apollo

Access 2.1M+ product pricing records across 6 Indian e-commerce platforms using SQL queries. 0 credits — FREE

Parameters

ParameterTypeRequiredDescription
sqlstringYesSQL query to run against the product pricing database
limitintegerYesMaximum number of rows to return. Default: 100

Example

curl -X POST https://api.mindcase.co/api/v1/agents/tools/product-pricing-data/run \
  -H "Authorization: Bearer mk_live_abc123def456" \
  -H "Content-Type: application/json" \
  -d '{
    "params": {
      "sql": "SELECT * FROM products WHERE brand = '\''Samsung'\'' AND price < 50000",
      "limit": 100
    }
  }'

Find product links across e-commerce sites by search query. Returns matching product URLs from target sites. 1 credit/row

Parameters

ParameterTypeRequiredDescription
querystringYesProduct search string. E.g., "iPhone 15 Pro Max 256GB"
sitesarrayNoArray of target sites to search on. E.g., ["amazon.in", "flipkart.com"]
num_resultsintegerYesNumber of results to return. Default: 5. Range: 1-10

Example

curl -X POST https://api.mindcase.co/api/v1/agents/tools/product-link-finder/run \
  -H "Authorization: Bearer mk_live_abc123def456" \
  -H "Content-Type: application/json" \
  -d '{
    "params": {
      "query": "iPhone 15 Pro Max 256GB",
      "sites": ["amazon.in", "flipkart.com"],
      "num_results": 5
    }
  }'

Restaurant & Menu Data

Access 840K+ restaurants and 41M+ menu items from Zomato and Swiggy using SQL queries. 1 credit/row

Parameters

ParameterTypeRequiredDescription
sqlstringYesSQL query to run against the restaurant and menu database
limitintegerYesMaximum number of rows to return. Default: 100

Example

curl -X POST https://api.mindcase.co/api/v1/agents/tools/restaurant-menu-data/run \
  -H "Authorization: Bearer mk_live_abc123def456" \
  -H "Content-Type: application/json" \
  -d '{
    "params": {
      "sql": "SELECT * FROM restaurants WHERE city = '\''Mumbai'\'' AND rating > 4.0",
      "limit": 100
    }
  }'

Indian VC & Startup Funding Data

Access 18,000+ Indian startup funding deals from 2014-2026 using SQL queries. 1 credit/row

Parameters

ParameterTypeRequiredDescription
sqlstringYesSQL query to run against the funding deals database
limitintegerYesMaximum number of rows to return. Default: 100

Example

curl -X POST https://api.mindcase.co/api/v1/agents/tools/vc-funding-data/run \
  -H "Authorization: Bearer mk_live_abc123def456" \
  -H "Content-Type: application/json" \
  -d '{
    "params": {
      "sql": "SELECT * FROM deals WHERE round = '\''Series A'\'' AND year = 2025",
      "limit": 100
    }
  }'