nvNeuralVerge

Documentation

A quick look at how requests to the NeuralVerge API work. For the full reference — every endpoint, parameter, and response schema — see the complete documentation.

Quickstart
curl https://api.neuralverge.ai/v1/search \
  -H "Authorization: Bearer <API_KEY>" \
  -H "Content-Type: application/json" \
  -d '{ "query": "series B fintech startups in Estonia" }'
Authentication

Every request is authenticated with a bearer token in the Authorization header:

Authorization: Bearer <API_KEY>

Generate an API key from the dashboard after signing up.

Example

Illustrative example — exact endpoint paths and response schema are defined in the full API documentation.

Request
POST /v1/search
Authorization: Bearer <API_KEY>
Content-Type: application/json

{
  "query": "series B fintech startups in Estonia",
  "sources": ["company-intelligence", "corporate-registry"]
}
Response
{
  "results": [
    {
      "name": "Example Fintech OÜ",
      "country": "EE",
      "source": "Ariregister",
      "summary": "..."
    }
  ],
  "points_used": 5
}

Ready to start building?

Get an API key and read the full docs for every endpoint and parameter.