API service status

This is how you can check the API service status.

Infobip API exposes an endpoint for checking the service status. You can access it by making a GET request to api.infobip.com/status. More precisely:

Request Example

					GET /status HTTP/1.1
Host: api.infobip.com
					
				
					curl https://api.infobip.com/status
					
				

The expected response has the HTTP status code 200 (OK). The response body typically contains the string "OK". The format of the response depends on your request, as discussed in the Content Types section.

"OK"
<?xml version='1.0' encoding='UTF-8'?>
<String>OK</String>

This endpoint will give you an overall API status. Some individual endpoints can still have their own error handling or availability requirements, so it is advisable to always consult the dedicated documentation page for an endpoint that returns a HTTP error status.