Ping

Allows checking the validity of API connection parameters.

URI
/api/v10/ping

GET Test authentication

A dummy API request that does not return any personal data and has no effect on the system resources. This API request returns only the current timestamp and can be used to check the validity of API connection parameters.

The API request requires authentication like other API requests.

Syntax
GET /api/v10/ping
Host: apply.example.edu
Authorization: DREAM apikey="..."

Example request

Request
curl
curl \
  -X GET \
  -H "Authorization: DREAM apikey=\"YOUR-API-KEY\"" \
  "https://apply.example.edu/api/v10/ping"

Response headers

HeaderValueDescription
Content-Typeapplication/jsonThe media type of the resource
Content-Length19The size of the response body in bytes

Response codes

Response codeDescription
200 OKThe response was successfully returned

Example response

Response
{
  "pong": 1766042367
}