Entities are the websites or brands you track. Every analytics command needs an entity ID. Get one fromDocumentation Index
Fetch the complete documentation index at: https://docs.geogen.io/llms.txt
Use this file to discover all available pages before exploring further.
geogen entities list.
geogen entities list
List all tracked entities in the workspace. Maps to GET /v1/entities.
id column is the entityTrackingId. Use it with every other command that takes --entity.
geogen entities create
Create a new tracked entity. This consumes credits. Maps to POST /v1/entities.
| Flag | Description |
|---|---|
--name <name> | Display name (required) |
--domain <domain> | Domain to track, e.g. example.com (required) |
--description <text> | Free-text description for context |
--language <code> | Language code, e.g. en, fr |
--geolocation <code> | Geolocation code, e.g. global, us |
--models <uuids> | Comma-separated model UUIDs (see geogen models) |
--tracking-type <type> | website (default) or individual |
--no-generate-prompts | Skip automatic AI prompt generation |
--no-start-tracking | Do not start tracking immediately |
--prompt <text...> | Provide your own prompts. Repeat the flag for multiple. |
With your own prompts
--prompt is supplied, automatic generation is skipped automatically.
geogen entities update
Update fields on an existing entity. Maps to PATCH /v1/entities.
| Flag | Description |
|---|---|
--entity <id> | Entity ID to update (required) |
--name <name> | New display name |
--target <domain> | New domain/target |
--description <text> | New description |
--language <code> | Language code |
--geolocation <code> | Geolocation code |
--models <uuids> | Comma-separated model UUIDs (replaces the existing set) |
geogen entities delete
Remove an entity (or a single tracking instance) from the workspace. Maps to DELETE /v1/entities.
geogen entities check-domain
Check whether a domain can be added to your workspace. Maps to GET /v1/entities/check-domain.
geogen entities tracking-status
Show when the last mention check completed, when the next is scheduled, and whether one is running right now. Maps to GET /v1/entities/tracking-status.

