Getting Started
Introduction Authentication Rate Limits Errors
Tasks API
List Tasks Submit Task Get Task Status Cancel Task
Wallet API
Get Balance Withdraw Transaction History
IP & Node API
Get Proxy Node Status Compute Stats
⚡ Version 2.4

API Documentation

The FluxaAI REST API lets you manage tasks, wallet operations, and compute nodes programmatically. Available on Enterprise plans.

Base URL

https://api.fluxaai.online/v2

Authentication

All API requests must include your API key in the Authorization header:

# Example request
curl -X GET https://api.fluxaai.online/v2/tasks \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"
GET

List Tasks

/v2/tasks

Returns a paginated list of available tasks matching your filters.

Query Parameters

ParameterTypeDescription
categorystringFilter by task category (image, text, audio)
limitintegerNumber of results per page (default: 20, max: 100)
pageintegerPage number for pagination
// Response 200 OK
{
  "data": [{ "id": "task_abc123", "type": "image_label", "pay": 0.05 }],
  "total": 4820,
  "page": 1
}
POST

Submit Task

/v2/tasks/{task_id}/submit

Submit a completed task for validation and payment processing.

Need Enterprise API Access?

Contact our team to get your API keys and integration support.

Contact Sales