Anam Sessions API

The Sessions API from Anam — 2 operation(s) for sessions.

Operations 2

GET /v1/sessions/{id} Get session #
GET /v1/sessions List sessions #

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/anam-sessions-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

anam-sessions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Anam AI Auth Sessions API
  version: '1.0'
servers:
- url: https://api.anam.ai
  description: Anam API
security:
- BearerAuth: []
tags:
- name: Sessions
paths:
  /v1/sessions/{id}:
    get:
      summary: Get session
      description: Returns a session by ID
      x-mint:
        mcp:
          enabled: true
          name: get-session
          description: Get details of a specific session by its ID
      parameters:
      - in: path
        name: id
        schema:
          type: string
          format: uuid
        required: true
        description: Session ID
      responses:
        '200':
          description: Successfully retrieved session
        '400':
          description: Bad request - Invalid session ID
        '401':
          description: Unauthorized - Invalid or missing API key
        '404':
          description: Not Found - Session not found
        '500':
          description: Server error
      operationId: getSession
      tags:
      - Sessions
  /v1/sessions:
    get:
      summary: List sessions
      description: Returns a list of all sessions for the organization
      x-mint:
        mcp:
          enabled: true
          name: list-sessions
          description: Get a paginated list of all sessions with optional filtering by API key or persona
      parameters:
      - in: query
        name: page
        schema:
          type: integer
          minimum: 1
          default: 1
        description: Page number for pagination
      - in: query
        name: perPage
        schema:
          type: integer
          minimum: 1
          maximum: 100
          default: 10
        description: Number of items per page (max 100)
      - in: query
        name: search
        schema:
          type: string
        description: Search term to filter sessions by ID or client label
      - in: query
        name: apiKeyId
        schema:
          type: string
          format: uuid
        description: Filter sessions by API key ID
      - in: query
        name: personaId
        schema:
          type: string
          format: uuid
        description: Filter sessions by persona ID
      responses:
        '200':
          description: Successfully retrieved sessions
        '400':
          description: Bad request - Invalid query parameters
        '401':
          description: Unauthorized - Invalid or missing API key
        '500':
          description: Server error
      operationId: listSessions
      tags:
      - Sessions
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
x-mint:
  mcp:
    enabled: true