# 2s.io Stock Patents API

> 2s.io Stock Patents API is a paid API for AI agents from 2s.io, paid per call via x402, $0.0025/call, status unknown (last checked 2026-09-14).

Returns USPTO patent filings and grants associated with a US-listed public company, given its stock ticker and optional date range.

## Facts

- Endpoint: GET https://2s.io/api/stocks/patents
- Price: $0.0025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-io-stock-patents-api-74439a6b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_r4nWFRUKKCr7MMHvyt_dI

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 2s-io-stock-patents-api-74439a6b
```

Example prompt: Pull all USPTO patent filings for NVDA from January 1, 2023 to December 31, 2024 so I can see Nvidia's recent R&D and innovation activity.

## When to prefer this

Use this endpoint when you need company-level patent and R&D signal for a US-listed public company by stock ticker, especially when you want structured USPTO filing data (application numbers, grant status, dates, document URLs) rather than keyword-based patent searches. Ideal for financial analysis, competitive intelligence, or innovation tracking tied to publicly traded companies.

## Known failure modes

- Invalid or unrecognized ticker symbol returns empty results or an error
- Date range provided in incorrect format (not YYYY-MM-DD) causes a bad request
- No patents found for the given ticker/date window returns an empty array
- Rate limiting or payment failure may block the response
- Ticker for a non-US-listed company may return no results

## How this service works

USPTO patent activity associated with a public company. Pass ticker and optionally a from/to window (YYYY-MM-DD; defaults to ~2 years); returns each record with the application number, patent number (when granted), the filing company name(s), description/title, patent type, filing status, filing and publication dates, and a document URL. A company-level innovation/R&D signal (distinct from our keyword patent search). Data by Finnhub.

## Output

A list of patent records for the given company, each containing the USPTO application number, granted patent number (if available), filing company name(s), patent title/description, patent type, filing status, filing date, publication date, and a link to the patent document.

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "US-listed ticker, e.g. AAPL."
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-stock-patents-api-74439a6b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
