# PatentPulse Patent Search

> PatentPulse Patent Search is a paid API for AI agents from patentpulse-self.vercel.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-14).

Searches USPTO and global patent databases for patent intelligence and prior art

## Facts

- Endpoint: GET https://patentpulse-self.vercel.app/api/patent/search
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/patentpulse-patent-search-ee7c5c18
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V5B_X6Z1nzzxSTuy4_mXi

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 patentpulse-patent-search-ee7c5c18
```

Example prompt: Search PatentPulse for patents related to 'solid-state battery electrolyte' filed in the last 5 years — I want to see what's been patented globally, especially by large automakers and battery companies.

## When to prefer this

Use PatentPulse when you need to search across both USPTO and global patent databases in a single call, especially for prior art research, patent landscape analysis, or competitive intelligence on patent filings by companies or inventors.

## Known failure modes

- No patents found matching the query — returns empty results
- Invalid or malformed query parameter — returns 400 error
- Payment not completed or insufficient funds — returns 402 Payment Required
- Rate limit exceeded — returns 429 error
- Upstream patent database unavailable — returns 503 error

## How this service works

Patent search / patent lookup / keyword patent search across USPTO and worldwide patents. Searches USPTO PatentsView by keyword, assignee, inventor, or title, plus EPO/WIPO/JPO global context, returning ranked patents with titles, assignees, grant dates, CPC classes, and abstracts for any query. For IP and patent agents. Worldwide.

## Output

Returns a list of matching patent records from USPTO and global patent databases, including patent numbers, titles, filing dates, inventors, assignees, and jurisdiction information relevant to the search query.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Search query — keyword, company name, inventor name, or patent title"
      },
      "lang": {
       "type": "string",
       "description": "Response language (e.g. es, fr, ja, zh, de). Defaults to en."
      },
      "type": {
       "type": "string",
       "description": "Search type"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/patentpulse-patent-search-ee7c5c18/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from patentpulse-self.vercel.app](https://www.zero.xyz/host/patentpulse-self.vercel.app/llms.txt)
