Ping

Health check.

On this page

Health check

Returns a greeting and server metadata. Use to verify API reachability.

Technical details

Exact HTTP method and path your client calls

get/ping

Responses

Ping Response

FieldTypeDescription
greetingstring
datestring
urlstring
object
Example
{
  "greeting": "string",
  "date": "string",
  "url": "string",
  "headers": {
    "Content-Type": "string"
  }
}

Errors return the standard envelope. See error reference.

Code samples

curl --request GET \
  --url 'https://api.not24get.me/ping' \
  --header 'Authorization: Bearer <your-api-key>' \
  --header 'Content-Type: application/json'

Try it