cloro

ChatGPT Brand Mentions API

The brands and products ChatGPT actually names, pre-extracted from the answer as typed JSON: each entity carries a name and a type (product, software, company, ...). Skip the NER pipeline — count mention share straight off the response and see who wins the recommendation on every prompt.

4.8 · 33 reviews G2.com software review platform logo
Used by the top SEO and AI SEO companies
1,000,000,000 monthly API calls

Named brands, pre-extracted

The result.entities array is included in the base ChatGPT request — every brand or product the answer names, deduplicated and typed.

Request example

python
import requests

response = requests.post(
  "https://api.cloro.dev/v1/monitor/chatgpt",
  headers={
    "Authorization": "Bearer sk_live_your_api_key_here",
    "Content-Type": "application/json"
  },
  json={
    "prompt": "what is the best crm for a small business",
    "country": "US"
  }
)

print(response.json())

Response example

200 OK application/json
{
  "success": true,
  "result": {
    "text": "For small businesses, the CRMs most often recommended are HubSpot, Pipedrive, and Zoho CRM...",
    "entities": [
      {
        "type": "software",
        "name": "HubSpot"
      },
      {
        "type": "software",
        "name": "Pipedrive"
      },
      {
        "type": "software",
        "name": "Zoho CRM"
      }
    ]
  }
}

Entity fields, documented

Field Type Description
type string Entity type identifier (e.g. "product", "software", "company").
name string Entity name or title as ChatGPT rendered it.

Pricing that scales with you

Pick a plan that fits your volume. Price per credit drops as you scale.

Hobby
$100/mo
250,000 credits
  • $0.40 per 1000 credits
  • 20 concurrent jobs
  • Email support
Starter
$250/mo
650,000 credits
  • $0.39 per 1000 credits
  • 50 concurrent jobs
  • Email support
Growth
$500/mo
1,350,000 credits
  • $0.37 per 1000 credits
  • 75 concurrent jobs
  • Priority email support
Most Popular
Business
$1,000/mo
2,800,000 credits
  • $0.36 per 1000 credits
  • 100 concurrent jobs
  • Priority email support
Enterprise
/mo
5,871,025 credits
  • $0.34 per 1000 credits
  • 135 concurrent jobs
  • Priority support
Enterprise$5,000+

Increased concurrency, overages on credits and credit discounts for annual contracts.

Know more

Credit cost per request varies by provider. The rates below apply to async/batch requests; sync requests add a +2 credit surcharge.

ChatGPT (full response) 7 credits
ChatGPT (web search) 5 credits
Perplexity 3 credits
Grok 4 credits
Copilot 5 credits
AI Mode 4 credits
AI Overview (incl. SERP) 5 credits
Gemini 4 credits
Google Search 3 credits +2/page
Google News 3 credits +2/page

ChatGPT full response includes query fan-out, ads, and shopping data. Google News uses the same pricing as Google Search.

Estimate your monthly cost and plan

7 credits each
5 credits each
3 credits each
4 credits each
5 credits each
4 credits each
4 credits each
3 credits / 1 page
3 credits / 1 page
Monthly requests
0
Credits needed
0
Recommended plan:

ChatGPT entity extraction, answered

Why use pre-extracted entities instead of parsing the answer text?+

Brand names in prose are messy: abbreviations, possessives, product-line variants. Running your own NER over answer text means maintaining a model and a brand dictionary. The entities array gives you ChatGPT's own structured rendering of who it recommended — a stable key for counting.

How do I compute share of voice from entities?+

Run your category prompts on a schedule, count how often each brand appears in `entities` across samples, and divide by total runs. That mention rate — trended over time and compared with competitors — is the core AI share-of-voice metric. See AI visibility tracking for the full methodology.

How do entities relate to sources and citations?+

Entities are who the answer names; sources are which pages taught it that. A brand can be mentioned without being cited (and vice versa) — tracking both tells you whether your visibility comes from your own content or from third parties.

Do entities cost extra?+

No — entities ship in the base 5-credit ChatGPT request alongside text, sources, and citation pills. See pricing for the full credit table.

Does this work for product-level tracking too?+

Yes — entities are typed, so you can separate company mentions from product mentions in one pass. For commerce prompts where ChatGPT renders full product carousels with prices and merchants, use the ChatGPT Shopping API alongside.

Count your ChatGPT mentions

Typed brand entities in every response — no NER pipeline needed.