# Verification FDA — 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 verify registered pharmaceutical products, establishments, and licenses directly from the Philippine FDA verification portal. Quickly confirm product registrations and establishment credentials to ensure compliance with FDA regulations.

**Category:** Government & Public Data | **Website:** [verification.fda.gov.ph/](https://verification.fda.gov.ph/) | **Docs:** [parse.bot/marketplace/d176a71c-4f8e-4a93-a543-557032c41483/verification-fda-gov-ph-api](https://parse.bot/marketplace/d176a71c-4f8e-4a93-a543-557032c41483/verification-fda-gov-ph-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-verification-fda-gov-ph-api-d176a71c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_products

Full-text search across all FDA Philippines registration categories including drugs, food, medical devices, cosmetics, and establishments. Returns all matching records grouped by category. A single query fans out to every verification database the portal covers; results are returned in one response with no server-side pagination.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search term matched against product names, brand names, registration numbers, establishment names, and other indexed fields. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-verification-fda-gov-ph-api-d176a71c/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
