Mithril profile API

The profile API from Mithril — 2 operation(s) for profile.

Operations 2

GET /v2/me Get Me #
GET /v2/me/teammates Get My Teammates #

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/mithril-profile-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

mithril-profile-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Mithril API Keys Profile API
  description: Mithril Compute API
  version: 1.0.0
servers:
- url: https://api.mithril.ai
tags:
- name: profile
paths:
  /v2/me:
    get:
      tags:
      - profile
      summary: Get Me
      description: Get the current user's profile
      operationId: get_me_v2_me_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeResponse'
      security:
      - MithrilAPIKey: []
  /v2/me/teammates:
    get:
      tags:
      - profile
      summary: Get My Teammates
      description: 'Get teammates visible to the current user.


        Returns teammates from the user''s organization, filtered by shared project

        membership (unless the user is an org admin, in which case all org members

        are visible). Can be used by a client to map user FIDs to user profiles.'
      operationId: get_my_teammates_v2_me_teammates_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/TeammateResponse'
                type: array
                title: Response Get My Teammates V2 Me Teammates Get
      security:
      - MithrilAPIKey: []
components:
  schemas:
    MeResponse:
      properties:
        id:
          type: string
          title: Id
        fid:
          type: string
          title: Fid
          examples:
          - user_abc123456
        email:
          type: string
          format: email
          title: Email
        user_name:
          type: string
          nullable: true
        organization_id:
          type: string
          title: Organization Id
        organization_role:
          type: string
          nullable: true
      type: object
      required:
      - id
      - fid
      - email
      - organization_id
      title: MeResponse
    TeammateResponse:
      properties:
        id:
          type: string
          title: Id
        fid:
          type: string
          title: Fid
          examples:
          - user_abc123456
        user_name:
          type: string
          nullable: true
        email:
          type: string
          nullable: true
        organization_role:
          type: string
          nullable: true
        project_ids:
          items:
            type: string
          type: array
          title: Project Ids
        deactivated_at:
          type: string
          format: datetime
          examples:
          - '2024-01-01T00:00:00Z'
          - '2024-01-01T00:00:00+00:00'
          - '2024-01-01T00:00:00-00:00'
          nullable: true
      type: object
      required:
      - id
      - fid
      - project_ids
      title: TeammateResponse
  securitySchemes:
    MithrilAPIKey:
      type: http
      scheme: bearer
      bearerFormat: fkey_<key>