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/validere-permissions-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:
description: Activity Log
title: CarbonHub activities Permissions API
version: 1.0.0
servers:
- url: https://api.validere.io
security:
- Staging: []
- Integration: []
- Local: []
tags:
- description: Permission
name: permissions
paths:
/app/v1/permissions:
get:
operationId: list_permissions
parameters:
- $ref: '#/components/parameters/PermissionName'
- $ref: '#/components/parameters/PermissionIsFeatureEnabled'
- $ref: '#/components/parameters/PageSize'
- $ref: '#/components/parameters/Page'
- $ref: '#/components/parameters/SortBy'
- $ref: '#/components/parameters/SortDirection'
responses:
'200':
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/Pagination'
- properties:
data:
items:
$ref: '#/components/schemas/Permission'
type: array
type: object
description: A successful operation
summary: List permissions
tags:
- permissions
components:
schemas:
Permission:
properties:
name:
type: string
example: facilities:read
type: object
Pagination:
properties:
page_number:
type: number
example: 0
page_size:
type: number
example: 10
total_entries:
type: number
example: 58
total_pages:
type: number
example: 6
type: object
parameters:
Page:
description: page number
in: query
name: page
required: false
schema:
type: number
PermissionName:
description: Permission name
in: query
name: name
required: false
schema:
type: string
PageSize:
description: page size
in: query
name: page_size
required: false
schema:
type: number
SortDirection:
description: sort direction
example: desc
in: query
name: sort_direction
required: false
schema:
enum:
- asc
- desc
type: string
SortBy:
description: sort by
in: query
name: sort_by
required: false
schema:
type: string
PermissionIsFeatureEnabled:
description: only return permissions whose associated feature flag is enabled globally & for the callee's company
in: query
name: isFeatureEnabled
required: false
schema:
type: boolean