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/v1Authentication
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/projectsPOST
/api/v1/projectsGET
/api/v1/projects/:idPUT
/api/v1/projects/:idDELETE
/api/v1/projects/:idPOST
/api/v1/ai/generateGET
/api/v1/webhooksPOST
/api/v1/webhooksSample Request
cURL
curl -X GET https://api.neurolinkxtech.com/v1/projects \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json"
Error Codes
200Success400Bad Request — invalid parameters401Unauthorized — missing or invalid token404Not Found429Rate Limited — slow down requests500Internal Server ErrorWebhooks
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.