Social marketing orders: followers, likes, views and more across 1000+ services
Social marketing orders: followers, likes, views and more across 1000+ services. Price is quoted per order (from $0.10) via GET /v1/smm-quote.
3000000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-26
updated
Provider
agent.connskill.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "base",
"payTo": "0x43B85AE58f0A2505c710Bc715d6f3EB16b1f63dE",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "3000000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"description": "Place a social marketing order: followers, likes, views and comments across 1000+ services",
"example": {
"link": "https://instagram.com/example",
"quantity": 500,
"serviceId": 1234
},
"inputSchema": {
"properties": {
"link": {
"description": "Ziel-URL/-Account",
"minLength": 1,
"type": "string"
},
"quantity": {
"minimum": 1,
"type": "integer"
},
"serviceId": {
"description": "SMMPanel Service-ID",
"type": "integer"
}
},
"required": [
"serviceId",
"link",
"quantity"
],
"type": "object"
},
"method": "POST",
"type": "http"
},
"output": {
"example": {
"chargeUsd": 0.05,
"orderId": "123456",
"status": "ordered"
},
"type": "json"
}
},
"schema": {
"properties": {
"input": {
"properties": {
"body": {
"properties": {
"link": {
"description": "Ziel-URL/-Account",
"minLength": 1,
"type": "string"
},
"quantity": {
"minimum": 1,
"type": "integer"
},
"serviceId": {
"description": "SMMPanel Service-ID",
"type": "integer"
}
},
"required": [
"serviceId",
"link",
"quantity"
],
"type": "object"
}
}
},
"output": {
"properties": {
"example": {
"chargeUsd": 0.05,
"orderId": "123456",
"status": "ordered"
}
}
}
}
}
}
}Use it
curl
curl "https://agent.connskill.com/smm/v1/smm-order" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://agent.connskill.com/smm/v1/smm-order");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://agent.connskill.com/smm/v1/smm-order")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/6890.json, and this resource appears in /discovery/resources and /discovery/search.