allabolag.se APIallabolag.se ↗
Search and retrieve detailed profiles for Swedish companies via the allabolag.se API. Access financials, org numbers, roles, and location data.
curl -X GET 'https://api.parse.bot/scraper/b04fe5e7-c5a5-4454-a72c-d822b6f0876c/search?query=volvo' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for companies by name, keyword, or industry. Returns a list of matching companies with their basic info and links.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| queryrequired | string | Search keyword (company name, industry, etc.) |
{
"type": "object",
"fields": {
"page": "integer current page number",
"total": "integer total matching results (present when available)",
"companies": "array of company objects with name, link, org_number, and snippet fields"
},
"sample": {
"data": {
"page": 1,
"companies": [
{
"link": "/foretag/ikea-of-sweden-ab/%C3%A4lmhult/industridesigners/2JYQ49RI5YFC1",
"name": "IKEA of Sweden AB"
},
{
"link": "/foretag/ikea-components-ab/%C3%A4lmhult/insatsvaror/2JZQE5JI63IHE",
"name": "IKEA Components AB"
}
]
},
"status": "success"
}
}About the allabolag.se API
The allabolag.se API provides access to Swedish company registry data through 2 endpoints, returning fields covering organization numbers, multi-year financials, board and management roles, and location coordinates. The get_company_details endpoint delivers structured annual report data including revenue and profit in SEK alongside contact and industry information, while the search endpoint lets you query by company name, keyword, or industry across the full allabolag.se index.
Search Endpoint
The search endpoint accepts a required query string — a company name, industry term, or keyword — and an optional page integer for paginating through results. It returns an array of company objects, each containing name, link, org_number, and a snippet field that provides a short contextual description. When the total result count is available, it is returned as the total field alongside page and companies.
Company Details Endpoint
The get_company_details endpoint accepts either a 10-digit Swedish organization number (e.g. 5560743089) or a full /foretag/ path taken directly from a search result's link field. Bare internal ID strings are not valid identifiers. The response includes name, orgnr, phone, status (code and description), purpose, employees, revenue, and profit (both in SEK thousands). The location object contains county, municipality, and geographic coordinates. The roles object contains a roleGroups array covering board members, management, and revision roles.
Financial Data Coverage
Financial fields — revenue, profit, and employees — reflect data drawn from annual reports filed with Swedish authorities and indexed on allabolag.se. Values are returned as strings denominated in thousands of SEK. Multi-year history visible on the source site is accessible when the identifier resolves to a full company record.
Coverage and Identifiers
Allabolag.se covers registered Swedish legal entities. Companies are identified by their Swedish organization number or by the /foretag/ path returned by the search endpoint. Queries in Swedish are most effective given the source's language and categorization.
- Look up a Swedish company's org number and filing status before entering a business relationship.
- Retrieve board and management
rolesto map ownership or governance structure for due diligence. - Pull
revenueandprofitfields across multiple companies to benchmark financial performance within an industry. - Geocode Swedish businesses using
location.coordinatesfor regional market analysis. - Search by industry keyword and paginate results to build a prospecting list of Swedish companies.
- Monitor company
statuscodes to flag dissolved or inactive entities in an existing supplier database. - Enrich a CRM with verified Swedish company
phonenumbers, municipality, and county data.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does allabolag.se offer an official developer API?+
What does the `search` endpoint return, and how do I get full company details from it?+
search endpoint returns a list of company objects, each with name, org_number, snippet, and link. Pass either the org_number value or the full link path (which starts with /foretag/) as the identifier parameter to get_company_details to retrieve the full profile. Bare internal ID strings from the link are not valid on their own.Are financial figures returned as numbers or strings, and what currency and unit are used?+
revenue and profit fields are returned as strings. Values represent amounts in Swedish kronor (SEK) denominated in thousands, matching how annual report data is presented on allabolag.se.