> ## Documentation Index
> Fetch the complete documentation index at: https://developers.chameleon.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Listing Models

> The Chameleon API allows a generic retrieval and listing of data models.

You may also be interested in these additional resources:

* [Authentication](/concepts/authentication)
* [Errors](/concepts/errors)
* [Pagination](/concepts/pagination)

***

The currently supported models are:

| Model + details                           | List URL                    | Show URL                        |
| ----------------------------------------- | --------------------------- | ------------------------------- |
| [Segments](/apis/segments)                | `GET /v3/edit/segments`     | `GET /v3/edit/segments/:id`     |
| [Tours](/apis/tours)                      | `GET /v3/edit/tours`        | `GET /v3/edit/tours/:id`        |
| [Microsurveys](/apis/surveys)             | `GET /v3/edit/surveys`      | `GET /v3/edit/surveys/:id`      |
| [Launchers](/apis/launchers)              | `GET /v3/edit/launchers`    | `GET /v3/edit/launchers/:id`    |
| [Tooltips](/apis/tooltips)                | `GET /v3/edit/tooltips`     | `GET /v3/edit/tooltips/:id`     |
| [Domains](/apis/urls)                     | `GET /v3/edit/urls`         | `GET /v3/edit/urls/:id`         |
| [Experience Deliveries](/apis/deliveries) | `GET /v3/edit/deliveries`   | `GET /v3/edit/deliveries/:id`   |
| [Tags](/apis/tags)                        | `GET /v3/edit/tags`         | `GET /v3/edit/tags/:id`         |
| [Rate Limit Groups](/apis/limit-groups)   | `GET /v3/edit/limit_groups` | `GET /v3/edit/limit_groups/:id` |
| [Alert Groups](/apis/alert-groups)        | `GET /v3/edit/alert_groups` | `GET /v3/edit/alert_groups/:id` |
| [Data Imports](/apis/imports)             | `GET /v3/edit/imports`      | `GET /v3/edit/imports/:id`      |

#### HTTP Responses

All the HTTP responses look the same, with a pluralized top-level key with the list of models.

```
{
  "segments": [
    {
      "id": "5f3c4232c712de665632a2a1",
      ...
    }
  ]
}

# OR

{
  "launchers": [
    {
      "id": "5f3c4232c712de665632a2a3",
      ...
    }
  ]
}
```

When retrieving a single item, its designation will be singular (`launchers` becomes `launcher`).

```
{
  "launcher": {
    "id": "5f3c4232c712de665632a2a3",
    ...
  }
}
```

> **Are we missing a model you need and care about?** [Contact us](https://app.chameleon.io/help) to request a different one.
