Company
Company information endpoints
Get company details
Retrieves the master data of the company your API key belongs to.
The company is resolved from the API key itself — there is no company parameter, and a key can never read another company's data.
Use Cases
- Connectivity check: The simplest authenticated call — verify your key works and confirm which company it is bound to before doing anything else.
- Document headers: Pull the legal name, VAT number, and address for rendering your own documents or syncing into another system.
- Localization: Use
preferredLanguageandcountryCodeto localize communication generated on behalf of the company. - Reading amounts correctly:
accounting.baseCurrencyis the currency every base-currency (functional) total on this API is denominated in, andaccounting.currentFiscalYeargives the reporting window and whether it is still open for posting. Read them before interpreting any figure — a report that saystotalOpenAmountBasesays nothing about which currency that is.
Response Structure
- id: Unique identifier for the company (UUID)
- name: Legal/display company name
- email / billingEmail: Primary and billing contact addresses
- vat: VAT registration number (CVR in Denmark)
- address, city, postalCode, countryCode: Registered address
(
countryCodeis ISO 3166-1 alpha-2, e.g.DK) - phone: Phone number
- preferredLanguage: Language code used for company communication (e.g.
da,en) - contactPersonFirstName / contactPersonLastName: Primary contact person
- accounting.baseCurrency: The company's base (functional) currency (ISO 4217) — what every base-currency total on this API is denominated in
- accounting.currentFiscalYear: The accounting year containing today —
startDate,endDate(both inclusive) andstatus(OPEN/CLOSED).nullwhen no accounting year covers today
Fields without a value are returned as null.
Required Scope
company-read
Performance
Results are cached for 5 seconds, so bursts of calls do not hit the database on every request.
Example Response
Code
Get company details › Responses
Company information
idUnique identifier for the company, uuidv7 based
nameCompany name
emailPrimary email address
addressStreet address
The company's accounting configuration: base currency and the fiscal year covering today.
vatVAT / company registration number, as registered
billingEmailBilling email address
cityCity
postalCodePostal code
countryCodeCountry code (ISO 3166-1 alpha-2)
phonePhone number
preferredLanguagePreferred language code
contactPersonFirstNameContact person first name
contactPersonLastNameContact person last name