{
  "openapi": "3.1.0",
  "info": {
    "title": "Robinhood Launch Intelligence",
    "version": "1.0.0",
    "description": "Bankr-only feed of newest permissionless Robinhood Chain token launches with creator attribution, contracts, market cap, volume, transactions and momentum."
  },
  "servers": [
    {
      "url": "https://robinhood-launches.hustlerhigher.workers.dev"
    }
  ],
  "x-discovery": {
    "ownershipProofs": [
      "0xb0a03543ef47662c01a3a38a6188149a7175665f"
    ]
  },
  "paths": {
    "/recent-robinhood-launches": {
      "get": {
        "operationId": "getRecentRobinhoodLaunches",
        "summary": "Get recent Robinhood Chain token launches",
        "description": "Returns recent Robinhood Chain launches and Bankr creator/market intelligence for $0.001 USDC per call on Base.",
        "x-payment-info": {
          "protocols": [
            "x402"
          ],
          "price": {
            "mode": "fixed",
            "currency": "USD",
            "amount": "0.001"
          },
          "network": "eip155:8453"
        },
        "parameters": [
          {
            "name": "limit",
            "in": "query",
            "required": false,
            "description": "Maximum newest launches returned.",
            "schema": {
              "type": "integer",
              "minimum": 1,
              "maximum": 25,
              "default": 10
            },
            "example": 5
          },
          {
            "name": "onlyAttributed",
            "in": "query",
            "required": false,
            "description": "Only return launches with Bankr-attributed X username and creator wallet.",
            "schema": {
              "type": "boolean",
              "default": false
            },
            "example": true
          }
        ],
        "security": [
          {
            "x402Payment": []
          }
        ],
        "responses": {
          "200": {
            "description": "Paid launch-intelligence response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "x402 v2 payment challenge"
          }
        }
      }
    }
  },
  "components": {
    "securitySchemes": {
      "x402Payment": {
        "type": "apiKey",
        "in": "header",
        "name": "PAYMENT-SIGNATURE",
        "description": "x402 v2 payment payload."
      }
    }
  }
}