Service list
Returns the full live catalog: rate per 1,000, min/max, and per-service capability flags (refill, cancel, dripfeed). Cache it on your side — a minute is plenty.
Parameters
keystringrequiredfixedYour private API key from Account → API.
actionstringrequiredfixedMust be the literal string
services.
Notes
- Rates are per 1,000 units in USD.
minandmaxare strings on the wire — the canonical PerfectPanel shape. - The
typefield tells you whichaddvariant applies:Default,Package,Custom Comments,Mentions,Subscriptions, orDrip-feed. - Per-kind extras (
fixed_quantity,posts_per_delivery,max_runs_count) appear only on rows they apply to.
curl -X POST "https://smmhub.io/api/v2" \ -d "key=YOUR_API_KEY" \ -d "action=services"[ { "service": 1042, "name": "Instagram Followers — High Quality", "type": "Default", "category": "Instagram | Followers", "rate": "0.85", "min": "50", "max": "100000", "refill": true, "cancel": true, "dripfeed": true }, { "service": 2207, "name": "TikTok Views — Package", "type": "Package", "category": "Tiktok | Views", "rate": "1.20", "min": "1000", "max": "1000", "refill": false, "cancel": false, "dripfeed": false, "fixed_quantity": 1000 }]