Skip to main content
POST
/
v1
/
data
/
agnt
/
companies
/
discover
Discover companies
curl --request POST \
  --url https://api.agntdata.dev/v1/data/agnt/companies/discover \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "query": "Series A B2B SaaS companies in Europe under 50 employees",
  "limit": 25
}
'
{
  "success": true,
  "data": {},
  "meta": {
    "costCents": 123,
    "purchasedBalanceCents": 123,
    "subscriptionRemainingCents": 123,
    "cached": true,
    "latencyMs": 123,
    "priceRange": {
      "minCents": 123,
      "maxCents": 123
    },
    "budgetCents": 123,
    "budgetCentsPerRecord": 123,
    "providersAttempted": 123,
    "fieldsReturned": [
      "<string>"
    ],
    "fieldsMissing": [
      "<string>"
    ],
    "records": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://agnt.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer token. Pass your agntdata API key as: Authorization: Bearer agnt_live_...

Body

application/json
query
string

Free-text query (e.g. "AI startups in healthcare"). Combine with filters or use alone.

Minimum string length: 1
filters
object

Filter object. Supported keys (each is an array unless noted): industries (array of industry strings — e.g. ["Computer Software", "Internet"]); headcount (string range bucket — one of "1-10", "11-50", "51-200", "201-500", "501-1000", "1001-5000", "5001-10000", "10001+"); company_type (array — e.g. ["educational", "government", "nonprofit", "private", "public", "self_employed"]); technology (array of technology slugs — e.g. ["stripe", "salesforce"]); country (array of ISO-3166 alpha-2 codes — e.g. ["US", "GB"]). Use the keys above exactly as written; flat aliases like industry (singular), headcount_min, or headcount_max are ignored and yield empty results. Example: { "industries": ["Computer Software"], "headcount": "1001-5000", "country": ["US"] }.

Response

Discovery results.

success
enum<boolean>
required
Available options:
true
data
object
required
meta
object