invalid_cursor

HTTP 400

Validation failed

Type URL

https://developer.hostup.se/errors/invalid_cursor

Detail message

Cursor is invalid or malformed.

Example response

{
  "type": "https://developer.hostup.se/errors/invalid_cursor",
  "title": "Validation failed",
  "status": 400,
  "detail": "Cursor is invalid or malformed.",
  "code": "invalid_cursor",
  "instance": "/api/v2/...",
  "requestId": "req_abc123",
  "timestamp": "2026-04-27T12:00:00.000Z"
}

Endpoints that may return this error

Handling this error

const response = await fetch(url, options);

if (!response.ok) {
  const problem = await response.json();

  if (problem.code === "invalid_cursor") {
    // Handle: Validation failed
    console.error(problem.detail);
  }
}