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

FieldTypeDescriptionOptionalPossible 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"
}

Last updated