Chameleon Limit Groups API

The Limit Groups API from Chameleon — 2 operation(s) for limit groups.

Operations 2

GET /edit/limit_groups List rate limit groups #
GET /edit/limit_groups/{id} Retrieve a rate limit group #

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/chameleon-limit-groups-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

chameleon-limit-groups-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Chameleon REST Alert Groups Limit Groups API
  version: '3'
  description: 'Chameleon server-side REST API for managing in-app product Experiences:

    user profiles, companies, segments, tours, microsurveys, launchers,

    tooltips, webhooks, themes, deliveries, and analytics. Authenticates

    with the X-Account-Secret header containing your account secret.

    '
  contact:
    name: Chameleon Developer Portal
    url: https://developers.chameleon.io/
servers:
- url: https://api.chameleon.io/v3
security:
- accountSecret: []
tags:
- name: Limit Groups
paths:
  /edit/limit_groups:
    get:
      tags:
      - Limit Groups
      summary: List rate limit groups
      operationId: listLimitGroups
      responses:
        '200':
          description: List
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListEnvelope'
  /edit/limit_groups/{id}:
    parameters:
    - in: path
      name: id
      required: true
      schema:
        type: string
    get:
      tags:
      - Limit Groups
      summary: Retrieve a rate limit group
      operationId: getLimitGroup
      responses:
        '200':
          description: Limit group
          content:
            application/json:
              schema:
                type: object
components:
  schemas:
    ListEnvelope:
      type: object
      properties:
        data:
          type: array
          items:
            type: object
        next:
          type: string
          nullable: true
  securitySchemes:
    accountSecret:
      type: apiKey
      in: header
      name: X-Account-Secret
      description: Your Chameleon account secret. See https://developers.chameleon.io/api-introduction/authentication