Discover/Europages API
live

Europages APIeuropages.fr

Search Europages suppliers and products, retrieve company profiles, contact details, certifications, and product catalogs via a structured REST API.

Endpoint health
verified 6d ago
get_company_details
get_company_products
search_suppliers
search_products
4/4 passing latest checkself-healing
Endpoints
4
Updated
21d ago

What is the Europages API?

The Europages API exposes 4 endpoints covering B2B supplier discovery, product search, and company intelligence across Europe's largest B2B directory. Use search_suppliers to query companies by keyword, country, and city with optional radius filtering, or search_products to browse product listings with pricing and minimum order quantities. Each endpoint returns structured JSON with contact details, company metadata, and geographic coordinates.

Try it
City name to filter results by location.
Page number for pagination.
Sort order for results. Accepted value: 'relevance'.
Search keyword for finding suppliers (e.g. 'packaging', 'steel', 'textile').
Search radius in kilometers when city is provided.
ISO country code to filter suppliers by country (e.g. 'FR', 'DE', 'IT').
api.parse.bot/scraper/d88e24e5-0ab5-42bf-b583-1f0704815eef/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/d88e24e5-0ab5-42bf-b583-1f0704815eef/search_suppliers?query=packaging&country=FR' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace europages-fr-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.europages_api import Europages, Supplier, Product, CompanyDetail, CompanyProduct

client = Europages()

# Search for suppliers in France
for supplier in client.suppliers.search(query="packaging", country="FR", limit=3):
    print(supplier.name, supplier.city, supplier.country_code, supplier.employee_count)

# Search for products
for product in client.products.search(query="steel tubes", country="FR", limit=5):
    print(product.name, product.slug_id, product.description)

# Get detailed company profile and browse its products
company = client.companydetails.get(slug="SEYAME", id="00000005287135-600296001")
print(company.name, company.employee_count, company.distribution_area)
print(company.address.city, company.address.postal_code)

for prod in company.products(limit=3):
    print(prod.name, prod.slug_id, prod.is_showcased)
All endpoints · 4 totalmissing one? ·

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.

Input
ParamTypeDescription
citystringCity name to filter results by location.
pageintegerPage number for pagination.
sortstringSort order for results. Accepted value: 'relevance'.
queryrequiredstringSearch keyword for finding suppliers (e.g. 'packaging', 'steel', 'textile').
radiusintegerSearch radius in kilometers when city is provided.
countrystringISO country code to filter suppliers by country (e.g. 'FR', 'DE', 'IT').
Response
{
  "type": "object",
  "fields": {
    "total": "integer total number of matching suppliers",
    "companies": "array of company objects with name, company_id, city, country_code, description, employee_count, founding_year, phone_number, homepage, location, portfolio_products, supplier_types, ep_slug, ep_id",
    "total_pages": "integer total number of pages",
    "current_page": "integer current page number"
  },
  "sample": {
    "data": {
      "total": 5638,
      "companies": [
        {
          "city": "Couffouleux",
          "name": "Midi Cintres & PACKAGING",
          "ep_id": "",
          "ep_slug": "",
          "homepage": "https://midi-cintres.fr/",
          "location": {
            "latitude": 43.808776,
            "longitude": 1.737165
          },
          "company_id": 22345129,
          "description": "Depuis 1987...",
          "country_code": "FR",
          "phone_number": "+1 (555) 012-3456",
          "founding_year": 1987,
          "employee_count": "5-9",
          "supplier_types": [
            "production",
            "customer_specific_manufacturing"
          ]
        }
      ],
      "total_pages": 188,
      "current_page": 1
    },
    "status": "success"
  }
}

About the Europages API

Supplier and Product Search

The search_suppliers endpoint accepts a required query keyword and optional filters including country (ISO code), city, and radius (kilometers). Results return paginated arrays of company objects containing name, company_id, city, country_code, description, employee_count, founding_year, phone_number, and a home URL. The total and total_pages fields let you walk through large result sets page by page.

The search_products endpoint takes a query keyword with optional country and per_page parameters. Each product object includes name, description, image, images, pricing fields, minimumOrderQuantity, and a nested company object carrying name, company_id, and country_code. This makes it straightforward to tie a product back to its supplier without a second request.

Company Profiles and Product Catalogs

Once you have a company's ep_slug and ep_id from search results, get_company_details returns a full profile: structured address (with addressLines, city, postalCode, countryCode), homepage, keywords, location (latitude and longitude), phoneNumber, description, certifications count, employee_count, founding_year, distribution_area, and supplier_types. The get_company_products endpoint uses the same slug and id pair to return that company's product catalog, including price, minimumOrderQuantity, isShowcased, and full image arrays. Both endpoints require identifiers sourced from search_suppliers or search_products results.

Reliability & maintenanceVerified

The Europages API is a managed, monitored endpoint for europages.fr — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when europages.fr changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official europages.fr API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
6d ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a supplier discovery tool that filters European manufacturers by country and product category using search_suppliers.
  • Aggregate product pricing and minimum order quantities across competing suppliers in a specific industry vertical via search_products.
  • Enrich a CRM with company founding year, employee count, certifications, and geocoordinates from get_company_details.
  • Monitor a target company's product catalog for new additions or price changes using get_company_products.
  • Compile B2B contact lists with phone numbers and website URLs for outbound sales prospecting.
  • Cross-reference supplier distribution areas and keywords to qualify regional sourcing candidates programmatically.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Europages have an official developer API?+
Europages does not publish a public developer API or documented REST endpoints for third-party access. This Parse API provides structured access to Europages data without requiring direct arrangement with Europages.
What identifiers do `get_company_details` and `get_company_products` require, and where do they come from?+
Both endpoints require a slug (e.g. 'SEYAME') and an id (e.g. '00000005287135-600296001'). These correspond to the ep_slug and ep_id fields returned in search_suppliers results, and the slug_id and company identifiers returned in search_products results. You must run a search first to obtain valid values.
Does `search_suppliers` return email addresses or social media profile links?+
The current response shape for search_suppliers includes phone_number and a home website URL, but does not expose email addresses or social media links. get_company_details similarly returns phoneNumber and homepage. You can fork this API on Parse and revise it to extract additional contact fields if they become available in the source profile.
Can I filter `search_products` results by price range or minimum order quantity?+
The search_products endpoint currently supports filtering by query, country, and page/per_page only. Price and minimum order quantity are returned as response fields but are not accepted as filter inputs. You can fork the API on Parse and revise it to add those filtering parameters.
How does pagination work across search endpoints?+
Both search_suppliers and search_products return total, current_page, and total_pages in each response. Pass an integer page parameter to step through results. search_products also accepts a per_page parameter to control page size. There is no cursor-based pagination; pages are addressed by number.
Page content last updated . Spec covers 4 endpoints from europages.fr.
Related APIs in B2b DirectorySee all →
wlw.de API
Search for B2B suppliers and manufacturers on wlw.de, view detailed company profiles with contact information and product catalogs, and discover featured businesses and products. Find the right industrial suppliers and vendors quickly by browsing company details and product listings across Germany's largest B2B marketplace.
wlw.at API
Search for products and suppliers on Austria's wlw.at B2B marketplace, then retrieve detailed company information including contact numbers, VAT IDs, and business details. Browse product categories and discover verified suppliers to streamline your procurement process.
globalsources.com API
Search Global Sources for products and suppliers, then fetch related product info and a supplier’s latest product listings using product IDs and organization IDs.
carrefour.eu API
Search and browse Carrefour's European online product catalog to access pricing, promotions, availability, and detailed product information including nutritional data. Retrieve comprehensive product details across categories to compare prices and find current deals in real-time.
pappers.fr API
Search French companies and directors to access detailed business profiles, ownership structures, trademark information, and legal filings all in one place. Build professional networks, track company leadership, and monitor business intelligence across France's official registry data.
euronics.it API
Browse and search the complete Euronics Italy product catalog with real-time pricing information across all categories. Find exactly what you're looking for with powerful keyword search or explore products by category with full pagination support.
pagesjaunes.fr API
Search for business listings across France on PagesJaunes.fr and access customer reviews and detailed location information. Find businesses by keyword and location, and retrieve comprehensive details including addresses, ratings, and reviews.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.