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 · 42 reviewsG2.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
from cloro import Cloro

client = Cloro(api_key="sk_live_your_api_key_here")

response = client.monitor.chatgpt(
    prompt="what is the best crm for a small business",
    country="US",
)

print(response["result"]["text"])

Response example

200 OKapplication/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

FieldTypeDescription
typestringEntity type identifier (e.g. "product", "software", "company").
namestringEntity name or title as ChatGPT rendered it.

Pricing that scales with you

Start free. Price per credit drops as your volume grows — see every tier below.

Free
$0/mo
500 credits / month
  • Added monthly
  • 1 concurrent job
  • 1 seat
  • Community support
Lite
$30/mo
37,500 credits
  • $0.80 per 1k credits
  • 10 concurrent jobs
  • Unlimited seats
  • Email support
Hobby
$100/mo
250,000 credits
  • $0.40 per 1k credits
  • 20 concurrent jobs
  • Unlimited seats
  • Email support
Most Popular
Starter
$250/mo
650,000 credits
  • $0.39 per 1k credits
  • 50 concurrent jobs
  • Unlimited seats
  • Email support
Scale
$500+/mo
More credits
  • Volume discounts
  • More concurrency
  • Unlimited seats
  • Faster support
Compare all 11 tiers
PlanPrice / moCreditsPer 1kConcurrencySeatsSupport
Free$050011Community
Lite$3037,500$0.8010UnlimitedEmail
Hobby$100250,000$0.4020UnlimitedEmail
StarterPopular$250650,000$0.3950UnlimitedEmail
Growth$5001,350,000$0.3775UnlimitedPriority email
Business$1,0002,800,000$0.36100UnlimitedPriority email
Enterprise 2K$2,0005,871,025$0.34135UnlimitedSlack
Enterprise 3K$3,0009,306,606$0.32175UnlimitedSlack
Enterprise 4K$4,00012,756,261$0.31215UnlimitedSlack
Enterprise 5K$5,00016,391,783$0.31255UnlimitedSlack
Enterprise$5,000+Increased concurrency, overages on credits and credit discounts for annual contracts.Know more

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.