> ## Documentation Index
> Fetch the complete documentation index at: https://lava.so/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Federal Register

> U.S.

U.S. Federal Register API providing regulatory documents, proposed rules, final rules, notices, and presidential documents. Best for regulatory monitoring, compliance tracking, and identifying upcoming rule changes that affect specific industries. Covers executive branch rulemaking — unlike Congress.gov (legislative process), the Federal Register tracks how agencies implement and enforce the law.

1 example endpoint available through Lava's AI Gateway. See the [Federal Register API docs](https://www.federalregister.gov/developers/documentation/api/v1) for full documentation.

<Info>This provider is **managed** — no additional setup required.</Info>

<Info>This is a **catch-all provider** — any valid URL under `https://www.federalregister.gov/api/v1` is supported. US Federal Register API for regulatory documents. Construct URL as [https://www.federalregister.gov/api/v1/\&#123;endpoint\&#125](https://www.federalregister.gov/api/v1/\&#123;endpoint\&#125);. Common endpoints: /documents.json, /agencies.json, /public-inspection-documents.json. The endpoints below are curated examples.</Info>

## Endpoints

### List recent documents

**GET** `https://www.federalregister.gov/api/v1/documents.json?per_page=3` — Free

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://www.federalregister.gov/api/v1/documents.json?per_page=3', { method: 'GET' });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl "https://api.lava.so/v1/forward?u=https%3A%2F%2Fwww.federalregister.gov%2Fapi%2Fv1%2Fdocuments.json%3Fper_page%3D3" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY"
    ```
  </Tab>
</Tabs>

## Next Steps

<CardGroup cols={2}>
  <Card title="All Providers" icon="grid" href="/gateway/supported-providers">
    Browse all supported AI providers
  </Card>

  <Card title="Forward Proxy" icon="route" href="/gateway/forward-proxy">
    Learn how to construct proxy URLs and authenticate requests
  </Card>
</CardGroup>
