Skip to main content

Overview

Use this endpoint to verify that the PesaHub API is up and running. This is the only endpoint that does not require authentication.

Endpoint

GET /v1/status

Authentication

None required.

Example Request

curl -X GET https://pesahub.test/api/v1/status
const response = await fetch('https://pesahub.test/api/v1/status');
const data = await response.json();
console.log(data);
import requests

response = requests.get('https://pesahub.test/api/v1/status')
print(response.json())
If this endpoint is unreachable, the PesaHub API may be experiencing downtime. Check the PesaHub status page or contact support.