One REST API for research, extraction, and the source catalog
Every NeuralVerge capability — AI research, AI extraction, and the full data source catalog — is reachable as plain REST over HTTPS. Send a request with your API key and get back structured JSON, in the same response shape no matter which endpoint you call.
AI research, AI extraction, and the full source catalog
Key, request, response
Three steps between signing up and your first structured result.
Create an account and generate a key from the dashboard.
Call any endpoint over HTTPS with your key in the Authorization header.
Every response returns the same consistent shape, ready to parse.
Call it like any other endpoint
Ask a question, get back a synthesized answer with inline citations.
Illustrative example — exact endpoint paths and response schema are defined in the full API documentation.
curl https://api.neuralverge.ai/v1/research \
-H "Authorization: Bearer <API_KEY>" \
-H "Content-Type: application/json" \
-d '{
"query": "Summarize the corporate structure and ownership of Acme Oy (Finland)",
"depth": "core"
}'Same shape, different endpoint
Point at a URL, get back clean, structured JSON.
Illustrative example — exact endpoint paths and response schema are defined in the full API documentation.
curl https://api.neuralverge.ai/v1/extract \
-H "Authorization: Bearer <API_KEY>" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com/company/acme"
}'Questions, answered
Every request carries a bearer token in the Authorization header. Generate an API key from the dashboard after signing up.
Usage is billed in points per call — see Action costs on the Pricing page.