# Congress.gov Presidential Nominations Lookup

> Congress.gov Presidential Nominations Lookup is a paid API for AI agents from 2s.io, paid per call via x402, $0.0012/call, status unknown (last checked 2026-09-14).

Look up or list US presidential nominations (cabinet, judicial, executive) sent to the Senate for confirmation, with full action history and status tracking.

## Facts

- Endpoint: GET https://2s.io/api/gov/congress-nomination
- Price: $0.0012/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-3baf6953
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xpgjqKQEwj9Jlqqkfcg7Y

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-3baf6953
```

Example prompt: Pull all presidential nominations sent to the Senate during the 118th Congress between 2023-01-01 and 2023-06-30 — I want to see the nominee description, nomination type, organization, and the latest Senate action for each.

## When to prefer this

Use this endpoint when you need to track, research, or vet US presidential nominations to the Senate — especially for judicial appointments, cabinet confirmations, or executive branch positions. Ideal for confirmation-tracking agents, legal research tools, or civic transparency applications. Prefer this over general Congress.gov browsing when you need structured, filterable nomination data with action history.

## Known failure modes

- Missing or invalid congress parameter returns empty or error response
- Invalid date format (non-YYYY-MM-DD) causes query failure
- Nomination number not found for a given congress returns 404 or empty
- Offset beyond total result count returns empty list
- Rate limiting or payment failure returns 402 or 429

## How this service works

Look up or list US presidential nominations (cabinet, judicial, executive) sent to the Senate for confirmation via Congress.gov. Pass congress + number for a single nomination with full action history. Or filter list by congress + date range. Each row carries: citation (PN###-#), description (nominee + position), receivedDate, nominationType (civilian / military / etc.), organization, latest action (committee referral, hearing, confirmation, withdrawal). Essential for confirmation-tracking + judicial-vetting agents.

## Output

Returns a list of nomination records (or a single nomination with full action history) from Congress.gov, each containing: citation (PN###-#), description of nominee and position, receivedDate, nominationType (civilian/military/etc.), organization, and the latest Senate action (committee referral, hearing, confirmation, or withdrawal). Paginated via limit and offset.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": 25,
   "offset": 0,
   "toDate": "2023-06-30",
   "congress": 118,
   "fromDate": "2023-01-01"
  }
 }
}
```

## 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": {
     "properties": {
      "limit": {
       "type": "integer",
       "default": 25,
       "maximum": 250,
       "minimum": 1
      },
      "number": {
       "type": "integer"
      },
      "offset": {
       "type": "integer",
       "default": 0,
       "minimum": 0
      },
      "toDate": {
       "type": "string"
      },
      "congress": {
       "type": "integer"
      },
      "fromDate": {
       "type": "string",
       "description": "YYYY-MM-DD."
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-3baf6953/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)
