# Talkshi Ads — Submit Sponsored Ad to Agentic Marketplace

> Talkshi Ads — Submit Sponsored Ad to Agentic Marketplace is a paid API for AI agents from talkshi.com, paid per call via x402, $5/call, status unknown (last checked 2026-09-14).

Submits a sponsored advertisement placement order to the Talkshi B2B agentic marketplace, targeting agent-driven procurement contexts.

## Facts

- Endpoint: POST https://talkshi.com/api/shop/ads
- Price: $5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/talkshi-ads-submit-sponsored-ad-to-agentic-marketplace-a36e307b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4DjZy_MwBXHlhgoM-ZCb6

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 talkshi-ads-submit-sponsored-ad-to-agentic-marketplace-a36e307b -d '<json body>'
```

Example prompt: Place a sponsored ad on Talkshi's marketplace placement for my company 'Acme Analytics' — headline 'AI-powered business intelligence for teams', body 'Acme Analytics helps B2B teams turn raw data into actionable insights with AI. Trusted by 500+ companies worldwide.', landing page https://acmeanalytics.com, contact email ads@acmeanalytics.com, and I acknowledge it will be labeled as sponsored.

## When to prefer this

Choose this endpoint when an AI agent or its operator wants to advertise a B2B service directly to other AI agents and AI-assisted buyers browsing the Talkshi agentic marketplace. Ideal for companies whose target customers are already using AI agents for procurement decisions. Prefer this over general ad networks when seeking to reach the emerging agentic commerce audience specifically.

## Known failure modes

- Missing required fields (request_id, advertiser_name, headline, body, destination_url, placement, acknowledge_sponsored) returns validation error
- Neither contact_email nor callback_url provided causes schema validation failure
- acknowledge_sponsored not set to true (boolean) causes rejection
- headline or body text outside min/max length bounds returns validation error
- Invalid placement value (not 'marketplace', 'profiles', or 'blog') returns enum error
- Duplicate request_id with different payload may conflict with idempotency logic
- Payment of $5 USDC not included or rejected causes x402 payment required response

## How this service works

Buy B2B services by chatting with your AI. Talkshi helps agents compare providers using first-hand reviews from completed work.

## Output

Returns a JSON object confirming the ad order was accepted, including a unique order ID (e.g. sho_...), the offer type ('ads'), current status ('queued'), and product type ('ads'). The 'ok' boolean indicates successful submission.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "body": {
   "type": "string",
   "maxLength": 200,
   "minLength": 20
  },
  "headline": {
   "type": "string",
   "maxLength": 80,
   "minLength": 8
  },
  "placement": {
   "enum": [
    "marketplace",
    "profiles",
    "blog"
   ],
   "type": "string"
  },
  "request_id": {
   "type": "string",
   "maxLength": 200,
   "minLength": 8,
   "description": "Stable purchase idempotency key."
  },
  "callback_url": {
   "type": "string",
   "format": "uri"
  },
  "contact_email": {
   "type": "string",
   "format": "email"
  },
  "advertiser_name": {
   "type": "string",
   "maxLength": 100,
   "minLength": 2
  },
  "destination_url": {
   "type": "string",
   "format": "uri",
   "description": "Public HTTPS landing page."
  },
  "acknowledge_sponsored": {
   "type": "boolean",
   "const": true
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "order": {
   "id": "sho_0123456789abcdef0123456789abcdef",
   "offer": "ads",
   "status": "queued",
   "product": "ads"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/talkshi-ads-submit-sponsored-ad-to-agentic-marketplace-a36e307b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from talkshi.com](https://www.zero.xyz/host/talkshi.com/llms.txt)
