Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.neuro-tech.io/llms.txt

Use this file to discover all available pages before exploring further.

API basics

Base URL

All API requests are made to:
https://api.neuro-tech.io/v1

HTTP methods

MethodUsage
GETRetrieve a resource or list of resources
POSTCreate a new resource
PUTReplace an existing resource
PATCHPartially update a resource
DELETERemove a resource

Request structure

Requests should include the following headers:
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
Accept: application/json

Response structure

All responses are returned as JSON with the following envelope:
{
  "data": { ... },
  "meta": {
    "requestId": "abc123",
    "timestamp": "2026-05-13T00:00:00Z"
  }
}

Pagination

List endpoints support cursor-based pagination via cursor and limit query parameters:
GET /v1/resources?limit=20&cursor=NEXT_CURSOR