Search the company database by name, industry, NAICS code, keywords, location, and employe
Search the company database by name, industry, NAICS code, keywords, location, and employee count. Returns paginated company profiles. Billed per company returned, up to page_size.
200000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-01
updated
Provider
agents.bytemine.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "upto",
"network": "eip155:8453",
"payTo": "0x846c88e9b807b86d6de52c252b88498fd1e6e84d",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "200000",
"maxTimeoutSeconds": 1800
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {},
"bodyType": "json",
"method": "POST",
"type": "http"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"city": {
"type": "string"
},
"country": {
"description": "Country code, for example US, GB, DE.",
"type": "string"
},
"has_website": {
"type": "boolean"
},
"industry": {
"description": "Industry name filter, for example Information Technology and Services.",
"type": "string"
},
"keywords": {
"description": "Keywords matched against company descriptions.",
"type": "string"
},
"max_employees": {
"type": "integer"
},
"min_employees": {
"type": "integer"
},
"naics_code": {
"description": "NAICS classification code, for example 5112.",
"type": "string"
},
"page": {
"description": "Page number. Default 1.",
"type": "integer"
},
"page_size": {
"description": "Results per page. Default 20, max 100.",
"type": "integer"
},
"query": {
"description": "Company name or keyword search.",
"type": "string"
},
"state": {
"description": "US state 2 letter code.",
"type": "string"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"zeroclick": {
"info": {
"payment": {
"amountUsd": "0.200000",
"id": "apay_topiR_mAZ698-yqmAGSZu"
},
"requestId": "zcreq_HCeYfNjL3lPhxsRlf9_G8",
"service": "company-search"
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"agentId": {
"type": "string"
},
"payment": {
"properties": {
"amountUsd": {
"type": "string"
},
"id": {
"type": "string"
}
},
"required": [
"id",
"amountUsd"
],
"type": "object"
},
"requestId": {
"type": "string"
},
"service": {
"type": "string"
}
},
"required": [
"payment"
],
"type": "object"
}
}
}Use it
curl
curl "https://agents.bytemine.ai/functions/v1/api-gateway/b2b-search" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://agents.bytemine.ai/functions/v1/api-gateway/b2b-search");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://agents.bytemine.ai/functions/v1/api-gateway/b2b-search")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/8857.json, and this resource appears in /discovery/resources and /discovery/search.