# USPTO PatentsView Patent Search

> USPTO PatentsView Patent Search is a paid API for AI agents from jp-data-api-production.up.railway.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Search US patents by keyword via PatentsView/USPTO, returning title, patent number, date, assignee, and abstract

## Facts

- Endpoint: GET https://jp-data-api-production.up.railway.app/patent/search
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/uspto-patentsview-patent-search-8fc2388e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_J_mXWvktl9D7vpVh_3Z6N

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 uspto-patentsview-patent-search-8fc2388e
```

Example prompt: Search US patents for 'solid-state battery electrolyte' and show me the titles, patent numbers, dates, assignees, and abstracts for the most relevant results.

## When to prefer this

Use this endpoint when you need structured US patent data including titles, numbers, dates, assignees, and abstracts from the authoritative USPTO/PatentsView source. Ideal for prior-art checks, competitive intelligence, IP research, or R&D agents needing patent metadata quickly without direct USPTO API integration.

## Known failure modes

- Missing required query parameter 'q' returns a validation error
- Very broad or common keywords may return too many results or timeout
- No patents found for highly specific or niche queries returns empty results
- Payment failure (402) if x402 payment is not processed correctly
- Query returning stale data if PatentsView index is not current

## How this service works

Patent search (US PatentsView / USPTO): find patents by keyword, returns title, patent number, date, assignee, abstract. For IP research, competitive intelligence, prior-art checks, R&D agents.

## Output

Returns a list of US patents matching the keyword query, each with title, patent number, grant date, assignee name, and abstract text, sourced from the PatentsView/USPTO database.

## 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",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/uspto-patentsview-patent-search-8fc2388e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from jp-data-api-production.up.railway.app](https://www.zero.xyz/host/jp-data-api-production.up.railway.app/llms.txt)
