# ProductClank Product Listing

> ProductClank Product Listing is a paid API for AI agents from www.productclank.com, paid per call via x402, $19/call, status unknown (last checked 2026-09-16).

Submit a product to the ProductClank directory so real people can discover and take action on it

## Facts

- Endpoint: POST https://www.productclank.com/api/x402/product-listing
- Price: $19/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/productclank-product-listing-957a839f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LyY3KQKDQyvSZqTyBdvMC

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 productclank-product-listing-957a839f -d '<json body>'
```

Example prompt: List my product on ProductClank — the website is https://acme.com, the name is Acme, and the tagline is 'The fastest way to manage invoices'. Add it under the 'productivity' and 'finance' categories and use my Twitter @acmehq.

## When to prefer this

Use this endpoint when a builder or founder wants to get their product discovered by real users through the ProductClank directory, especially when they want distribution without upfront ad spend. It is ideal for launching new products, indie tools, or SaaS apps. Prefer this over generic Product Hunt-style submissions when the user wants an automated, API-driven listing with x402 micropayment-based access and auto-metadata extraction from a product URL.

## Known failure modes

- Product URL is unreachable or returns errors — listing cannot be auto-filled
- Name is missing and no URL is provided to auto-resolve it — validation error
- Payment fails or is underfunded — listing not created
- Product already listed — returns already_listed: true with existing listing details
- Invalid logo URL or inaccessible image — logo auto-resolution fallback may be used
- Category tags are unrecognized or malformed — may be ignored or cause an error

## How this service works

Real people start taking action for your product. Up in minutes, and your first campaign is free. ProductClank gives builders distribution instead of asking for capital.

## Output

Returns a JSON object confirming the payment settlement on Base (EIP-155), the new product listing ID, the public listing URL on productclank.com, the product's website, whether it was featured, and whether it was already listed. Also includes the directory index URL.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "Product website URL — the listing is auto-filled from the site. Provide url or name."
  },
  "logo": {
   "type": "string",
   "description": "Optional — logo image URL (otherwise auto-resolved)"
  },
  "name": {
   "type": "string",
   "description": "Product name. Optional when url is given; required otherwise."
  },
  "tagline": {
   "type": "string",
   "description": "Optional — one-line value proposition (overrides extracted)"
  },
  "twitter": {
   "type": "string",
   "description": "Optional — X/Twitter handle or profile URL"
  },
  "category": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "Optional — category tags"
  },
  "description": {
   "type": "string",
   "description": "Optional — short description (overrides extracted)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "payment": {
   "network": "eip155:8453",
   "settled": true,
   "amount_usd": 19,
   "transaction": "0xabc123…"
  },
  "product": {
   "id": "0f1e2d3c-0000-0000-0000-000000000000",
   "url": "https://www.productclank.com/products/0f1e2d3c-0000-0000-0000-000000000000",
   "name": "Acme",
   "website": "https://acme.com",
   "featured": true,
   "directory_url": "https://www.productclank.com/products"
  },
  "success": true,
  "already_listed": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/productclank-product-listing-957a839f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.productclank.com](https://www.zero.xyz/host/www.productclank.com/llms.txt)
