403 responses for all api.company-information.service.gov.uk requests since 09:12 UTC

Since 09:12 today (2025-11-06) we’ve had 100% of API requests to https://api.company-information.service.gov.uk endpoints result in 403 responses. We’ve confirmed this via two (previously working) API keys. Does the API have a known outage?

7 Likes

We are having the same issue at approximately the same time

2 Likes

We are also having the same issue – any updates or confirmation would be appreciated.

2 Likes

Also getting 403 responses, via two new API keys generated today.

2 Likes

We have the same issue!

1 Like

Morning all,

I am getting this looked at, thanks for bringing it to our attention.

SDN

3 Likes

The issue is being caused by the API suddenly rejecting requests that don’t contain a User-Agent header.

By default our backend systems using Axios does not set the User-Agent header, by setting the header we were able to work around the issue:

Example:

200 OK:

curl --location 'https://api.company-information.service.gov.uk/search/companies?q=hello&restrictions=active-companies' \
--header 'Authorization: Basic *****' \
--header 'User-Agent: Example-header'

403 error:

curl --location 'https://api.company-information.service.gov.uk/search/companies?q=hello&restrictions=active-companies' \
--header 'Authorization: Basic *****'
2 Likes

Is there a SLA / ETA you can provide?

We’re now seeing 100% of requests are successful since 10:10

2 Likes

Thank you for the confirmation, we have regressed something which has allowed normal service to resume.

SDN

1 Like

Thanks. Can you please confirm whether this requirement of a User-Agent header (if indeed this was the culprit) is planned to come back in the future?

1 Like