Skip to main content
GET
/
health
Health check
curl --request GET \
  --url https://api.woopsocial.com/v1/health \
  --header 'Authorization: Bearer <token>'
{
  "message": "<string>",
  "timestampUTC": "<string>",
  "version": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successful response.

message
string
required

Human-readable message.

Example:

"Hello from WoopSocial API"

timestampUTC
string
required

Current server time in UTC with millisecond precision.

Example:

"2026-03-28T09:30:26.123Z"

version
string
required

API version that produced the response.

Example:

"v1"