# USPTO Patent Application Full Record Lookup

> USPTO Patent Application Full Record Lookup is a paid API for AI agents from agents.x402stock.xyz, paid per call via MPP, $0.02/call, status unknown (last checked 2026-09-13).

Returns the complete USPTO record for a single patent application, including filing/grant dates, status, inventors, CPC classes, examiner, and more.

## Facts

- Endpoint: GET https://agents.x402stock.xyz/api/v1/patent/{application}
- Price: $0.02/call
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Provider: agents.x402stock.xyz
- Website: https://agents.x402stock.xyz
- Canonical page: https://www.zero.xyz/c/agents-x402stock-xyz-uspto-patent-application-full-record-lookup-ed938937
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MCZpQ2-c7JhlW8g7Wmo5i

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 agents-x402stock-xyz-uspto-patent-application-full-record-lookup-ed938937
```

Example prompt: Can you pull the full USPTO record for patent application 18687455? I want to see the title, filing and grant dates, inventors, applicant, CPC classes, and current status.

## When to prefer this

Use this endpoint when you have a specific USPTO application number and need comprehensive structured metadata about that patent application — including legal status, inventor details, classification codes, and procedural information — without needing to scrape the USPTO website directly. Prefer this over patent search endpoints when you already know the application number and want a single authoritative record at low cost ($0.02/call).

## Known failure modes

- Invalid or non-existent application number returns an error or empty patent object
- Application number formatted incorrectly (e.g. with dashes instead of digits) may not resolve
- USPTO data may lag real-time status changes by hours or days
- Payment failure via x402/USDC results in a 402 response and no data returned
- Rate limiting or network issues may produce transient failures

## How this service works

Full USPTO record for one patent application — pass the `{application}` number (e.g. 18687455, the `application_number` from /patents). Returns patent & application numbers, title, filing/grant dates, status, applicant, inventors, application type, examiner, art unit, CPC classes, publication number/date, term-adjustment days, and assignment/parent counts. From x402stock

## Output

A JSON object containing the full USPTO record for the requested application: patent number, application number, title, filing date, grant date, status, applicant name, list of inventors, application type, examiner name, group art unit, CPC class codes, publication number, earliest publication date, patent term adjustment days, assignment count, parent count, and a direct USPTO URL. Also includes source attribution and an as-of timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "application"
 ],
 "properties": {
  "application": {
   "type": "string",
   "description": "The application path parameter."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "source",
  "as_of",
  "application_number",
  "patent",
  "attribution"
 ],
 "properties": {
  "as_of": {
   "type": "string"
  },
  "patent": {
   "type": "object",
   "required": [
    "patent_number",
    "application_number",
    "title",
    "filing_date",
    "grant_date",
    "status",
    "applicant",
    "inventors",
    "url",
    "application_type",
    "examiner",
    "group_art_unit",
    "cpc_classes",
    "publication_number",
    "earliest_publication_date",
    "patent_term_adjustment_days",
    "assignment_count",
    "parent_count"
   ],
   "properties": {
    "url": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "null"
      }
     ]
    },
    "title": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "null"
      }
     ]
    },
    "status": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "null"
      }
     ]
    },
    "examiner": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "null"
      }
     ]
    },
    "applicant": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "null"
      }
     ]
    },
    "inventors": {
     "type": "array",
     "items": {
      "type": "string"
     }
    },
    "grant_date": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "null"
      }
     ]
    },
    "cpc_classes": {
     "type": "array",
     "items": {
      "type": "string"
     }
    },
    "filing_date": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "null"
      }
     ]
    },
    "parent_count": {
     "type": "number"
    },
    "patent_number": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "null"
      }
     ]
    },
    "group_art_unit": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "null"
      }
     ]
    },
    "application_type": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "null"
      }
     ]
    },
    "assignment_count": {
     "type": "number"
    },
    "application_number": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "null"
      }
     ]
    },
    "publication_number": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "null"
      }
     ]
    },
    "earliest_publicatio
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agents-x402stock-xyz-uspto-patent-application-full-record-lookup-ed938937/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.x402stock.xyz](https://www.zero.xyz/host/agents.x402stock.xyz/llms.txt)
