Skip to main content
GET
/
apps
curl -H "Authorization: Bearer sk_workspace_test_..." \
  "https://sandbox.api.hopae.com/connect/v1/apps?limit=20&offset=0"
{
  "object": "list",
  "data": [
    {
      "client_id": "abc123",
      "name": "My App",
      "branding": { "name": "My App", "logo": "..." },
      "redirect_uris": [],
      "verification": { "request_attributes": [], "providers": [] },
      "webhook_config": {
        "enabled": true,
        "events": ["verification.completed", "verification.failed"],
        "retry_attempts": 3,
        "timeout_seconds": 10
      },
      "created_at": 1731465600
    }
  ],
  "total": 42,
  "limit": 20,
  "offset": 0
}
List apps in the workspace using offset pagination.

Request

Authorization
string
required
Bearer <API_KEY> from Console > Developers > Workspace API Keys.

Query parameters

limit
number
default:"20"
Page size (max 100).
offset
number
default:"0"
Offset for pagination.

Response

object
string
Always list.
data
object[]
Array of app objects.
total
number
Total apps in the workspace.
limit
number
Page size applied.
offset
number
Offset applied.
curl -H "Authorization: Bearer sk_workspace_test_..." \
  "https://sandbox.api.hopae.com/connect/v1/apps?limit=20&offset=0"
{
  "object": "list",
  "data": [
    {
      "client_id": "abc123",
      "name": "My App",
      "branding": { "name": "My App", "logo": "..." },
      "redirect_uris": [],
      "verification": { "request_attributes": [], "providers": [] },
      "webhook_config": {
        "enabled": true,
        "events": ["verification.completed", "verification.failed"],
        "retry_attempts": 3,
        "timeout_seconds": 10
      },
      "created_at": 1731465600
    }
  ],
  "total": 42,
  "limit": 20,
  "offset": 0
}