Skip to content
Apier

Job recipe · Signature + Authority

Check who can sign for the company

The job

You are about to take a binding action and need to know who is allowed to commit the company — alone or jointly.

Endpoint

  • GET /api/v1/company/{org}/authority

Request

curl -H 'Authorization: Bearer <API_KEY>' \
  https://www.apier.no/api/v1/company/999999999/authority

Response

{
  "success": true,
  "data": {
    "org_number": "999999999",
    "name": "Synthetic Test AS",
    "entity_type": "AS",
    "classification": "sole",
    "summary": "En enkelt person kan tegne selskapet alene.",
    "kombinasjon_available": true,
    "signaturrett_holders": [
      {
        "role": "Styreleder",
        "name": "Ola Nordmann"
      }
    ],
    "prokura_holders": [],
    "data_sources": [
      "brreg",
      "fullmakttjenesten"
    ],
    "resolved_at": "2026-06-16T12:00:00+02:00"
  },
  "_meta": {
    "rulebook_version": "1.0.0",
    "data_freshness": "2026-06-16T06:00:00.000Z",
    "last_verified": "2026-06-16T06:00:00.000Z",
    "source": "apier.no",
    "schema_version": "1.0.0",
    "data_source": "Brønnøysund Enhetsregisteret",
    "legal_basis": "NLOD — public registry reuse"
  }
}

data.classification is the machine-readable acting-capacity verdict; data.summary is a short Norwegian explanation. Signaturrett and prokura holders are listed separately.

Next steps

  • If an action needs delegation, create an Altinn system user and have the signing authority approve it.
  • Treat a joint-signing combination as blocking: require multiple approvers before submitting.