> For the complete documentation index, see [llms.txt](https://docs.intelligems.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.intelligems.io/developer-resources/external-api/intelligems-external-api/available-endpoints.md).

# Available Endpoints

This is the authoritative list of endpoints. It is validated against the registered routes by an automated test, so it stays in sync and should not drift from the detailed per-endpoint pages.

**Experiences**

* `GET /v25-10-beta/experiences-list` — Retrieve a paginated list of experiences with optional filtering by `category`, `status`, and `module`
* `GET /v25-10-beta/experiences/{experienceId}` — Get complete details for a specific experience
* `POST /v25-10-beta/experiences` — Create a new experience or experiment
* `PUT /v25-10-beta/experiences/{experienceId}` — Update an existing experience's configuration, variations, or targeting
* `POST /v25-10-beta/experiences/{experienceId}/actions/{action}` — Perform a lifecycle action on an experience (`start`, `pause`, or `end`)

**Experience & Experiment Analytics**

* `POST /v25-10-beta/analytics/resource/{experienceId}` — Retrieve analytics for an experience (metrics, variations, optional graphs). Accepts filters and all request settings in the JSON body. Use this for all new integrations.
* `POST /v25-10-beta/analytics/experience/{experienceId}/timeseries` — Metric-over-time data for a single experience
* `POST /v25-10-beta/analytics/experience/{experienceId}/export` — Export an experience's analytics dataset
* `GET /v25-10-beta/analytics/resource/{experienceId}` — *Deprecated.* Legacy query-parameter analytics endpoint, kept only as a beta compatibility path and removed when the beta ends. Use the POST variant above instead.

**Sitewide Analytics**

* `POST /v25-10-beta/analytics/sitewide/snapshot` — Summary KPI metrics with period-over-period percent changes and optional audience segmentation
* `POST /v25-10-beta/analytics/sitewide/timeseries` — Metric-over-time data with configurable granularity and optional audience segmentation
* `POST /v25-10-beta/analytics/sitewide/order-distribution` — Order-value histogram (KDE/CDF) and unit-mix breakdown
* `POST /v25-10-beta/analytics/sitewide/conversion-funnel` — Sitewide conversion funnel as a Sankey graph (entry point → landing page → cart → checkout → conversion)

**Holiday Benchmark**

* `POST /v25-10-beta/analytics/event/snapshot` — Benchmark event snapshot metrics
* `POST /v25-10-beta/analytics/event/timeseries` — Benchmark event metric-over-time data


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.intelligems.io/developer-resources/external-api/intelligems-external-api/available-endpoints.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
