Developer API.

Integrate DoubleTmedia's industry-leading social infrastructure into your own applications. Our robust REST API allows for seamless order automation, service sync, and balance management.

Getting Started

Our API is built on REST principles and returns JSON-encoded responses. The base URL for all requests is:

http://localhost:3001/api

All requests must be made over HTTPS in production. Ensure your application handles rate limiting gracefully to avoid temporary suspensions.

Authentication

To authenticate your requests, you must include your personal Bearer token in the `Authorization` header of every request.

Header Example
Authorization: Bearer YOUR_API_KEY_HERE

Create Order

Place a new order for any social boosting service available in our catalog.

POST/orders
Request Payload (JSON)
{
  "serviceId": "inst-001",
  "link": "https://instagram.com/p/yourpost",
  "quantity": 1000,
  "comments": "" // Optional
}
Response (201 Created)
{
  "id": 84201,
  "status": "pending",
  "charge": "4.50",
  "currency": "USD",
  "remains": 1000
}

Need custom
API higher limits?

If you're processing over 100,000 orders monthly, contact our engineering team for dedicated infrastructure and private endpoints.

Contact Engineering