Build powerful integrations with our RESTful API
Generate an API key from your account dashboard under Settings → API Keys.
API Key: sk_live_abc123def456...
Use any HTTP client to make requests to our API endpoints.
curl https://api.nexusworkai.com/v1/...
Retrieve a list of users in your organization.
GET https://api.nexusworkai.com/v1/users
Create a new project with AI-powered planning.
POST https://api.nexusworkai.com/v1/projects
Content-Type: application/json
{
"name": "My Project",
"description": "Project description"
}
Update an existing project.
PUT https://api.nexusworkai.com/v1/projects/123
Delete a project permanently.
DELETE https://api.nexusworkai.com/v1/projects/123
All API requests must include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEY
Check our documentation or contact our developer support team.