Try the RankNibbler SEO API

Get a maintenance window Beta

GET /api/v1/maintenance/{id}

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.

200 · application/json
  1. { "maintenance": { "id": "mw_3f9a0c1d2e4b5a6c7d8e", … }, "usage": { "used": 32, "dailyLimit": 100, "tier": "free" } }

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 maintenance window 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.
500Something went wrong on our side. Try again.
503The API is temporarily unavailable. Try again shortly.

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

Related