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/cognee-agents-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: Cognee REST Agents API
description: 'The Cognee REST API provides endpoints for the complete AI memory lifecycle, including data ingestion, knowledge graph construction, and semantic retrieval. Core endpoints cover adding raw text or documents, triggering the cognify pipeline that extracts entities and relationships via LLM, executing multi-mode search queries, managing datasets, and creating agent identities. The API uses X-Api-Key header authentication for cloud deployments and Bearer token auth for self-hosted instances.
'
version: 1.0.0
contact:
name: Cognee Support
url: https://docs.cognee.ai/api-reference/introduction
license:
name: Apache 2.0
url: https://github.com/topoteretes/cognee/blob/main/LICENSE
servers:
- url: https://api.cognee.ai
description: Cognee Cloud (managed)
- url: http://localhost:8000
description: Self-hosted (Docker / local)
security:
- BearerAuth: []
- ApiKeyAuth: []
tags:
- name: agents
description: AI agent identity management
paths:
/api/v1/agents/list:
get:
operationId: listAgents
summary: List all agent identities for the authenticated user
description: Returns all AI agent identities created by the authenticated user.
tags:
- agents
security:
- BearerAuth: []
- ApiKeyAuth: []
responses:
'200':
description: List of agent identities
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Agent'
/api/v1/agents/create:
post:
operationId: createAgent
summary: Create a new agent identity
description: 'Creates a new AI agent identity with a unique name. Returns the agent''s ID, email, and API key for use in subsequent API calls.
'
tags:
- agents
security:
- BearerAuth: []
- ApiKeyAuth: []
parameters:
- name: name
in: query
required: true
schema:
type: string
description: Unique name for the agent
example: my-research-agent
responses:
'200':
description: Agent created with API key
content:
application/json:
schema:
$ref: '#/components/schemas/AgentWithApiKey'
'409':
description: Agent with that name already exists
components:
schemas:
Agent:
type: object
properties:
agent_id:
type: string
format: uuid
agent_email:
type: string
api_key_label:
type:
- string
- 'null'
required:
- agent_id
- agent_email
AgentWithApiKey:
type: object
properties:
agent_id:
type: string
format: uuid
agent_email:
type: string
agent_api_key:
type: string
required:
- agent_id
- agent_email
- agent_api_key
securitySchemes:
BearerAuth:
type: http
scheme: bearer
bearerFormat: JWT
description: Bearer token authentication for self-hosted instances
ApiKeyAuth:
type: apiKey
in: header
name: X-Api-Key
description: API key authentication for Cognee Cloud deployments
externalDocs:
description: Cognee API Reference
url: https://docs.cognee.ai/api-reference/introduction