API Documentation
HTTP Method | POST |
API URL | https://www.sharesupplier.com/api/ |
API Key | Your API Key |
Response Format | JSON |
Service List
PARAMETERS | DESCRIPTION |
key | Your API Key |
action | services |
Example Response
[ { "service": "1", "platform": "Facebook", "name": "Followers", "category": "First Category", "rate": "0.90", "min": "50", "max": "10000" }, { "service": "2", "platform": "Facebook", "name": "Likes", "category": "Second Category", "rate": "0.90", "min": "50", "max": "10000" } ]
Add Order
PARAMETERS | DESCRIPTION |
key | Your API Key |
action | add |
service | Service ID |
link | Link to page |
quantity | Needed quantity |
comments (in case the service is custom comments) | Comments list separated by \r\n or \n |
Example Response
{ "order": 23501 }
Order Status
PARAMETERS | DESCRIPTION |
key | Your API Key |
action | status |
order | Order ID |
Example Response
{ "charge": "0.27", "quantity": "1000", "status": "Processing", "currency": "USD" }
Multiple Order Status
PARAMETERS | DESCRIPTION |
key | Your API Key |
action | status |
orders | Order IDs separated by comma |
Example Response
{ "1": { "charge": "0.27", "quantity": "1000", "status": "Cancelled", "currency": "USD" }, "10": { "error": "Incorrect order ID" }, "100": { "charge": "1.44", "quantity": "1000", "status": "Processing", "currency": "USD" } }
User Balance
PARAMETERS | DESCRIPTION |
key | Your API Key |
action | balance |
Example Response
{ "balance": "100.84", "currency": "USD" }