# Inpi — 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 discover French industrial property information including patents, trademarks, designs, and company registrations from the official INPI national register. Find the intellectual property data you need to research competitors, verify trademark availability, or explore patent landscapes in France.

**Category:** Government & Public Data | **Website:** [data.inpi.fr/](https://data.inpi.fr/) | **Docs:** [parse.bot/marketplace/e5c8d20e-a536-43c2-8407-9728d2e690be/data-inpi-fr-api](https://parse.bot/marketplace/e5c8d20e-a536-43c2-8407-9728d2e690be/data-inpi-fr-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-data-inpi-fr-api-e5c8d20e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search

Full-text search across INPI databases: patents (brevets), trademarks (marques), companies (RNE entreprises), and industrial designs (dessins et modèles). Results are ranked by relevance and include metadata, applicant information, classifications, and links to detail pages and associated documents. Each record type returns type-specific fields.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (1-based). |
| `query` | string | Yes | Search terms (name, applicant, SIREN, denomination, representative, keyword). |
| `results_per_page` | integer | No | Number of results per page (1-100). |
| `type` | string | No | Database to search. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-data-inpi-fr-api-e5c8d20e/search \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>","results_per_page":"<integer>","type":"<string>"}'
```
