Eppo Flags API

The Flags API from Eppo — 2 operation(s) for flags.

Operations 5

GET /flags List feature flags #
POST /flags Create a feature flag #
GET /flags/{flagKey} Get a feature flag by key #
PATCH /flags/{flagKey} Update a feature flag #
DELETE /flags/{flagKey} Delete a feature flag #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/eppo-flags-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

eppo-flags-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Eppo Cloud REST Allocations Flags API
  version: 1.0.0
  description: REST API for the Eppo feature flagging and experimentation platform. Used to manage feature flags, allocations, experiments, metrics, assignments, and platform configuration outside of the Eppo web UI. Best-effort spec derived from publicly documented surfaces; not exhaustive.
  contact:
    name: Eppo Support
    url: https://docs.geteppo.com/
  license:
    name: Proprietary
servers:
- url: https://eppo.cloud/api/v1
  description: Eppo Cloud production base URL
security:
- eppoToken: []
tags:
- name: Flags
paths:
  /flags:
    get:
      tags:
      - Flags
      summary: List feature flags
      operationId: listFlags
      responses:
        '200':
          description: Flags list
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Flag'
    post:
      tags:
      - Flags
      summary: Create a feature flag
      operationId: createFlag
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Flag'
      responses:
        '201':
          description: Flag created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Flag'
  /flags/{flagKey}:
    parameters:
    - in: path
      name: flagKey
      required: true
      schema:
        type: string
    get:
      tags:
      - Flags
      summary: Get a feature flag by key
      operationId: getFlag
      responses:
        '200':
          description: Flag detail
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Flag'
    patch:
      tags:
      - Flags
      summary: Update a feature flag
      operationId: updateFlag
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Flag'
      responses:
        '200':
          description: Updated flag
    delete:
      tags:
      - Flags
      summary: Delete a feature flag
      operationId: deleteFlag
      responses:
        '204':
          description: Flag deleted
components:
  schemas:
    Flag:
      type: object
      properties:
        key:
          type: string
        name:
          type: string
        description:
          type: string
        enabled:
          type: boolean
        variationType:
          type: string
          enum:
          - BOOLEAN
          - STRING
          - NUMERIC
          - JSON
        variations:
          type: array
          items:
            type: object
            properties:
              key:
                type: string
              value:
                oneOf:
                - type: boolean
                - type: string
                - type: number
                - type: object
  securitySchemes:
    eppoToken:
      type: apiKey
      in: header
      name: X-Eppo-Token
      description: Eppo REST API key created in Admin > API Keys. Distinct from Eppo SDK keys used to connect SDK clients.