Try the RankNibbler SEO API

Get an alert contact Beta

GET /api/v1/alerting/contacts/{id}

One alert contact, with every address it can be reached on.

Needs an X-API-Key header whose owner has access to uptime monitoring in the app. The call counts once against your daily quota. See Monitoring API: getting started for authentication, rate limits and errors.

Path parameters

NameTypeDescription
id requiredstringThe contact id, for example ct_5b8d1f0a9c2e4d6f7a83.

Request

Response

200 · application/json
  1. {
  2. "contact": {
  3. "id": "ct_5b8d1f0a9c2e4d6f7a83",
  4. "name": "Night shift",
  5. "methods": [
  6. { "id": "318", "kind": "email", "target": "[email protected]", "severity": "all", "optedOut": false },
  7. { "id": "319", "kind": "email", "target": "[email protected]", "severity": "high", "optedOut": false }
  8. ],
  9. "createdAt": "2026-09-17T09:02:11.000Z",
  10. "updatedAt": "2026-09-17T09:02:11.000Z"
  11. },
  12. "usage": { "used": 44, "dailyLimit": 100, "tier": "free" }
  13. }

See the contact object for every field.

Errors

StatusWhen
401The API key is missing or invalid.
403The key's owner doesn't have access to uptime monitoring, or the key isn't linked to a workspace.
404No contact with that id in your workspace.
405The endpoint doesn't accept that method.
429A rate limit or your daily quota was hit. Read Retry-After, in seconds.
500, 503Something went wrong, or the API is temporarily unavailable. Try again.

Errors are JSON: { "error": "message" }. See Monitoring API errors.

Related