# Polymarket Trending Markets

> Polymarket Trending Markets is a paid API for AI agents from mechamanda.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns the top trending prediction markets on Polymarket sorted by 24-hour trading volume

## Facts

- Endpoint: GET https://mechamanda.com/api/polymarket/trending
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mechamanda-com-e39585f4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5rYvCdXA9AT-G2cbaXAB0

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 mechamanda-com-e39585f4
```

Example prompt: What are the top 10 trending prediction markets on Polymarket right now, filtered to politics topics?

## When to prefer this

Choose this endpoint when you need a real-time snapshot of the most actively traded prediction markets on Polymarket, especially for surfacing trending events in specific categories like politics, sports, or crypto. Prefer this over a general Polymarket search when you want market heat/volume signals rather than a specific named market.

## Known failure modes

- Invalid tag_slug returns no results or an error
- limit/offset out of range returns empty array
- Polymarket data unavailable causes upstream failure
- Payment failure (402) if USDC not provided
- Rate limiting if called too frequently

## How this service works

Get the top trending prediction markets on Polymarket, sorted by 24h volume. Returns up to 5 markets by default.

## Output

An array of up to N prediction market objects, each containing the market question, possible outcomes (e.g. Yes/No), current outcome prices as probabilities between 0 and 1, total trading volume, available liquidity, and a market description — all sorted by 24-hour volume descending.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": "5",
   "offset": "0"
  }
 }
}
```

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "string",
       "description": "Max number of events to return (default 5)"
      },
      "offset": {
       "type": "string",
       "description": "Pagination offset (default 0)"
      },
      "tag_slug": {
       "type": "string",
       "description": "Filter by category tag (e.g. politics, sports, crypto)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "array",
     "items": {
      "type": "object",
      "required": [
       "question",
       "outcomes",
       "outcomePrices",
       "volume"
      ],
      "properties": {
       "volume": {
        "type": "number",
        "description": "Total trading volume"
       },
       "outcomes": {
        "type": "array",
        "items": {
         "type": "string"
        },
        "description": "Possible outcomes (e.g. Yes/No)"
       },
       "question": {
        "type": "string",
        "description": "The market question"
       },
       "liquidity": {
        "type": "number",
        "description": "Current liquidity in the market"
       },
       "description": {
        "type": "string",
        "description": "Market description"
       },
       "outcomePrices": {
        "type": "array",
        "items": {
         "type": "string"
        },
        "description": "Current prices for each outcome (0-1)"
       }
      }
     }
    }
   }
  }
 }
}
```

## More

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