Unleash Unknown Flags API

Endpoints related to unknown flags.

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/unleash-unknown-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 email required.

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

OpenAPI Specification

unleash-unknown-flags-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Unleash Admin Addons Unknown Flags API
  version: 7.4.1
  description: Create, update, and delete [Unleash addons](https://docs.getunleash.io/addons).
servers:
- url: https://app.unleash-instance.example.com
  description: Your Unleash instance (replace with your actual URL)
security:
- apiKey: []
- bearerToken: []
tags:
- name: Unknown Flags
  description: Endpoints related to unknown flags.
paths:
  /api/admin/metrics/unknown-flags:
    get:
      operationId: getUnknownFlags
      tags:
      - Unknown Flags
      summary: Get Unknown Flags
      description: Returns a list of unknown flag reports from the last 24 hours, if any. Maximum of 1000.
      responses:
        '200':
          description: unknownFlagsResponseSchema
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/unknownFlagsResponseSchema'
components:
  schemas:
    unknownFlagSchema:
      type: object
      additionalProperties: false
      required:
      - name
      - lastSeenAt
      description: An unknown flag report
      properties:
        name:
          type: string
          description: The name of the unknown flag.
          example: my-unknown-flag
        lastSeenAt:
          type: string
          format: date-time
          description: The date and time when the unknown flag was last reported.
          example: '2023-10-01T12:00:00Z'
        lastEventAt:
          type: string
          format: date-time
          description: The date and time when the last event for the unknown flag name occurred, if any.
          example: '2023-10-01T12:00:00Z'
          nullable: true
        reports:
          type: array
          description: The list of reports for this unknown flag.
          items:
            type: object
            additionalProperties: false
            required:
            - appName
            - environments
            properties:
              appName:
                type: string
                description: The name of the application that reported the unknown flag.
                example: my-app
              environments:
                type: array
                description: The list of environments where this application reported the unknown flag.
                items:
                  type: object
                  additionalProperties: false
                  required:
                  - environment
                  - seenAt
                  properties:
                    environment:
                      type: string
                      description: The environment in which the unknown flag was reported.
                      example: production
                    seenAt:
                      type: string
                      format: date-time
                      description: The date and time when the unknown flag was last seen in this environment.
                      example: '2023-10-01T12:00:00Z'
    unknownFlagsResponseSchema:
      type: object
      additionalProperties: false
      required:
      - unknownFlags
      description: A list of unknown flag reports
      properties:
        unknownFlags:
          description: The list of recently reported unknown flags.
          type: array
          items:
            $ref: '#/components/schemas/unknownFlagSchema'
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: Authorization
      description: API key needed to access this API
    bearerToken:
      type: http
      scheme: bearer
      description: API key needed to access this API, in Bearer token format