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.
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 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
openapi: 3.2.0
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:
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'
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
- 'null'
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'
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'
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