{
  "openapi": "3.1.0",
  "info": {
    "title": "Reddit API — fetcher.sh",
    "version": "1.0.0",
    "summary": "15 pay-per-call Reddit endpoints.",
    "description": "Web data for agents and code: **15 Reddit endpoints**, priced **$0.002 per call** in USDC on Base, Polygon, Arbitrum, Monad or Solana. No accounts, no OAuth, no subscriptions — you only pay for calls you make.\n\nEvery endpoint is a `GET` returning the same envelope, where the HTTP status mirrors `status`:\n\n```json\n{ \"status\": 200, \"message\": \"ok\", \"data\": { } }\n```\n\n## Two ways to pay\n\n**1. Prepaid credits (simplest for code).** Top up once at [https://reddit.fetcher.sh/topup](https://reddit.fetcher.sh/topup), then send your key on every request:\n\n```bash\ncurl -H \"Authorization: Bearer bby_live_...\" \"https://reddit.fetcher.sh/api/search/post?keyword=ai+agents\"\n```\n\n**2. x402 per call (for autonomous agents).** Call without payment and you get `402` with machine-readable requirements in the `payment-required` header — one entry per supported network, so pay from whichever of Base, Polygon, Arbitrum, Monad or Solana you hold USDC on. Sign the authorization, retry with it, and the data comes back. Gas is sponsored, so the wallet needs no native token — libraries like `@x402/fetch` do the whole loop for you.\n\n## Errors\n\n`400` invalid or missing parameter (the message names it) · `401` unknown or revoked key · `402` payment required, or `topup_required` when a balance is exhausted · `404` not a priced endpoint · `502` upstream failure. There are no rate limits; your balance is the only limit. Settlement happens before delivery, so failed upstream calls are not refunded.\n\n## Also available\n\n[MCP server](https://reddit.fetcher.sh/#mcp) for Claude, Cursor and other MCP clients · [/skill.md](https://reddit.fetcher.sh/skill.md) agent setup instructions · [/llms.txt](https://reddit.fetcher.sh/llms.txt) condensed catalog · [/topup](https://reddit.fetcher.sh/topup) create or recharge a key.",
    "x-guidance": "Reddit is a web-data gateway: 15 read-only endpoints (Reddit). Every endpoint is a GET request that returns the same JSON envelope: { status, message, data }, where the HTTP status mirrors the status field. Pricing is per call, $0.002 in USDC. There are no plans, subscriptions, or rate limits — your balance is the only limit. Payable on Base, Polygon, Arbitrum, Monad or Solana: every 402 lists one accepts entry per network (eip155:8453, eip155:137, eip155:42161, eip155:143, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp), each with its own USDC asset and payTo address, so pick the one matching a chain you hold USDC on. Base (eip155:8453) is always first. Two ways to pay. (1) x402 per call: request the endpoint, receive a 402 with machine-readable payment requirements, sign the USDC transfer authorization for your chosen network, and retry with the signed payload. Gas is sponsored by the facilitator, so the wallet needs no native token. (2) Prepaid credits: POST /api/credits/topup?amount=<usd> once (minimum $1, itself x402-paid) to receive a bby_live_ API key, then send it as `Authorization: Bearer <key>` on any endpoint — no signing and no chain round trip per call, which is much faster for high request volumes. GET /api/credits/balance returns the remaining balance for a key. Substitute path parameters marked {param}. Missing or invalid parameters return a descriptive 400. Settlement happens before delivery, so failed upstream calls are not refunded. Full agent setup instructions: /skill.md. Condensed catalog for LLMs: /llms.txt.",
    "contact": {
      "email": "info@fetcher.sh"
    }
  },
  "servers": [
    {
      "url": "https://reddit.fetcher.sh",
      "description": "Production"
    }
  ],
  "tags": [
    {
      "name": "Reddit",
      "description": "Search posts, subreddits, and users; pull hot/new/top/best feeds, comment trees, and user history."
    }
  ],
  "components": {
    "schemas": {
      "Envelope": {
        "type": "object",
        "description": "Every response uses this envelope; the HTTP status mirrors `status`.",
        "properties": {
          "status": {
            "type": "integer",
            "description": "HTTP status code, mirrored in the body."
          },
          "message": {
            "type": "string",
            "description": "\"ok\" on success, otherwise the error reason."
          },
          "data": {
            "type": [
              "object",
              "array",
              "null"
            ],
            "description": "Upstream payload; null on errors."
          }
        },
        "required": [
          "status",
          "message",
          "data"
        ]
      }
    }
  },
  "paths": {
    "/api/post/{id}": {
      "get": {
        "operationId": "redditPostById",
        "summary": "Reddit — Post",
        "description": "Post from Reddit. Returns the standard { status, message, data } envelope. $0.002 per call, payable with x402 (USDC on Base, Polygon, Arbitrum, Monad or Solana) or a prepaid credits API key.",
        "tags": [
          "Reddit"
        ],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.002000"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "minLength": 1
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success — upstream payload in `data`.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "400": {
            "description": "Missing or invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          },
          "502": {
            "description": "Upstream error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          }
        }
      }
    },
    "/api/post/{id}/comments": {
      "get": {
        "operationId": "redditPostByIdComments",
        "summary": "Reddit — Post comments",
        "description": "Post comments from Reddit. Returns the standard { status, message, data } envelope. $0.002 per call, payable with x402 (USDC on Base, Polygon, Arbitrum, Monad or Solana) or a prepaid credits API key.",
        "tags": [
          "Reddit"
        ],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.002000"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "minLength": 1
            }
          },
          {
            "name": "sort",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string",
              "enum": [
                "best",
                "top",
                "new",
                "controversial",
                "old",
                "qa"
              ]
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success — upstream payload in `data`.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "400": {
            "description": "Missing or invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          },
          "502": {
            "description": "Upstream error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          }
        }
      }
    },
    "/api/post/{id}/comments/{commentId}/replies": {
      "get": {
        "operationId": "redditPostByIdCommentsByCommentIdReplies",
        "summary": "Reddit — Post comments replies",
        "description": "Post comments replies from Reddit. Returns the standard { status, message, data } envelope. $0.002 per call, payable with x402 (USDC on Base, Polygon, Arbitrum, Monad or Solana) or a prepaid credits API key.",
        "tags": [
          "Reddit"
        ],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.002000"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "minLength": 1
            }
          },
          {
            "name": "commentId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "minLength": 1
            }
          },
          {
            "name": "sort",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string",
              "enum": [
                "best",
                "top",
                "new",
                "controversial",
                "old",
                "qa"
              ]
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success — upstream payload in `data`.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "400": {
            "description": "Missing or invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          },
          "502": {
            "description": "Upstream error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          }
        }
      }
    },
    "/api/posts/best": {
      "get": {
        "operationId": "redditPostsBest",
        "summary": "Reddit — Posts best",
        "description": "Posts best from Reddit. Returns the standard { status, message, data } envelope. $0.002 per call, payable with x402 (USDC on Base, Polygon, Arbitrum, Monad or Solana) or a prepaid credits API key.",
        "tags": [
          "Reddit"
        ],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.002000"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "parameters": [
          {
            "name": "cursor",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success — upstream payload in `data`.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "400": {
            "description": "Missing or invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          },
          "502": {
            "description": "Upstream error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          }
        }
      }
    },
    "/api/posts/hot": {
      "get": {
        "operationId": "redditPostsHot",
        "summary": "Reddit — Posts hot",
        "description": "Posts hot from Reddit. Returns the standard { status, message, data } envelope. $0.002 per call, payable with x402 (USDC on Base, Polygon, Arbitrum, Monad or Solana) or a prepaid credits API key.",
        "tags": [
          "Reddit"
        ],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.002000"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "parameters": [
          {
            "name": "cursor",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success — upstream payload in `data`.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "400": {
            "description": "Missing or invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          },
          "502": {
            "description": "Upstream error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          }
        }
      }
    },
    "/api/posts/new": {
      "get": {
        "operationId": "redditPostsNew",
        "summary": "Reddit — Posts new",
        "description": "Posts new from Reddit. Returns the standard { status, message, data } envelope. $0.002 per call, payable with x402 (USDC on Base, Polygon, Arbitrum, Monad or Solana) or a prepaid credits API key.",
        "tags": [
          "Reddit"
        ],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.002000"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "parameters": [
          {
            "name": "cursor",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success — upstream payload in `data`.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "400": {
            "description": "Missing or invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          },
          "502": {
            "description": "Upstream error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          }
        }
      }
    },
    "/api/posts/top": {
      "get": {
        "operationId": "redditPostsTop",
        "summary": "Reddit — Posts top",
        "description": "Posts top from Reddit. Returns the standard { status, message, data } envelope. $0.002 per call, payable with x402 (USDC on Base, Polygon, Arbitrum, Monad or Solana) or a prepaid credits API key.",
        "tags": [
          "Reddit"
        ],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.002000"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "parameters": [
          {
            "name": "cursor",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success — upstream payload in `data`.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "400": {
            "description": "Missing or invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          },
          "502": {
            "description": "Upstream error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          }
        }
      }
    },
    "/api/search/post": {
      "get": {
        "operationId": "redditSearchPost",
        "summary": "Reddit — Search post",
        "description": "Search post from Reddit. Returns the standard { status, message, data } envelope. $0.002 per call, payable with x402 (USDC on Base, Polygon, Arbitrum, Monad or Solana) or a prepaid credits API key.",
        "tags": [
          "Reddit"
        ],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.002000"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "parameters": [
          {
            "name": "keyword",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "sort",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string",
              "enum": [
                "relevance",
                "hot",
                "new",
                "top",
                "comments"
              ]
            }
          },
          {
            "name": "cursor",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success — upstream payload in `data`.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "400": {
            "description": "Missing or invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          },
          "502": {
            "description": "Upstream error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          }
        }
      }
    },
    "/api/search/subreddit": {
      "get": {
        "operationId": "redditSearchSubreddit",
        "summary": "Reddit — Search subreddit",
        "description": "Search subreddit from Reddit. Returns the standard { status, message, data } envelope. $0.002 per call, payable with x402 (USDC on Base, Polygon, Arbitrum, Monad or Solana) or a prepaid credits API key.",
        "tags": [
          "Reddit"
        ],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.002000"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "parameters": [
          {
            "name": "keyword",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cursor",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success — upstream payload in `data`.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "400": {
            "description": "Missing or invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          },
          "502": {
            "description": "Upstream error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          }
        }
      }
    },
    "/api/search/user": {
      "get": {
        "operationId": "redditSearchUser",
        "summary": "Reddit — Search user",
        "description": "Search user from Reddit. Returns the standard { status, message, data } envelope. $0.002 per call, payable with x402 (USDC on Base, Polygon, Arbitrum, Monad or Solana) or a prepaid credits API key.",
        "tags": [
          "Reddit"
        ],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.002000"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "parameters": [
          {
            "name": "keyword",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "cursor",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success — upstream payload in `data`.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "400": {
            "description": "Missing or invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          },
          "502": {
            "description": "Upstream error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          }
        }
      }
    },
    "/api/subreddit/{name}": {
      "get": {
        "operationId": "redditSubredditByName",
        "summary": "Reddit — Subreddit",
        "description": "Subreddit from Reddit. Returns the standard { status, message, data } envelope. $0.002 per call, payable with x402 (USDC on Base, Polygon, Arbitrum, Monad or Solana) or a prepaid credits API key.",
        "tags": [
          "Reddit"
        ],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.002000"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "parameters": [
          {
            "name": "name",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "minLength": 1
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success — upstream payload in `data`.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "400": {
            "description": "Missing or invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          },
          "502": {
            "description": "Upstream error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          }
        }
      }
    },
    "/api/subreddit/{name}/posts": {
      "get": {
        "operationId": "redditSubredditByNamePosts",
        "summary": "Reddit — Subreddit posts",
        "description": "Subreddit posts from Reddit. Returns the standard { status, message, data } envelope. $0.002 per call, payable with x402 (USDC on Base, Polygon, Arbitrum, Monad or Solana) or a prepaid credits API key.",
        "tags": [
          "Reddit"
        ],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.002000"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "parameters": [
          {
            "name": "name",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "minLength": 1
            }
          },
          {
            "name": "sort",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string",
              "enum": [
                "new",
                "hot",
                "top"
              ]
            }
          },
          {
            "name": "cursor",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success — upstream payload in `data`.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "400": {
            "description": "Missing or invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          },
          "502": {
            "description": "Upstream error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          }
        }
      }
    },
    "/api/user/{username}": {
      "get": {
        "operationId": "redditUserByUsername",
        "summary": "Reddit — User",
        "description": "User from Reddit. Returns the standard { status, message, data } envelope. $0.002 per call, payable with x402 (USDC on Base, Polygon, Arbitrum, Monad or Solana) or a prepaid credits API key.",
        "tags": [
          "Reddit"
        ],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.002000"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "parameters": [
          {
            "name": "username",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "minLength": 1
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success — upstream payload in `data`.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "400": {
            "description": "Missing or invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          },
          "502": {
            "description": "Upstream error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          }
        }
      }
    },
    "/api/user/{username}/comments": {
      "get": {
        "operationId": "redditUserByUsernameComments",
        "summary": "Reddit — User comments",
        "description": "User comments from Reddit. Returns the standard { status, message, data } envelope. $0.002 per call, payable with x402 (USDC on Base, Polygon, Arbitrum, Monad or Solana) or a prepaid credits API key.",
        "tags": [
          "Reddit"
        ],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.002000"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "parameters": [
          {
            "name": "username",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "minLength": 1
            }
          },
          {
            "name": "sort",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string",
              "enum": [
                "new",
                "hot",
                "top"
              ]
            }
          },
          {
            "name": "cursor",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success — upstream payload in `data`.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "400": {
            "description": "Missing or invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          },
          "502": {
            "description": "Upstream error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          }
        }
      }
    },
    "/api/user/{username}/posts": {
      "get": {
        "operationId": "redditUserByUsernamePosts",
        "summary": "Reddit — User posts",
        "description": "User posts from Reddit. Returns the standard { status, message, data } envelope. $0.002 per call, payable with x402 (USDC on Base, Polygon, Arbitrum, Monad or Solana) or a prepaid credits API key.",
        "tags": [
          "Reddit"
        ],
        "x-payment-info": {
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.002000"
          },
          "protocols": [
            {
              "x402": {}
            }
          ]
        },
        "parameters": [
          {
            "name": "username",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "minLength": 1
            }
          },
          {
            "name": "sort",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string",
              "enum": [
                "new",
                "hot",
                "top"
              ]
            }
          },
          {
            "name": "cursor",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success — upstream payload in `data`.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "400": {
            "description": "Missing or invalid parameter.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          },
          "502": {
            "description": "Upstream error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                }
              }
            }
          }
        }
      }
    }
  }
}