Discover/Infobel API
live

Infobel APIinfobel.com

Search Infobel's global business and residential directories via API. Retrieve names, addresses, encrypted phone tokens, websites, and emails across countries.

This API takes change requests — .
Endpoint health
verified 5d ago
search_person
search_business
2/2 passing latest checkself-healing
Endpoints
2
Updated
28d ago

What is the Infobel API?

The Infobel API exposes 2 endpoints for searching business and residential contact records from Infobel's international directory. search_business returns up to 20 results per page including business name, address, website, email, and an encrypted phone identifier. search_person covers residential listings by name and location, with strongest coverage for Belgium. Both endpoints support pagination and country-scoped queries using ISO two-letter country codes.

Try it
Page number for pagination (1-based).
Business name or category to search for (e.g. 'Restaurant', 'Plumber', 'Hotel').
Two-letter country code.
City, region, or postcode to search in (e.g. 'London', 'Paris', 'Bruxelles'). Use the local-language spelling for best results.
api.parse.bot/scraper/00c8f30f-3b0a-466a-987b-1ac8634a8ad2/<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/00c8f30f-3b0a-466a-987b-1ac8634a8ad2/search_business?page=1&query=Restaurant&country=uk&location=London' \
  -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 infobel-com-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.infobel_scraper_api import Infobel, Country

infobel = Infobel()

# Search for restaurants in London, UK
for business in infobel.businesses.search(query="Restaurant", location="London", country=Country.UK):
    print(business.name, business.address, business.phone, business.website, business.email)

# Search for people named Dupont in Brussels, Belgium
for person in infobel.people.search(query="Dupont", location="Bruxelles", country=Country.BE):
    print(person.name, person.address, person.phone)
All endpoints · 2 totalmissing one? ·

Search for businesses on Infobel by category/name and location. Returns paginated results with business name, address, encrypted phone identifier, website, and email. Pages contain up to 20 results. The phone field contains an encrypted token (not a plaintext number). Country and location must match — use the local-language city name for non-English countries.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-based).
queryrequiredstringBusiness name or category to search for (e.g. 'Restaurant', 'Plumber', 'Hotel').
countrystringTwo-letter country code.
locationrequiredstringCity, region, or postcode to search in (e.g. 'London', 'Paris', 'Bruxelles'). Use the local-language spelling for best results.
Response
{
  "type": "object",
  "fields": {
    "count": "integer total number of matching results across all pages",
    "results": "array of business objects each containing name, address, phone (encrypted), website, and email",
    "has_more": "boolean indicating if more pages are available beyond the current page"
  },
  "sample": {
    "data": {
      "count": 34019,
      "results": [
        {
          "name": "Butlers Restaurant",
          "email": null,
          "phone": "REDACTED_SECRET",
          "address": "35 Charles Street W1J 5EB London",
          "website": null
        }
      ],
      "has_more": true
    },
    "status": "success"
  }
}

About the Infobel API

What the API Returns

The search_business endpoint accepts a query (business name or category such as 'Restaurant' or 'Plumber'), a required location (city, region, or postcode in local-language spelling), and an optional country code. Each page returns up to 20 business objects containing name, address, phone (encrypted token), website, and email. The top-level count field gives the total number of matching records across all pages, and has_more tells you whether additional pages exist.

People Search

The search_person endpoint follows the same pagination model but targets residential listings. It takes a query (surname or full name), a location, and an optional country. Response objects include name, address, and an encrypted phone token. Residential coverage is uneven across countries — Belgium (be) has the most complete data, making it the most reliable target for person lookups. Use local-language city names (e.g. Bruxelles rather than Brussels) to match Infobel's directory indexing.

Phone Field Behavior

Neither endpoint returns a plaintext phone number directly. The phone field in both search_business and search_person responses contains an encrypted token. This is a deliberate characteristic of the data — plan for it when designing downstream workflows that require actual dial strings.

Pagination

Both endpoints use 1-based integer page numbering via the page parameter. Each page contains at most 20 results. Use the count value to calculate total pages and has_more as a stop condition when iterating through result sets.

Reliability & maintenanceVerified

The Infobel API is a managed, monitored endpoint for infobel.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when infobel.com 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 infobel.com 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
5d ago
Latest check
2/2 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 targeted outreach lists of businesses by category and city using search_business with query and location
  • Verify whether a business name appears at a given address across multiple countries
  • Aggregate restaurant or hotel contact data including website and email fields for a specific region
  • Look up residential records by surname in Belgian cities using search_person with country=be
  • Enumerate all pages of plumber or electrician listings in a postcode area using the has_more and count fields
  • Cross-reference business email addresses from Infobel against internal CRM records for data enrichment
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 Infobel offer an official developer API?+
Yes. Infobel provides a commercial data and API offering through infobel.com/en/api. The Parse API is an independent interface to Infobel's publicly accessible directory and is not affiliated with or endorsed by Infobel.
What does the `phone` field actually contain?+
Both search_business and search_person return an encrypted token in the phone field rather than a plaintext number. The field is present in every result object but cannot be dialed or parsed as a phone number directly.
How reliable is the `search_person` endpoint across different countries?+
Residential coverage varies significantly by country. Belgium (be) has extensive person records, making it the most dependable target. Other countries may return sparse or no results for the same query. The count field on the response will reflect actual availability — a low count in a non-Belgian country is expected behavior, not an error.
Does the API return decrypted phone numbers or direct-dial strings?+
Not currently. Both endpoints return an encrypted phone token rather than a plaintext number. The API covers name, address, website, and email fields alongside the token. You can fork it on Parse and revise to add a decryption or phone-reveal endpoint if the underlying source exposes that capability.
Can I filter businesses by industry code or retrieve opening hours?+
Not currently. The search_business endpoint filters by free-text query, location, and country only — there is no structured industry code filter, and opening hours are not part of the response schema. You can fork it on Parse and revise to add those fields if the source exposes them.
Page content last updated . Spec covers 2 endpoints from infobel.com.
Related APIs in B2b DirectorySee all →
krak.dk API
Search for businesses and people in Denmark, retrieve detailed information like contact details and company profiles, and look up phone numbers to identify callers or report spam statistics. Find what you're looking for in the Danish business and person directory with instant access to company details, personal information, and caller identification data.
local.ch API
Search Swiss businesses and retrieve their contact details, addresses, phone numbers, opening hours, and website URLs directly from the local.ch directory. Look up companies by name, category, or location, and perform reverse phone number lookups.
einforma.com API
Search for companies, self-employed individuals, and executives across Spain's business directory, then access detailed company profiles including financial and operational information. Perfect for business research, lead generation, and competitive intelligence.
telecontact.ma API
Find businesses, phone numbers, and reviews across Morocco using Telecontact.ma's comprehensive directory—search by business name, location, phone number, brand, or ICE registration, and access detailed contact information, ratings, and top-rated companies in any category. Discover local services, browse by activity type, and identify leading brands all in one place.
cyberbackgroundchecks.com API
Search for people by name or email to instantly retrieve their public information including addresses, phone numbers, relatives, and associates. Access detailed background records to verify identities, reconnect with contacts, or conduct people searches.
bizapedia.com API
Search for detailed business profiles and contact information from Bizapedia, including company details, employee data, and communication channels. Access comprehensive business intelligence to research companies and build targeted contact lists.
paginasamarillas.com.pe API
Search and discover Peruvian businesses with instant access to their contact details, including phone numbers, emails, WhatsApp, websites, social media profiles, addresses, and operating hours. Find verified reviews and comprehensive business information all in one place to easily connect with companies across Peru.
yellowpages.in API
Search for businesses across India and discover detailed information like contact details, addresses, and services from YellowPages.in's comprehensive business directory. Find relevant business categories with autocomplete suggestions to quickly locate the leads and companies you're looking for.