> ## 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.

# Introduction

> Welcome to the Geogen API

## Overview

The Geogen API allows you to programmatically access your LLM visibility data, manage entities, and track AI mentions.

<Warning>
  This API is currently in beta, and its endpoints and data structures may change. Thank you for your understanding as we continue to refine and improve it.
</Warning>

## Base URL

All API requests should be made to:

```
https://api.geogen.io/v1
```

## Quick Start

1. Generate an API key from **Settings** → **Workspaces** → **Your Workspace** → **API Keys**
2. Add the key to your request headers
3. Make your first API call

```bash theme={null}
curl -X GET "https://api.geogen.io/v1/entities" \
  -H "Authorization: Bearer wsk_your_api_key"
```

## Response Format

All responses are returned in JSON format:

```json theme={null}
{
  "success": true,
  "data": [...],
  "pagination": {
    "total": 100,
    "limit": 20,
    "offset": 0
  }
}
```

## Need Help?

Contact us at [contact@geogen.io](mailto:contact@geogen.io)
