# New York Public Service Commission — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and retrieve documents and case details from New York's Public Service Commission proceedings to find regulatory filings, case information, and official documents. Quickly locate specific cases and access their associated documents through full-text search capabilities.

**Category:** Government & Public Data | **Website:** [puc.ny.gov/](https://puc.ny.gov/) | **Docs:** [parse.bot/marketplace/529c8ef6-a5d9-4434-bc5d-d0e0b5b89306/puc-ny-gov-api](https://parse.bot/marketplace/529c8ef6-a5d9-4434-bc5d-d0e0b5b89306/puc-ny-gov-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-puc-ny-gov-api-529c8ef6/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_case_details

Retrieve case metadata and the internal numeric ID (MatterSeq) for a given case number. The matter_seq returned is needed to call get_case_documents. Returns metadata fields such as industry, matter type, company, and status when available.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `case_number` | string | Yes | Case number in the format NN-X-NNNN (e.g. '07-E-0949', '26-G-0016') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-puc-ny-gov-api-529c8ef6/get_case_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"case_number":"<string>"}'
```

### get_case_documents

Retrieve all public documents filed in a specific case. Accepts either a case_number (resolved internally to matter_seq) or a matter_seq directly. Returns document metadata including filing dates, document types, titles, file sizes, and download URLs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `case_number` | string | No | Case number (e.g. '07-E-0949'). One of case_number or matter_seq must be provided. |
| `matter_seq` | string | No | Internal numeric ID for the case (e.g. '26767' from get_case_details). One of case_number or matter_seq must be provided. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-puc-ny-gov-api-529c8ef6/get_case_documents \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"case_number":"<string>","matter_seq":"<string>"}'
```

### search_documents

Full-text search over the DPS document archive. Returns paginated results with document titles, snippets, and download links. Each page contains up to ~20 results. The query matches across all document text; results are relevance-ranked.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (1-based) |
| `query` | string | No | Search keyword or phrase |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-puc-ny-gov-api-529c8ef6/search_documents \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>"}'
```
