nvNeuralVerge
API

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.

What you can call

AI research, AI extraction, and the full source catalog

How it works

Key, request, response

Three steps between signing up and your first structured result.

01
Get an API key

Create an account and generate a key from the dashboard.

02
Make a request

Call any endpoint over HTTPS with your key in the Authorization header.

03
Get structured JSON

Every response returns the same consistent shape, ready to parse.

AI research

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"
  }'
More on AI research →
AI extraction

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"
  }'
More on AI extraction →
FAQ

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.

Start building with the API

Get an API key and start making calls in minutes.