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.

Base URLs

Production: https://api.neuro-admin.com

Authentication

Most endpoints require:
Authorization: Bearer <api_key>
See Authentication.

Content type

Neuro-Pay expects JSON request bodies:
Content-Type: application/json

Amounts and identifiers

  • Checkout amount values are sent in minor units.
  • Invoice responses return decimal amounts.
  • Resource identifiers are typically returned as strings such as:
    • customer_id
    • checkout_id
    • invoice_id
    • cid

Response style

The API returns plain JSON objects and arrays. A typical response looks like:
{
  "checkout_id": "ba3e9a3d911ca9e4413eb9e6dcaafec9",
  "status": "created",
  "mode": "test",
  "amount": 2000,
  "currency": "SEK"
}

Error handling

Common patterns include:
  • 400 Bad Request for missing parameters or invalid values
  • 403 Forbidden for missing, invalid, or expired API keys
  • 404 Not Found for some lookup endpoints such as token or profile fetches

Coverage in these docs