When using the read-only API key, the following fields are omitted:
When using the read-only API key, the following fields are omitted:
`ping_url`, `update_url`, `pause_url`, `channels`. An extra `unique_key` field
`ping_url`, `update_url`, `pause_url`, `channels`. An extra `unique_key` field
is added. This identifier is stable across API calls. Example:
is added which can be used [to `GET` a check](#get-check) in place of the `UUID`. The `unique_key` is stable across API calls. Example:
```json
```json
{
{
@ -160,9 +161,9 @@ is added. This identifier is stable across API calls. Example:
```
```
## Get a Single Check {: #get-check .rule }
## Get a Single Check {: #get-check .rule }
`GET SITE_ROOT/api/v1/checks/<uuid>`
`GET SITE_ROOT/api/v1/checks/<uuid>` OR `GET SITE_ROOT/api/v1/checks/<unique_key>`
Returns a JSON representation of a single check.
Returns a JSON representation of a single check. Can take either the UUID or the `unique_key` (see [information above](#list-checks)) as the identifier of the check to return.