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?
We are having the same issue at approximately the same time
We are also having the same issue – any updates or confirmation would be appreciated.
Also getting 403 responses, via two new API keys generated today.
We have the same issue!
Morning all,
I am getting this looked at, thanks for bringing it to our attention.
SDN
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 *****'
Is there a SLA / ETA you can provide?
We’re now seeing 100% of requests are successful since 10:10
Thank you for the confirmation, we have regressed something which has allowed normal service to resume.
SDN
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?