Official reference for all endpoints of the Ezkify Global API (v2).
Base URL
https://ezkify.com/api/v2
HTTP Method
POST
Content-Type
application/x-www-form-urlencoded
Authentication
Include your API key in every request:
key=YOUR_API_KEY
All responses are JSON.
| Action | Description | Main Parameters | Response Type |
|---|---|---|---|
balance |
Get account balance | — | Object |
services |
List all available services | — | Array of objects |
add |
Create new order | service, link, quantity, … | Object (order ID) |
status |
Check status (single order) | order | Object |
status |
Check status (multiple orders) | orders (comma-separated) | Object (map) |
refill |
Request refill | order or orders | Object (refill ID) |
refill_status |
Check refill status | refill or refills | Object or map |
cancel |
Cancel orders | orders (comma-separated) | Object (map) |
Parameters
key(required)action=balance
Example Request
key=abc123def456
action=balance
Success Response
{
"balance": "142.80",
"currency": "USD"
}Parameters
key(required)action=services
Success Response
[
{
"service": 142,
"name": "Instagram - Premium Followers",
"rate": "0.95",
"min": "50",
"max": "15000",
"refill": true,
"category": "Instagram"
},
{
"service": 289,
"name": "TikTok - Real Likes",
"rate": "2.10",
"min": "100",
"max": "100000",
"refill": false
}
// ... more services
]Common Parameters
key(required)action=addservice(required) – service ID fromserviceslink(usually required) – URL or username
Type-specific parameters
| Order Type | Required / Common Fields | Notes |
|---|---|---|
| Default | quantity |
Followers, likes, views |
| Custom Comments | comments (newline-separated) |
\n between comments |
| Package / Auto | — (quantity taken from service package) | No quantity needed |
| Drip-feed / Subscription | min, max, delay, posts, expiry |
expiry format: MM/DD/YYYY |
| Poll Votes | answer_number |
Poll option index |
Success Response
{
"order": 567890123
}Error Example
{
"error": "Quantity less than minimum"
}Parameters
keyaction=statusorder(required) – order ID
Success Response
{
"status": "Completed",
"remains": "0",
"start_count": "1240",
"charge": "1.85"
}Possible status values:
Pending, In progress, Completed, Partial, Canceled, Processing
Parameters
action=statusorders– comma-separated IDs (max ~100)
Success Response
{
"567890123": {
"status": "Partial",
"remains": "450",
"start_count": "550",
"charge": "0.90"
},
"567890124": {
"status": "Completed",
"remains": "0",
...
}
}refill Parameters
action=refillorder(single) ororders(comma-separated)
Success Response
{
"refill": 901234
}refill_status Parameters
action=refill_statusrefill(single) orrefills(comma-separated)
Success Response
{
"status": "Completed"
}Parameters
action=cancelorders– comma-separated IDs
Success Response
{
"567890123": "Canceled",
"567890124": "Already completed"
}All errors follow this format:
{
"error": "Error message here"
}Common messages:
Invalid API keyInvalid serviceInsufficient balanceInvalid linkQuantity less than minimumQuantity more than maximumOrder not foundService is not available
- Working PHP client:
/example.php - Common errors & fixes:
errors.md - Usage examples:
../examples/
Questions? Contact support via your dashboard or Telegram.