Documentation
HomeSupportStatusSign in ->
  • Developer guide
  • How it works?
  • Integration Quick Guide
    • Link Flow
    • Embedded Flow
    • Running Workflow
  • Production setup
  • Webhooks
  • Widget
    • Methods
    • Inline mode
  • Postman Collection
  • Changelog
  • Records
    • Introduction
    • Migration Guide: Migrating from Cases to Records
  • TRANSACTIONLINK API
    • API Reference
      • Authentication
      • Cases (deprecated)
      • Resources
      • Parameters
      • Token
      • Link
      • Workflows
      • Records
        • Attachments
    • API Changelog
    • API Versioning
  • Integrations
    • AIS
      • Data fields availability across banks
      • Testing data
    • Autopay
    • BIG Info Monitor
      • Company Report
      • Personal Report
      • Entrepreneur Report
      • Plus Sco Plus CR3 Report
    • BankID
      • 🇳🇴Norway
      • 🇩🇰Denmark
    • CEIDG
      • Get company
      • List companies
    • Companies House
      • Public Data Api
        • Exemptions
        • Persons with significant Control
        • UK Establishments
        • Filing History
        • Registers
        • Registered Office Address
        • Company Profile
        • Officers
        • Insolvency
        • Charges
      • Documents Api
    • ComplyAdvantage
    • ComplyCube
      • Identity Verification
        • Document Check
        • Proof of Address Check
        • Identity Check
      • Document Check
      • AML Screening Check
      • Face Authentication Check
    • Data Ninja
      • Labeling
      • Profiling
      • Scoring
    • eDO App
    • GUS
    • IAML
    • KRD
      • Company Report
      • Personal Report
      • Identity Card Verification
    • mObywatel
      • CitizenDetails
      • CitizenNationality
    • OnDato
    • Polish VAT Whitelist
    • Przelewy 24
    • PWG
    • QARD
    • Rejestr.io
    • Registru Centras
      • Get company
      • List documents
      • Get document
    • Smart-ID
    • SMS API
    • Twilio
    • MojeId
    • Veriff
      • Supported Browsers
    • VIES (Vat Validation)
      • vies
    • Zoho Sign
      • Adding document fields automatically using text tags
    • Idenfy
    • GBG
      • IDScan
      • Verifications
    • Visa
    • KYB
      • Company Profile
    • Handelsregister
      • Company profile
        • List companies
        • Get company
        • Get company documents
    • InfoCamere
      • Company profile
        • List companies
        • List persons
        • Get company
        • Get person
        • Get documents
    • CBE - Belgium Company Register
      • Company profile
        • List companies
        • Get company
        • List documents
        • Get document
    • Transparenzregister
      • Beneficial owners
        • List companies
        • List documents
        • Get documents
    • CVR (Danish Central Business Register)
      • Company profile
        • List Companies
        • Get Company
        • Get document
    • Malta Business Registry
      • Company profile
        • List Companies
        • Get Company
Powered by GitBook
On this page
  • Overview
  • Output
  • Example

Was this helpful?

  1. Integrations
  2. Companies House
  3. Public Data Api

Registered Office Address

Overview

Registered office address data type offers a overview of a company's official registered address. This includes details such as the street address, city, postal code, and country. Accessing this endpoint provides valuable insights into where the company is legally headquartered and conducts its official correspondence.

Output

Field
Type
Description
Optional
Possible Values

addressLine1

string

The first line of the address.

addressLine2

string

The second line of the address.

country

string

The country.

Optional

England, Wales, Scotland, Northern Ireland, Great Britain, United Kingdom, Not specified

etag

string

The ETag of the resource.

Optional

kind

string

The type of resource.

Optional

registered-office-address

links

object

Links to the related resources.

Optional

links.self

uri

URL to this resource.

Read only

locality

string

The locality, e.g., London.

poBox

string

The post-office box number.

Optional

postalCode

string

The postal code, e.g., CF14 3UZ.

Optional

premises

string

The property name or number.

region

string

The region, e.g., Surrey.

Optional

Example

{
    "addressLine1": "123 Main Street",
    "addressLine2": "Apt 456",
    "country": "United States",
    "etag": "abc123",
    "kind": "residential",
    "links": {
        "self": "https://example.com/address/123"
    },
    "locality": "Cityville",
    "poBox": "789",
    "postalCode": "12345",
    "premises": "Building A",
    "region": "Stateville"
}

PreviousRegistersNextCompany Profile

Last updated 1 year ago

Was this helpful?