# E Verify — 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 for employers who are officially enrolled in the USCIS E-Verify program to verify company participation status and access employer enrollment details. Find employment verification information to confirm whether a specific employer is authorized to use E-Verify for employment eligibility checks.

**Category:** Government & Public Data | **Website:** [www.e-verify.gov/employers/employer-search](https://www.e-verify.gov/employers/employer-search) | **Docs:** [parse.bot/marketplace/0907031b-5ea1-4cd6-bed5-fa555644d843/e-verify-gov-api](https://parse.bot/marketplace/0907031b-5ea1-4cd6-bed5-fa555644d843/e-verify-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-e-verify-gov-api-0907031b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_employers_by_state

List all E-Verify enrolled employers in a given US state. Performs a full alphabet sweep (a-z) using the E-Verify search dashboard, deduplicates by employer name, and returns a consolidated single-page result. Each request makes 26+ upstream calls internally so latency is higher than a single search.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `naics_code` | string | No | Industry type name to filter results (e.g. 'Construction', 'Information'). |
| `state` | string | Yes | 2-letter US state code (e.g. 'CA', 'TX', 'WY'). Filters results to employers with hiring sites in that state. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-e-verify-gov-api-0907031b/list_employers_by_state \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"naics_code":"<string>","state":"<string>"}'
```

### search_employers

Search for E-Verify enrolled employers by company name, optionally filtered by state or industry. Requires a company name pattern; the dashboard matches partial names. Results are returned in a single page (no server-side pagination). Each employer record includes enrollment status, dates, workforce size, and hiring site locations.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `naics_code` | string | No | Industry type name to filter results (e.g. 'Construction', 'Information'). |
| `name` | string | Yes | Company name pattern to search for. Matches partial names (e.g. 'Microsoft' matches 'Microsoft Corporation'). |
| `state` | string | No | 2-letter US state code to filter results by hiring site location (e.g. 'CA', 'TX'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-e-verify-gov-api-0907031b/search_employers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"naics_code":"<string>","name":"<string>","state":"<string>"}'
```
