Retrieve company data
Semaphore provides a comprehensive endpoint to retrieve detailed information about a specific company. This endpoint allows you to request various data points and documents related to the company.
Available Data Points
When retrieving company data, you can request the following data points:
companyProfile
: Basic company information, including legal representatives and shareholdersultimateBeneficialOwners
: Information about beneficial ownersavailableDocuments
: List of available official documents
You can request multiple data points in a single request by including them in the dataPoints
array:
Retrieving Documents
You can request specific documents by providing their IDs in the documents
array. Document IDs can be:
- Random IDs obtained from the
availableDocuments
data point - Smart IDs for quick access to common documents
Smart Document IDs
Smart IDs are predefined identifiers that can always be included in your document requests. While they can be used in any request, they don’t guarantee document availability. If a corresponding document exists, it will be returned in the response. Our smart IDs are:
trade_register_extract
: Latest trade register extractcertified_trade_register_extract
: Latest certified trade register extractlast_fiscal_year_financial_statement
: Previous year’s financial statement (not the last available one)last_consolidated_article_of_association
: Latest consolidated articles of association
Smart IDs can be used in any request, but document availability varies by company. For example, if you request
last_fiscal_year_financial_statement
, it specifically looks for the previous year’s statement - if that specific year is not available, the
request for this document will fail even if older statements exist. Similarly, a French K-bis (trade register extract) might be temporarily
unavailable for specific companies.
Understanding the Response
Request Object
The response includes a request
object that provides metadata about your request and the status of each requested data point and document:
The dataStatus
field is particularly important as it indicates:
- Whether data is immediately available (
succeeded
) - If retrieval is still in progress (
in_progress
) - If there were any errors (
failed
)
Synchronous vs Asynchronous Data
Data retrieval can be either synchronous (immediate) or asynchronous (requiring additional time):
- Synchronous Data: Available in the initial response within milliseconds
- Asynchronous Data: May take from seconds to multiple business days to retrieve
For asynchronous data, the initial response will indicate in_progress
status in the dataStatus
object.
Progressive Data Delivery
Data is delivered progressively through webhooks as it becomes available. This can happen:
- At the data point level (e.g.,
companyProfile
arrives beforeultimateBeneficialOwners
) - Within a single data point (e.g., basic company info arrives before legal representatives)
Example scenario:
Webhook Delivery
Webhooks deliver updates in a standardized format:
Webhook delivery follows the Svix retry policy to ensure reliable delivery.
Polling Alternative
Instead of using webhooks, you can poll the API using the requestId
from the initial response:
- Make the same API call with only the
requestId
- The response will contain the latest available data
- Data won’t be rebilled when using
requestId
- The state will match the original request
Polling recommendations:
- Maximum rate: 10 requests per second
- Recommended interval: Every 3 seconds
- Continue polling until all requested data points show
succeeded
orfailed
status
For detailed information about our credit-based billing system and how our caching optimizes costs and performance, please see our pricing & caching documentation.
Example Request
For country-specific information on:
- Available data points
- Document types
- Expected response times
Please consult our comprehensive coverage map.