# Europages — 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 European suppliers and products, retrieve detailed company information and catalogs, and discover business listings across thousands of manufacturers and distributors on Europages. Find the right B2B partners by filtering suppliers, accessing company profiles, and browsing their product offerings all in one place.

**Category:** Business Directories | **Website:** [europages.fr/](https://europages.fr/) | **Docs:** [parse.bot/marketplace/f0da8467-8360-4178-971e-7e9a47de2abd/europages-fr-api](https://parse.bot/marketplace/f0da8467-8360-4178-971e-7e9a47de2abd/europages-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-europages-fr-api-f0da8467/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_details

Retrieve a detailed company profile from Europages by its slug and EP ID. Returns comprehensive info including name, description, address, contact details, keywords, certifications count, supplier types, employee count, founding year, distribution area, and more. The slug and id values are available from search_suppliers results (ep_slug and ep_id fields) or from search_products results (company.ep_slug and company.ep_id fields).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `id` | string | Yes | Europages company ID from search results (ep_id field, e.g. '00000005287135-600296001'). |
| `slug` | string | Yes | Company slug from search results (ep_slug field, e.g. 'SEYAME'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-europages-fr-api-f0da8467/get_company_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"id":"<string>","slug":"<string>"}'
```

### get_company_products

Get the list of products offered by a specific company from its Europages profile page. Returns product names, descriptions, images, pricing, and minimum order quantities. The slug and id values are available from search_suppliers results (ep_slug and ep_id fields) or from search_products results (company.ep_slug and company.ep_id fields).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `id` | string | Yes | Europages company ID from search results (ep_id field, e.g. '00000005287135-600296001'). |
| `slug` | string | Yes | Company slug from search results (ep_slug field, e.g. 'SEYAME'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-europages-fr-api-f0da8467/get_company_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"id":"<string>","slug":"<string>"}'
```

### search_products

Search for products or services on Europages by keyword. Returns a paginated list of product listings with descriptions, images, company info, pricing, and minimum order quantities. Supports filtering by country.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country` | string | No | ISO country code to filter products (e.g. 'FR', 'DE'). |
| `page` | integer | No | Page number for pagination. |
| `per_page` | integer | No | Number of results per page. |
| `query` | string | Yes | Product search keyword (e.g. 'packaging', 'steel tubes', 'furniture'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-europages-fr-api-f0da8467/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country":"<string>","page":"<integer>","per_page":"<integer>","query":"<string>"}'
```

### search_suppliers

Search for suppliers/companies on Europages by keyword. Returns a paginated list of companies with contact details, location, description, and portfolio products. Supports filtering by country and city with optional radius.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | No | City name to filter results by location. |
| `country` | string | No | ISO country code to filter suppliers by country (e.g. 'FR', 'DE', 'IT'). |
| `page` | integer | No | Page number for pagination. |
| `query` | string | Yes | Search keyword for finding suppliers (e.g. 'packaging', 'steel', 'textile'). |
| `radius` | integer | No | Search radius in kilometers when city is provided. |
| `sort` | string | No | Sort order for results. Accepted value: 'relevance'. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-europages-fr-api-f0da8467/search_suppliers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>","country":"<string>","page":"<integer>","query":"<string>","radius":"<integer>","sort":"<string>"}'
```
