# Dibbs Bsm Dla — 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.

> Access data from dibbs.bsm.dla.mil.

**Category:** Government & Public Data | **Website:** [www.dibbs.bsm.dla.mil/RFQ/](https://www.dibbs.bsm.dla.mil/RFQ/) | **Docs:** [parse.bot/marketplace/e947f9ce-cad3-42a7-adf8-26508f164c61/dibbs-bsm-dla-mil-api](https://parse.bot/marketplace/e947f9ce-cad3-42a7-adf8-26508f164c61/dibbs-bsm-dla-mil-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-dibbs-bsm-dla-mil-api-e947f9ce/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_rfq

Search open RFQ solicitations in the DLA DIBBS system. Accepts a Federal Supply Class (FSC) code or NSN/part number with optional wildcards. Returns paginated results including solicitation number, NSN/part, nomenclature, purchase request, issued date, return-by date, and set-aside status. Each page returns up to 50 records sorted by NSN/Part Number ascending.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number of results to retrieve. |
| `search_type` | string | Yes | Type of search to perform. |
| `search_value` | string | Yes | Search value. For FSC: a 4-digit Federal Supply Class code (e.g. '5962'). For NSN: a full or partial NSN/part number; wildcards (*) are permitted (e.g. '5962*', '5962011231234'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dibbs-bsm-dla-mil-api-e947f9ce/search_rfq \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","search_type":"<string>","search_value":"<string>"}'
```
