Skip to main content
GET
/
domain-groups
List Domain Groups
curl --request GET \
  --url https://api.geogen.io/v1/domain-groups \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "primaryEntityUuid": "<string>",
      "entityTrackingId": "<string>",
      "entities": [
        {
          "entityId": "<string>",
          "entityUuid": "<string>",
          "name": "<string>",
          "target": "<string>",
          "faviconUrl": "<string>",
          "isPrimary": true,
          "inWorkspace": true
        }
      ],
      "createdAt": 123,
      "updatedAt": 123
    }
  ],
  "count": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.geogen.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key authentication. Format: Bearer wsk_your_api_key

Query Parameters

groupId
string

When provided, returns a single domain group by ID.

entityId
string

When provided, only returns groups scoped to this entity tracking (or legacy groups that have no tracking scope).

Response

Domain groups retrieved successfully.

Returned when neither groupId nor an empty result is requested.

success
boolean
data
object[]
count
number