API Documentationfor Developers
Build powerful integrations with our comprehensive REST API. Access all Asyner features programmatically with our developer-friendly endpoints.
Quick Start
Get up and running with our API in minutes
Code Example
// Initialize the Asyner API client
const asyner = new AsynerAPI({
apiKey: 'your-api-key',
baseURL: 'https://api.asyner.xyz'
});
// Create a new task
const task = await asyner.tasks.create({
title: 'Complete project documentation',
description: 'Write comprehensive documentation for the new feature',
assignee_id: 'user-123',
due_date: '2024-02-15T10:00:00Z'
});
// Get all tasks
const tasks = await asyner.tasks.list({
limit: 10,
status: 'pending'
});
// Update task status
await asyner.tasks.update(task.id, {
status: 'completed'
});
Getting Started
Get Your API Key
Sign up for a free account and generate your API key from the dashboard.
Install SDK
Choose your preferred language and install our official SDK.
Make Your First Request
Start with simple requests and gradually build complex integrations.
API Endpoints
Comprehensive REST API for all Asyner features
/api/v1/tasks
Retrieve all tasks for the authenticated user
Parameters
limit
integerNumber of tasks to return (max 100)offset
integerNumber of tasks to skipstatus
stringFilter by task status/api/v1/tasks
Create a new task
Parameters
title
stringrequiredTask titledescription
stringTask descriptionassignee_id
stringUser ID of the assigneedue_date
stringDue date in ISO format/api/v1/tasks/{id}
Retrieve a specific task by ID
Parameters
id
stringrequiredTask ID/api/v1/tasks/{id}
Update an existing task
Parameters
id
stringrequiredTask IDtitle
stringUpdated task titlestatus
stringUpdated task status/api/v1/tasks/{id}
Delete a task
Parameters
id
stringrequiredTask IDOfficial SDKs
Use our official SDKs to integrate Asyner into your applications
JavaScript/Node.js
Official SDK for JavaScript and Node.js applications
npm install @asyner/api-client
Python
Python SDK for data science and automation workflows
pip install asyner-api
PHP
PHP SDK for web applications and Laravel integration
composer require asyner/api-client
cURL
Direct HTTP requests using cURL or any HTTP client
No installation required
API Features
Everything you need to build powerful integrations
RESTful API
Clean, intuitive REST endpoints that follow industry standards
Secure Authentication
OAuth 2.0 and API key authentication with rate limiting
Real-time Updates
WebSocket support for real-time task updates and notifications
Global CDN
Fast API responses from our global content delivery network
Ready to Start Building?
Get your API key and start integrating Asyner into your applications today.