UK Establishments

Output

AttributeTypeDescriptionAdditional

etag

string

The ETag of the resource.

array

List of UK Establishment companies.

kind

string

UK Establishment companies.

Possible values are:

  • ukestablishment-companies

object

UK Establishment Resources related to this company.

UK Establishment Company Item

AttributeTypeDescriptionAdditional

companyName

string

The name of the company.

companyNumber

string

The number of the company.

companyStatus

string

Company status.

object

Resources related to this company.

locality

string

The locality, e.g., London.

Optional

AttributeTypeDescription

self

string

Link to this company.

AttributeTypeDescriptionAdditional

company

string

The link to the company.

Optional

Example

{
    "etag": "abc123",
    "items": [
        {
            "companyName": "Example Corp",
            "companyNumber": "123456789",
            "companyStatus": "Active",
            "links": {
                "company": "https://example.com/company/123456789"
            },
            "locality": "Cityville"
        },
        {
            "companyName": "Sample Ltd",
            "companyNumber": "987654321",
            "companyStatus": "Dissolved",
            "links": {
                "company": "https://example.com/company/987654321"
            },
            "locality": "Townsville"
        }
    ],
    "kind": "response",
    "links": {
        "self": "https://example.com/companies"
    }
}

Last updated