Docs/API Reference
REST API v1

API Reference

The NeuroLinkX API uses standard RESTful conventions over HTTPS. All requests and responses use JSON. Authenticate using Bearer tokens.

Base URL
https://api.neurolinkxtech.com/v1

Authentication

All API requests require a Bearer token in the Authorization header.

Request Header
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

Endpoints

GET/api/v1/projects
POST/api/v1/projects
GET/api/v1/projects/:id
PUT/api/v1/projects/:id
DELETE/api/v1/projects/:id
POST/api/v1/ai/generate
GET/api/v1/webhooks
POST/api/v1/webhooks

Sample Request

cURL
curl -X GET https://api.neurolinkxtech.com/v1/projects \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

Error Codes

200Success
400Bad Request — invalid parameters
401Unauthorized — missing or invalid token
404Not Found
429Rate Limited — slow down requests
500Internal Server Error

Webhooks

Register webhook URLs to receive real-time event notifications. NeuroLinkX will send a POST request to your endpoint for each event.

Webhook payloads are signed with HMAC-SHA256. Always verify the X-NLX-Signature header before processing.
Need API support?
Our engineering team can help with integration.
Contact Engineering →