{
  "serviceId": "sec-holdings",
  "displayName": "SEC Institutional Holdings",
  "description": "SEC 13F institutional positions by filer and quarter: issuer, CUSIP, USD value, and share count. POST /v1/sec with a filer {company_ticker} (or CIK) and get the holdings as one JSON object. Deterministic per filing cycle. Pay per request in USDC; no account, no API key.",
  "category": "finance",
  "resourceUrl": "https://agent.pocket.network/v1/sec-holdings",
  "priceUsd": "0.005000",
  "priceVersion": 1,
  "rails": [
    {
      "id": "base",
      "network": "eip155:8453",
      "chainId": 8453,
      "tokenAddress": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "tokenDecimals": 6,
      "payToAddress": "0xF732ea490c5766071785a2310523f7fA2CEbB829"
    }
  ],
  "protocols": [
    "rest"
  ],
  "inputSchema": {
    "type": "object",
    "description": "A 13F filer to look up. On the MCP relay route POST /v1/tool these fields are wrapped under an `arguments` object; the direct route takes them at the top level.",
    "properties": {
      "company_ticker": {
        "type": "string",
        "description": "Ticker of the institutional filer, e.g. BLK."
      },
      "cik": {
        "type": "string",
        "description": "Filer CIK (alternative to ticker)."
      }
    },
    "required": [
      "company_ticker"
    ]
  },
  "outputSchema": {
    "type": "object",
    "description": "For POST /v1/sec, a JSON object whose `holdings` array lists issuer, cusip, USD value, and shares. The exact shape is the service's own and is not pinned here; errors return a JSON object with an `error` field, and the GET routes return their own small JSON documents."
  },
  "methods": {
    "GET /v1/health": "read",
    "GET /v1/version": "read",
    "POST /v1/sec": "read",
    "POST /v1/tool": "read"
  },
  "firstParty": true,
  "networks": [
    "eip155:8453"
  ],
  "serving": true,
  "page": "https://agent.pocket.network/services/sec-holdings",
  "descriptor": "https://agent.pocket.network/services/sec-holdings/descriptor.json"
}