# Allabolag — 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 and retrieve detailed information about Swedish companies, including their industry classifications and historical financial records from annual reports. Access comprehensive company profiles to analyze financial performance and business data for any registered Swedish business.

**Category:** Business Directories | **Website:** [allabolag.se/](https://allabolag.se/) | **Docs:** [parse.bot/marketplace/65149ca1-cdaf-4c5c-8962-18a88bf1c8fc/allabolag-se-api](https://parse.bot/marketplace/65149ca1-cdaf-4c5c-8962-18a88bf1c8fc/allabolag-se-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-allabolag-se-api-65149ca1/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_details

Get comprehensive details for a specific company, including contact info, industry classification, financial accounts, corporate structure, roles, and registration data. Accepts a 10-digit org number or a full /foretag/ path from search results as identifier.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `identifier` | string | Yes | Company identifier - either a 10-digit org number (e.g. '5560743089') or a full path starting with /foretag/ (e.g. '/foretag/ikea-of-sweden-ab/%C3%A4lmhult/industridesigners/2JYQ49RI5YFC1'). Bare companyId values are not accepted. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-allabolag-se-api-65149ca1/get_company_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"identifier":"<string>"}'
```

### search

Full-text search over Swedish companies by name, keyword, or industry. Returns a paginated list of matching companies with their name and path. Paginates via integer page counter. Each result carries a link usable as identifier for the detail endpoint.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `query` | string | Yes | Search keyword (company name, industry, etc.) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-allabolag-se-api-65149ca1/search \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>"}'
```
