API Reference
Comprehensive REST and GraphQL API documentation for MeerTech Agentic Core.
Authentication
All API requests require authentication using API keys. Include your key in the Authorization header:
Authorization: Bearer YOUR_API_KEYBase URL
https://api.meertech.comEndpoints
POST
/v1/agentsAuth Required
Create a new autonomous agent
| Name | Type | Required | Description |
|---|---|---|---|
| name | string | Yes | Agent identifier |
| behavior | string | Yes | autonomous | supervised | hybrid |
| capabilities | array | No | List of enabled capabilities |
GET
/v1/agents/{id}Auth Required
Retrieve agent details and status
| Name | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | Agent unique identifier |
POST
/v1/agents/{id}/tasksAuth Required
Assign a task to an agent
| Name | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | Agent identifier |
| description | string | Yes | Task description |
| data_source | string | No | Input data location |
| priority | integer | No | 1 (low) to 5 (critical) |
GET
/v1/tasks/{id}Auth Required
Get task status and results
| Name | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | Task identifier |
DELETE
/v1/agents/{id}Auth Required
Terminate and delete an agent
| Name | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | Agent identifier |
Rate Limits
API requests are rate-limited to ensure service stability:
- • Standard tier: 1,000 requests/hour
- • Pro tier: 10,000 requests/hour
- • Enterprise tier: Custom limits available