# CONNSKILL SMM Order — Social Media Marketing Panel Order

> CONNSKILL SMM Order — Social Media Marketing Panel Order is a paid API for AI agents from agent.connskill.com, paid per call via x402, $3/call, status unknown (last checked 2026-09-13).

Places a social media marketing (SMM) panel order for a target URL or account, purchasing a specified quantity of a service (e.g. followers, likes, views) identified by a panel service ID.

## Facts

- Endpoint: POST https://agent.connskill.com/smm/v1/smm-order
- Price: $3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/connskill-smm-order-social-media-marketing-panel-order-e68566b7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wOm9ZAvmJz7qt0xyFKgsN

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability connskill-smm-order-social-media-marketing-panel-order-e68566b7 -d '<json body>'
```

Example prompt: Place an SMM panel order to get 500 followers for my Instagram account at https://instagram.com/mybrand — use service ID 1042 and charge in USDC.

## When to prefer this

Choose this endpoint when an agent needs to programmatically place a social media marketing order (followers, likes, views, etc.) on behalf of a user via a pay-per-call USDC model with no account or API key required. It is ideal for automation pipelines that need to trigger SMM panel orders without a subscription or monthly commitment.

## Known failure modes

- Invalid or unsupported serviceId returns an error response
- Quantity below or above panel limits causes rejection
- Malformed or unreachable link URL causes order failure
- Insufficient USDC balance or x402 payment failure prevents order placement
- Service temporarily unavailable from the SMM panel backend

## How this service works

Social marketing orders: followers, likes, views and more across 1000+ services. Price is quoted per order (from $0.10) via GET /v1/smm-quote.

## Output

Returns a JSON object with the order status ('ordered'), a unique order ID string, and the actual charge in USD (e.g. {status: 'ordered', orderId: '123456', chargeUsd: 0.05}). The agent can use the orderId to track or reference the order later.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "link",
  "quantity",
  "serviceId"
 ],
 "properties": {
  "link": {
   "type": "string",
   "description": "Ziel-URL/-Account"
  },
  "quantity": {
   "type": "number",
   "description": "Menge (min/max je Service)"
  },
  "serviceId": {
   "type": "number",
   "description": "SMMPanel Service-ID (via GET /v1/smm-services suchen)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "status": {
   "type": "string"
  },
  "orderId": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/connskill-smm-order-social-media-marketing-panel-order-e68566b7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent.connskill.com](https://www.zero.xyz/host/agent.connskill.com/llms.txt)
