mirrored listing x402 eip155:8453

Explain one selected Base token trading pool using market metrics and versioned rules

Explain one selected Base token trading pool using market metrics and versioned rules. Includes a short AI summary, source and missing-data limitations. Not a contract-security assessment or trading recommendation.

Do you run manyfish-seller.redcliff-d7368db1.westus2.azurecontainerapps.io? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
20000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-18
updated

Provider

manyfish-seller.redcliff-d7368db1.westus2.azurecontainerapps.io · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x9CD3f0D8a73A9a87F752F09d220652dC7dE398cc",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "20000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "tokenAddress": "0x1111111111111111111111111111111111111111"
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      },
      "output": {
        "example": {
          "limitations": [
            "Metrics describe one selected pool, not the entire token market.",
            "The provider's underlying data update time is unknown."
          ],
          "metrics": {
            "buys24h": 10,
            "liquidityUsd": 5000,
            "poolAgeHours": 48,
            "priceChange24hPercent": -5,
            "priceUsd": "0.002",
            "sells24h": 12,
            "volume24hUsd": 1000
          },
          "pool": {
            "address": "0x2222222222222222222222222222222222222222",
            "createdAt": "2026-01-01T00:00:00.000Z",
            "dex": "example-dex",
            "selectionMethod": "highest_liquidity"
          },
          "provenance": {
            "fetchedAt": "2026-01-03T00:00:00.000Z",
            "provider": "dexscreener",
            "sourceUpdatedAt": null,
            "url": "https://dexscreener.com/base/0x2222222222222222222222222222222222222222"
          },
          "rulesVersion": "v1",
          "signals": [
            {
              "code": "LOW_LIQUIDITY",
              "description": "The selected pool has less than $10,000 in reported liquidity."
            }
          ],
          "summary": "The selected pool has limited liquidity and a reported 5% decline over 24 hours. This is a market observation, not a security assessment or trading recommendation.",
          "token": {
            "address": "0x1111111111111111111111111111111111111111",
            "name": "Example Token",
            "symbol": "EXAMPLE"
          }
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "additionalProperties": false,
              "properties": {
                "tokenAddress": {
                  "description": "A Base ERC-20 contract address, not the native ETH sentinel.",
                  "not": {
                    "const": "0x0000000000000000000000000000000000000000"
                  },
                  "pattern": "^0x[0-9a-fA-F]{40}$",
                  "type": "string"
                }
              },
              "required": [
                "tokenAddress"
              ],
              "type": "object"
            },
            "bodyType": {
              "enum": [
                "json",
                "form-data",
                "text"
              ],
              "type": "string"
            },
            "method": {
              "enum": [
                "POST"
              ],
              "type": "string"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method",
            "bodyType",
            "body"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "additionalProperties": false,
              "properties": {
                "limitations": {
                  "items": {
                    "maxLength": 512,
                    "minLength": 1,
                    "type": "string"
                  },
                  "maxItems": 32,
                  "minItems": 1,
                  "type": "array"
                },
                "metrics": {
                  "additionalProperties": false,
                  "properties": {
                    "buys24h": {
                      "minimum": 0,
                      "type": [
                        "integer",
                        "null"
                      ]
                    },
                    "liquidityUsd": {
                      "exclusiveMinimum": 0,
                      "type": "number"
                    },
                    "poolAgeHours": {
                      "minimum": 0,
                      "type": [
                        "number",
                        "null"
                      ]
                    },
                    "priceChange24hPercent": {
                      "type": [
                        "number",
                        "null"
                      ]
                    },
                    "priceUsd": {
                      "maxLength": 128,
                      "pattern": "^(?:0|[1-9]\\d*)(?:\\.\\d+)?$",
                      "type": "string"
                    },
                    "sells24h": {
                      "minimum": 0,
                      "type": [
                        "integer",
                        "null"
                      ]
                    },
                    "volume24hUsd": {
                      "minimum": 0,
                      "type": [
                        "number",
                        "null"
                      ]
                    }
                  },
                  "required": [
                    "priceUsd",
                    "liquidityUsd",
                    "volume24hUsd",
                    "priceChange24hPercent",
                    "buys24h",
                    "sells24h",
                    "poolAgeHours"
                  ],
                  "type": "object"
                },
                "pool": {
                  "additionalProperties": false,
                  "properties": {
                    "address": {
                      "pattern": "^0x[0-9a-fA-F]{40}$",
                      "type": "string"
                    },
                    "createdAt": {
                      "pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(?:\\.\\d{3})?Z$",
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "dex": {
                      "maxLength": 128,
                      "minLength": 1,
                      "type": "string"
                    },
                    "selectionMethod": {
                      "const": "highest_liquidity"
                    }
                  },
                  "required": [
                    "address",
                    "dex",
                    "selectionMethod",
                    "createdAt"
                  ],
                  "type": "object"
                },
                "provenance": {
                  "additionalProperties": false,
                  "properties": {
                    "fetchedAt": {
                      "pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(?:\\.\\d{3})?Z$",
                      "type": "string"
                    },
                    "provider": {
                      "const": "dexscreener"
                    },
                    "sourceUpdatedAt": {
                      "type": "null"
                    },
                    "url": {
                      "pattern": "^https://dexscreener\\.com/base/0x[0-9a-f]{40}$",
                      "type": "string"
                    }
                  },
                  "required": [
                    "provider",
                    "url",
                    "fetchedAt",
                    "sourceUpdatedAt"
                  ],
                  "type": "object"
                },
                "rulesVersion": {
                  "const": "v1"
                },
                "signals": {
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "code": {
                        "enum": [
                          "LOW_LIQUIDITY",
                          "NEW_POOL",
                          "LARGE_PRICE_MOVE",
                          "INCOMPLETE_DATA"
                        ]
                      },
                      "description": {
                        "maxLength": 512,
                        "minLength": 1,
                        "type": "string"
                      }
                    },
                    "required": [
                      "code",
                      "description"
                    ],
                    "type": "object"
                  },
                  "maxItems": 4,
                  "type": "array"
                },
                "summary": {
                  "maxLength": 1200,
                  "minLength": 1,
                  "type": "string"
                },
                "token": {
                  "additionalProperties": false,
                  "properties": {
                    "address": {
                      "pattern": "^0x[0-9a-fA-F]{40}$",
                      "type": "string"
                    },
                    "name": {
                      "maxLength": 128,
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "symbol": {
                      "maxLength": 64,
                      "type": [
                        "string",
                        "null"
                      ]
                    }
                  },
                  "required": [
                    "address",
                    "name",
                    "symbol"
                  ],
                  "type": "object"
                }
              },
              "required": [
                "token",
                "pool",
                "metrics",
                "signals",
                "rulesVersion",
                "summary",
                "provenance",
                "limitations"
              ],
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  },
  "builder-code": {
    "info": {
      "s": [
        "cdp_sdk_server"
      ]
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "additionalProperties": false,
      "properties": {
        "a": {
          "description": "App builder code",
          "pattern": "^[a-z0-9_]{1,32}$",
          "type": "string"
        },
        "s": {
          "description": "Service builder codes",
          "items": {
            "pattern": "^[a-z0-9_]{1,32}$",
            "type": "string"
          },
          "maxItems": 11,
          "type": "array"
        },
        "w": {
          "description": "Wallet builder code",
          "pattern": "^[a-z0-9_]{1,32}$",
          "type": "string"
        }
      },
      "type": "object"
    }
  },
  "eip2612GasSponsoring": {},
  "erc20ApprovalGasSponsoring": {}
}

Use it

curl

curl "https://manyfish-seller.redcliff-d7368db1.westus2.azurecontainerapps.io/api/v1/crypto/token-verdict"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://manyfish-seller.redcliff-d7368db1.westus2.azurecontainerapps.io/api/v1/crypto/token-verdict");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://manyfish-seller.redcliff-d7368db1.westus2.azurecontainerapps.io/api/v1/crypto/token-verdict")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/13451.json, and this resource appears in /discovery/resources and /discovery/search.