Mailbox API
Service root
GET
/
const url = 'https://api.customers.ac/api/mailbox/v1alpha1/';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.customers.ac/api/mailbox/v1alpha1/Returns service metadata. This is the only unauthenticated endpoint — useful as a reachability check before you debug credentials.
Responses
Section titled “Responses”Service metadata.
Media typeapplication/json
object
service
string
version
string
status
string
Example
{ "service": "mailbox-api", "version": "v1alpha1", "status": "alpha"}