API v2 available

Power your platform with the AdMove API.

A clean provider API for authorized partners and reseller platforms. Retrieve services, submit orders, check order status and manage account balance through a simple JSON interface.

Provider API endpoint
https://api.admove.org/api/v2/

Built for straightforward integration

Minimal setup, predictable responses and secure API-key authentication.

Services

Fetch active services with IDs, categories, rates and quantity limits.

Create Orders

Submit a service ID, target URL and quantity through a standard POST request.

Order Status

Retrieve current order status, charge and remaining quantity using the AdMove order ID.

Balance

Check the current API account balance programmatically in JSON format.

Integration

Simple POST + JSON workflow

Authenticate with your assigned API key and send the required action to the v2 endpoint.

HTTPS endpointAll API communication is sent through the secure AdMove API domain.
API-key authenticationEach authorized integration receives its own unique API key.
JSON responsesResponses are structured for easy integration with external platforms.
AdMove Provider APIVersion 2
Available
POST https://api.admove.org/api/v2/

key=YOUR_API_KEY
action=services

Example response:

[
  {
    "service": 1,
    "name": "Service Name",
    "type": "Default",
    "category": "Category",
    "rate": "0.05",
    "min": "1",
    "max": "10000000",
    "refill": false,
    "cancel": false
  }
]