The SMM Africa API is a single, action-based endpoint for catalog, balance, order, status, refill, and cancellation workflows. It accepts JSON, URL-encoded fields, and field-only multipart form data, so common reseller panels can integrate without an adapter.
The API does not remove supplier variability or the reseller's responsibilities. A sound integration keeps a current service snapshot, maps each client to the SMM Africa order ID, preserves the submitted target and quantity, and presents status and refund or refill eligibility accurately.
Endpoint and authentication
Send an HTTPS POST request to https://smm.africa/api/v3 with JSON, application/x-www-form-urlencoded, or field-only multipart/form-data. Authenticate with Authorization: Bearer YOUR_API_KEY or the standard key field. URL-encoded fields are recommended for common reseller panels.
curl -X POST https://smm.africa/api/v3 -H "Content-Type: application/x-www-form-urlencoded" --data-urlencode "key=YOUR_API_KEY" --data-urlencode "action=balance" Keep the key on the server. Do not ship it in browser JavaScript, a mobile bundle, a public repository, client-visible logs, analytics events, or screenshots. Rotate it from the account security controls if it may have been exposed.
The six documented actions
- services: returns the current service catalog.
- balance: returns the shared wallet balance and currency.
- add: submits an order for a current service ID, target, and quantity.
- status: returns operational fields for one SMM Africa order ID.
- refill: requests refill review for an eligible order.
- cancel: requests cancellation for an eligible order.
All six actions use the same endpoint. The action value decides the request and response shape.
Fetch services before exposing a catalog
The services response documents a service ID, name, type, category, rate, minimum, maximum, refill flag, and cancel flag. The rate is expressed per 1,000 in the wallet currency. Service IDs, prices, limits, names, and flags can change, so do not hard-code them as permanent product facts.
A reseller can cache the response for usability, but should record when it was fetched and refresh it before accepting an order. If the client-facing catalog changes a name or price, keep the original SMM Africa service ID and the details shown when the order was placed.
Place an order with the add action
The add action requires service, link, and quantity. Optional runs and interval fields apply only to compatible drip-feed services. Validate the target against the live service note and keep quantity between the current minimum and maximum.
{ "action": "add", "service": 1234, "link": "https://instagram.com/your-profile", "quantity": 500
} A successful response returns an order value. Store that ID immediately with the client reference, service snapshot, target, submitted quantity, expected charge, and timestamp. The reseller owns this mapping; the API cannot infer which end customer or invoice belongs to the order.
Represent status accurately
The status action accepts the SMM Africa order ID. The documented response can include charge, start count, order status, remains, and currency. Possible status labels include Pending, In progress, Processing, Partial, Completed, and Canceled.
Use these fields to show order progress in a client portal. Keep campaign reporting separate and use the social platform's analytics for reach, engagement, and audience response.
Refill and cancellation are requests, not promises
The refill and cancel actions both use an order ID. A current service flag can indicate whether an action is exposed, but final eligibility still depends on the service, order state, timing, provider response, and published policy.
Do not promise a client that every drop will be refilled or that every submitted order can be canceled. Preserve the original listing, order timestamps, and response so support has the evidence needed for review.
Error handling and polling
- 400: inspect the request and required fields.
- 401: stop and review the key; do not retry invalid credentials continuously.
- 429: respect the
Retry-Afterheader and back off. - 500: log a redacted correlation record and retry conservatively rather than creating duplicate orders.
Never log the full Bearer token. If a network error occurs after sending add, check whether the order was created before submitting the same client request again.
A safer integration sequence
- Read the human API reference and OpenAPI document.
- Test authentication with
balanceand inspect the currentservicesresponse. - Place a small manual order for the exact service ID and target type you plan to expose.
- Observe order status, timing variability, and any refill or cancel behavior.
- Build the server-side client, service snapshot, order mapping, redacted logs, and rate-limit handling.
- Explain delivery, platform, retention, support option, and outcome boundaries in your own client terms.
Bottom line
An SMM panel API can make a tested workflow easier to operate. Use the current documentation, keep the service ID and order ID, secure the key, and present order status accurately to clients.