The Health service is designed to allow you to both validate and monitor that your Appwrite instance and all of its internal components are up and responsive.
https://<REGION>.cloud.appwrite.io/v1
Get antivirus
Check the Appwrite Antivirus server is up and connection is successful.
- Response- 200 application/json 
 
GET /health/anti-virus
<?php
use Appwrite\Client;
use Appwrite\Services\Health;
$client = (new Client())
    ->setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
    ->setProject('<YOUR_PROJECT_ID>') // Your project ID
    ->setKey('<YOUR_API_KEY>'); // Your secret API key
$health = new Health($client);
$result = $health->getAntivirus();
Get cache
Check the Appwrite in-memory cache servers are up and connection is successful.
- Response- 200 application/json 
 
GET /health/cache
<?php
use Appwrite\Client;
use Appwrite\Services\Health;
$client = (new Client())
    ->setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
    ->setProject('<YOUR_PROJECT_ID>') // Your project ID
    ->setKey('<YOUR_API_KEY>'); // Your secret API key
$health = new Health($client);
$result = $health->getCache();
Get DB
Check the Appwrite database servers are up and connection is successful.
- Response- 200 application/json 
 
GET /health/db
<?php
use Appwrite\Client;
use Appwrite\Services\Health;
$client = (new Client())
    ->setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
    ->setProject('<YOUR_PROJECT_ID>') // Your project ID
    ->setKey('<YOUR_API_KEY>'); // Your secret API key
$health = new Health($client);
$result = $health->getDB();
GET /health
<?php
use Appwrite\Client;
use Appwrite\Services\Health;
$client = (new Client())
    ->setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
    ->setProject('<YOUR_PROJECT_ID>') // Your project ID
    ->setKey('<YOUR_API_KEY>'); // Your secret API key
$health = new Health($client);
$result = $health->get();
Get pubsub
Check the Appwrite pub-sub servers are up and connection is successful.
- Response- 200 application/json 
 
GET /health/pubsub
<?php
use Appwrite\Client;
use Appwrite\Services\Health;
$client = (new Client())
    ->setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
    ->setProject('<YOUR_PROJECT_ID>') // Your project ID
    ->setKey('<YOUR_API_KEY>'); // Your secret API key
$health = new Health($client);
$result = $health->getPubSub();
Get the SSL certificate for a domain
Get the SSL certificate for a domain
- Request- domain string - string 
 
- Response- 200 application/json 
 
GET /health/certificate
<?php
use Appwrite\Client;
use Appwrite\Services\Health;
$client = (new Client())
    ->setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
    ->setProject('<YOUR_PROJECT_ID>') // Your project ID
    ->setKey('<YOUR_API_KEY>'); // Your secret API key
$health = new Health($client);
$result = $health->getCertificate(
    domain: '' // optional
);
Get time
Check the Appwrite server time is synced with Google remote NTP server. We use this technology to smoothly handle leap seconds with no disruptive events. The Network Time Protocol (NTP) is used by hundreds of millions of computers and devices to synchronize their clocks over the Internet. If your computer sets its own clock, it likely uses NTP.
- Response- 200 application/json 
 
GET /health/time
<?php
use Appwrite\Client;
use Appwrite\Services\Health;
$client = (new Client())
    ->setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
    ->setProject('<YOUR_PROJECT_ID>') // Your project ID
    ->setKey('<YOUR_API_KEY>'); // Your secret API key
$health = new Health($client);
$result = $health->getTime();
Get builds queue
Get the number of builds that are waiting to be processed in the Appwrite internal queue server.
- Request- threshold integer - Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000. 
 
- Response- 200 application/json 
 
GET /health/queue/builds
<?php
use Appwrite\Client;
use Appwrite\Services\Health;
$client = (new Client())
    ->setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
    ->setProject('<YOUR_PROJECT_ID>') // Your project ID
    ->setKey('<YOUR_API_KEY>'); // Your secret API key
$health = new Health($client);
$result = $health->getQueueBuilds(
    threshold: null // optional
);
Get certificates queue
Get the number of certificates that are waiting to be issued against Letsencrypt in the Appwrite internal queue server.
- Request- threshold integer - Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000. 
 
- Response- 200 application/json 
 
GET /health/queue/certificates
<?php
use Appwrite\Client;
use Appwrite\Services\Health;
$client = (new Client())
    ->setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
    ->setProject('<YOUR_PROJECT_ID>') // Your project ID
    ->setKey('<YOUR_API_KEY>'); // Your secret API key
$health = new Health($client);
$result = $health->getQueueCertificates(
    threshold: null // optional
);
Get databases queue
Get the number of database changes that are waiting to be processed in the Appwrite internal queue server.
- Request- name string - Queue name for which to check the queue size 
- threshold integer - Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000. 
 
- Response- 200 application/json 
 
GET /health/queue/databases
<?php
use Appwrite\Client;
use Appwrite\Services\Health;
$client = (new Client())
    ->setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
    ->setProject('<YOUR_PROJECT_ID>') // Your project ID
    ->setKey('<YOUR_API_KEY>'); // Your secret API key
$health = new Health($client);
$result = $health->getQueueDatabases(
    name: '<NAME>', // optional
    threshold: null // optional
);
Get deletes queue
Get the number of background destructive changes that are waiting to be processed in the Appwrite internal queue server.
- Request- threshold integer - Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000. 
 
- Response- 200 application/json 
 
GET /health/queue/deletes
<?php
use Appwrite\Client;
use Appwrite\Services\Health;
$client = (new Client())
    ->setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
    ->setProject('<YOUR_PROJECT_ID>') // Your project ID
    ->setKey('<YOUR_API_KEY>'); // Your secret API key
$health = new Health($client);
$result = $health->getQueueDeletes(
    threshold: null // optional
);
Get functions queue
Get the number of function executions that are waiting to be processed in the Appwrite internal queue server.
- Request- threshold integer - Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000. 
 
- Response- 200 application/json 
 
GET /health/queue/functions
<?php
use Appwrite\Client;
use Appwrite\Services\Health;
$client = (new Client())
    ->setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
    ->setProject('<YOUR_PROJECT_ID>') // Your project ID
    ->setKey('<YOUR_API_KEY>'); // Your secret API key
$health = new Health($client);
$result = $health->getQueueFunctions(
    threshold: null // optional
);
Get logs queue
Get the number of logs that are waiting to be processed in the Appwrite internal queue server.
- Request- threshold integer - Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000. 
 
- Response- 200 application/json 
 
GET /health/queue/logs
<?php
use Appwrite\Client;
use Appwrite\Services\Health;
$client = (new Client())
    ->setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
    ->setProject('<YOUR_PROJECT_ID>') // Your project ID
    ->setKey('<YOUR_API_KEY>'); // Your secret API key
$health = new Health($client);
$result = $health->getQueueLogs(
    threshold: null // optional
);
Get mails queue
Get the number of mails that are waiting to be processed in the Appwrite internal queue server.
- Request- threshold integer - Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000. 
 
- Response- 200 application/json 
 
GET /health/queue/mails
<?php
use Appwrite\Client;
use Appwrite\Services\Health;
$client = (new Client())
    ->setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
    ->setProject('<YOUR_PROJECT_ID>') // Your project ID
    ->setKey('<YOUR_API_KEY>'); // Your secret API key
$health = new Health($client);
$result = $health->getQueueMails(
    threshold: null // optional
);
Get messaging queue
Get the number of messages that are waiting to be processed in the Appwrite internal queue server.
- Request- threshold integer - Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000. 
 
- Response- 200 application/json 
 
GET /health/queue/messaging
<?php
use Appwrite\Client;
use Appwrite\Services\Health;
$client = (new Client())
    ->setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
    ->setProject('<YOUR_PROJECT_ID>') // Your project ID
    ->setKey('<YOUR_API_KEY>'); // Your secret API key
$health = new Health($client);
$result = $health->getQueueMessaging(
    threshold: null // optional
);
Get migrations queue
Get the number of migrations that are waiting to be processed in the Appwrite internal queue server.
- Request- threshold integer - Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000. 
 
- Response- 200 application/json 
 
GET /health/queue/migrations
<?php
use Appwrite\Client;
use Appwrite\Services\Health;
$client = (new Client())
    ->setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
    ->setProject('<YOUR_PROJECT_ID>') // Your project ID
    ->setKey('<YOUR_API_KEY>'); // Your secret API key
$health = new Health($client);
$result = $health->getQueueMigrations(
    threshold: null // optional
);
Get number of failed queue jobs
Returns the amount of failed jobs in a given queue.
- Request- name string required- The name of the queue 
- threshold integer - Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000. 
 
- Response- 200 application/json 
 
GET /health/queue/failed/{name}
<?php
use Appwrite\Client;
use Appwrite\Services\Health;
use Appwrite\Enums\;
$client = (new Client())
    ->setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
    ->setProject('<YOUR_PROJECT_ID>') // Your project ID
    ->setKey('<YOUR_API_KEY>'); // Your secret API key
$health = new Health($client);
$result = $health->getFailedJobs(
    name: ::V1DATABASE(),
    threshold: null // optional
);
Get stats resources queue
Get the number of metrics that are waiting to be processed in the Appwrite stats resources queue.
- Request- threshold integer - Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000. 
 
- Response- 200 application/json 
 
GET /health/queue/stats-resources
<?php
use Appwrite\Client;
use Appwrite\Services\Health;
$client = (new Client())
    ->setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
    ->setProject('<YOUR_PROJECT_ID>') // Your project ID
    ->setKey('<YOUR_API_KEY>'); // Your secret API key
$health = new Health($client);
$result = $health->getQueueStatsResources(
    threshold: null // optional
);
Get stats usage queue
Get the number of metrics that are waiting to be processed in the Appwrite internal queue server.
- Request- threshold integer - Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000. 
 
- Response- 200 application/json 
 
GET /health/queue/stats-usage
<?php
use Appwrite\Client;
use Appwrite\Services\Health;
$client = (new Client())
    ->setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
    ->setProject('<YOUR_PROJECT_ID>') // Your project ID
    ->setKey('<YOUR_API_KEY>'); // Your secret API key
$health = new Health($client);
$result = $health->getQueueUsage(
    threshold: null // optional
);
Get webhooks queue
Get the number of webhooks that are waiting to be processed in the Appwrite internal queue server.
- Request- threshold integer - Queue size threshold. When hit (equal or higher), endpoint returns server error. Default value is 5000. 
 
- Response- 200 application/json 
 
GET /health/queue/webhooks
<?php
use Appwrite\Client;
use Appwrite\Services\Health;
$client = (new Client())
    ->setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
    ->setProject('<YOUR_PROJECT_ID>') // Your project ID
    ->setKey('<YOUR_API_KEY>'); // Your secret API key
$health = new Health($client);
$result = $health->getQueueWebhooks(
    threshold: null // optional
);
Get local storage
Check the Appwrite local storage device is up and connection is successful.
- Response- 200 application/json 
 
GET /health/storage/local
<?php
use Appwrite\Client;
use Appwrite\Services\Health;
$client = (new Client())
    ->setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
    ->setProject('<YOUR_PROJECT_ID>') // Your project ID
    ->setKey('<YOUR_API_KEY>'); // Your secret API key
$health = new Health($client);
$result = $health->getStorageLocal();
Get storage
Check the Appwrite storage device is up and connection is successful.
- Response- 200 application/json 
 
GET /health/storage
<?php
use Appwrite\Client;
use Appwrite\Services\Health;
$client = (new Client())
    ->setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
    ->setProject('<YOUR_PROJECT_ID>') // Your project ID
    ->setKey('<YOUR_API_KEY>'); // Your secret API key
$health = new Health($client);
$result = $health->getStorage();