Introduction
Flashpoint.AI is a research data and insight platform. These docs cover everything you need to integrate Flashpoint.AI into your product or workflow.
What's here
- Quickstart — get a key, make your first request, see data come back
- Authentication — API keys, scopes, rotation
- API Reference — every endpoint, request, response
- Errors — error codes and how to recover
Design principles
The Flashpoint.AI API is designed around three commitments:
- REST over RPC. Every resource has a stable URL. Verbs map to HTTP methods.
- Stable contracts. Versions are pinned in the URL. Breaking changes get a new version, never a silent rewrite.
- Predictable errors. Every failure mode has a documented code, an HTTP status, and a recovery path.
For agents
Every page in these docs is available as raw markdown. Replace the path prefix with /raw to fetch the source:
GET https://docs.flashpoint.ai/quickstart → rendered HTML
GET https://docs.flashpoint.ai/raw/quickstart → raw markdown (text/markdown)
Or click View as markdown at the top of any page.
Conventions
- Code samples default to
curl. Tabs for language alternatives are coming. - Field names in prose are wrapped in backticks:
client_id,Authorization. - Required parameters are flagged inline. Optional parameters note their default.