Developer API

Integrate our services directly into your applications. Automate orders, check statuses, and manage your account programmatically.

Getting Started

The Tetherflux API is strictly RESTful. All responses are JSON formatted. You can use the API to place orders, check order status, and retrieve your balance.

Base URL: https://tetherflux.com/api/v2

Endpoints

POST/order

Place a new order for a service.

{
  "key": "YOUR_API_KEY",
  "action": "add",
  "service": 1,
  "link": "https://instagram.com/p/...",
  "quantity": 1000
}
POST/status

Check the status of multiple orders.

{
  "key": "YOUR_API_KEY",
  "action": "status",
  "orders": "123,124,125"
}
POST/balance

Retrieve current user balance.

{
  "key": "YOUR_API_KEY",
  "action": "balance"
}