| Property | Value |
|---|---|
surfaces value | claude |
| Provider | Anthropic |
| Credits per capture | 6 |
| Commonly returns | answer, evidence.sources, evidence.mentions |
Every surface normalizes to the same Envelope. Code you write to parse a Claude result parses a ChatGPT, Perplexity, or Gemini result unchanged — that is the whole point. See Output formats.
Request
Add"claude" to surfaces on POST /v1/search. By default this is asynchronous: it returns 202 with a parent job and one child per surface × region. Poll GET /v1/jobs/:id or register a webhook for each child’s Envelope.
Response 202 Accepted
job_8t2q.claude.us — with GET /v1/jobs/job_8t2q.claude.us to fetch its Envelope.
Per-surface alias
POST /v1/search/claude targets Claude only and is sync by default — no ?mode=sync needed. It accepts two convenience fields: prompt (alias of query) and country (flat sugar for regions: [{ "country": "..." }]). It returns 200 with the Envelope inline.
Envelope
A completed Claude child returns the canonical Envelope. Below is a trimmed example —answer.markdown is always populated, and answer.blocks[].referenceIds point into evidence.sources.
text vs markdown vs blocks.
If Claude returns nothing for a prompt, the job still completes:
provenance.surfacePresent is false, job.warnings carries a surface_absent warning, and answer is empty. An empty capture costs no credits.Credits
Each successful Claude capture costs 6 credits — the full Envelope, every field included. Credits are charged only on success; failed or empty captures are free. See Credits.Regions
Request Claude in specific locations withregions. One child is created per surface × region, and each child’s provenance.region reports the requested vs effective location if it could not be honored exactly.
job_<id>.claude.us, job_<id>.claude.gb, and job_<id>.claude.de. See Regions.
Create a search
Full request body, sync variants, and idempotency.
The Envelope
Every field in the canonical per-surface result.
Output formats
How to read
text, markdown, and blocks.Credits
What each surface costs and when you are charged.