Skip to main content
POST
/
resources
/
health
Tests connectivity for multiple resources
curl --request POST \
  --url https://use.hoop.dev/api/resources/health \
  --header 'Content-Type: application/json' \
  --data '
{
  "names": [
    "my-postgres",
    "analytics-db"
  ]
}
'
{
  "results": [
    {
      "output": "1\n(1 row)\n",
      "resource_name": "my-postgres",
      "status": "success"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://mintlify.hoop.dev/docs/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json

The request body

names
string[]
required

Names is the list of resource names to test

Minimum array length: 1
Example:
["my-postgres", "analytics-db"]

Response

OK

results
object[]

Results contains one entry per requested resource, in the same order as the input names