# Affiliate.com Merchant Directory Listing

> Affiliate.com Merchant Directory Listing is a paid API for AI agents from zeroclick.affiliate.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14, last successful call 2026-08-10).

List and filter the merchants (retailers/advertisers) available in the Affiliate.com catalog, with pagination and search options.

## Facts

- Endpoint: GET https://zeroclick.affiliate.com/v1/merchants
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-08-10
- Success rate: 100% of calls made through Zero
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/affiliate-com-merchant-directory-listing-20f90bdb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_81ibVvViSODsj2O_VdWWF

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 affiliate-com-merchant-directory-listing-20f90bdb
```

Example prompt: Can you pull the list of Affiliate.com merchants from the US with at least 500 products? Show me 50 per page, starting on page 1.

## When to prefer this

Use this endpoint when you need to discover, enumerate, or filter the merchants/retailers available within the Affiliate.com network — for example, to build a merchant selector UI, vet which advertisers are available in a given country, or find merchants with a specific product catalog size. Prefer this over the product search endpoints when your primary goal is understanding the merchant landscape rather than finding specific products.

## Known failure modes

- Invalid or out-of-range page number returns an error or empty result set
- search string under minimum length (1 char) or over maximum (255 chars) triggers validation error
- Invalid country_ids format returns an error
- Payment not included or insufficient funds returns a 402 Payment Required response
- No merchants match the filter criteria — returns empty array
- Rate limiting may occur if called excessively in a short period

## How this service works

List the merchants behind the catalog. Filter by name or domain search, by country, or by product count, and page through the results.

## Output

Returns a paginated array of merchant objects, each including merchant ID, name, domain, country association, and product count, along with pagination metadata (current page, total pages, total results).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "id": {
       "type": "string"
      },
      "page": {
       "type": "integer",
       "default": 1,
       "minimum": 1
      },
      "fields": {
       "type": "string"
      },
      "search": {
       "type": "string",
       "maxLength": 255,
       "minLength": 1
      },
      "per_page": {
       "type": "integer",
       "default": 100,
       "minimum": 1
      },
      "country_ids": {
       "type": "string"
      },
      "product_count_max": {
       "type": "integer"
      },
      "product_count_min": {
       "type": "integer"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/affiliate-com-merchant-directory-listing-20f90bdb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zeroclick.affiliate.com](https://www.zero.xyz/host/zeroclick.affiliate.com/llms.txt)
