---
title: Console API Overview
description: "Introduction to the Statsig Console API for programmatically managing feature gates, experiments, dynamic configs, metrics, and project settings."
product: general
token_estimate: 324
---
# Console API Overview

> For AI agents: a documentation index is available at [/llms.txt](/llms.txt). Append `.md` to any page URL for markdown, or send `Accept: text/markdown`.

The Console API is the CRUD API for performing the actions available on console.statsig.com without using the web UI.

If you have feature requests, post them in the [Slack channel](https://www.statsig.com/slack).

## Base URL

`https://statsigapi.net`

## Authorization

All requests must include the **STATSIG-API-KEY** field in the header. The value should be a **Console API Key**, which you can create in the Project Settings on [console.statsig.com/api\_keys](https://console.statsig.com/api_keys)

## Rate limiting

Mutation requests (POST/PATCH/PUT/DELETE) to the Console API are limited to ~ 100 requests / 10 seconds and ~ 900 requests / 15 minutes, per project.

## API version

Statsig versions the Console API. Statsig guarantees that each version won't break existing usage; each new version introduces breaking changes. There is only one version: `20240601`. Statsig keeps the [OpenAPI spec](https://api.statsig.com/openapi/20240601.json) for this API version up-to-date.

Pass the version in the **STATSIG-API-VERSION** field in the header. This field is optional but becomes required in the future.

