# DDG DEX Pairs Lookup

> DDG DEX Pairs Lookup is a paid API for AI agents from agents.daedalusdevelopmentgroup.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Retrieves decentralized exchange (DEX) trading pair data for specified tokens or pools via a machine-payable API endpoint.

## Facts

- Endpoint: POST https://agents.daedalusdevelopmentgroup.com/v1/dex-pairs
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ddg-dex-pairs-lookup-713e1646
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A_KkYvIIl3GHK6D2433yf

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 ddg-dex-pairs-lookup-713e1646 -d '<json body>'
```

Example prompt: Can you look up all the DEX trading pairs for the USDC/ETH pool on Ethereum and give me the current liquidity and pair data?

## When to prefer this

Choose this endpoint when you need on-chain DEX pair data in a machine-payable context, particularly when operating within an x402-compatible agent framework that can settle micropayments automatically in USDC. Ideal for DeFi agents that need bounded, pay-per-call access to DEX pair information without requiring a full provider account or API key subscription.

## Known failure modes

- Invalid or unrecognized token address returns an error or empty pair list
- Unsupported blockchain network returns a failure response
- Malformed POST body missing required fields returns a 400-level error
- Payment not settled via x402 protocol returns a 402 Payment Required response
- Rate limiting or quota exhaustion may return a 429 or similar error
- Provider data unavailability may result in stale or incomplete pair data

## How this service works

Machine-payable DDG services for AI agents. Current public live payment rails are x402 multi-chain USDC and direct-crypto auto/manual for public receiving-address families. MPP/Stripe/Tempo is installed but pending live provider env plus penny-settlement proof before any MPP-live advertisement. DDG sells bounded artifacts/results, not raw provider account access.

## Output

Returns a JSON object with an 'ok' status flag along with DEX pair data including pool addresses, token pair details, liquidity metrics, and exchange-specific metadata for the queried trading pairs.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": true
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "ok": true
    }
   },
   "additionalProperties": true
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ddg-dex-pairs-lookup-713e1646/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.daedalusdevelopmentgroup.com](https://www.zero.xyz/host/agents.daedalusdevelopmentgroup.com/llms.txt)
