Monaco Auth API

The Auth API from Monaco — 1 operation(s) for auth.

Operations 1

GET /v1/me Get Authenticated User #

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/monaco-auth-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

monaco-auth-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Monaco Public Accounts Auth API
  description: Public API for Monaco
  version: 1.0.0
servers:
- url: https://api.monaco.com
tags:
- name: Auth
paths:
  /v1/me:
    get:
      tags:
      - Auth
      summary: Get Authenticated User
      description: Returns the user and organization resolved from the bearer token.
      operationId: get_me
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicItemResponse_MeResponse_'
              example:
                data:
                  org_id: org_abc123
                  user_id: usr_abc123
                  user_email: ada@example.com
                  user_first_name: Ada
                  user_last_name: Lovelace
                  org_name: Example Inc.
                meta:
                  timestamp: '2026-04-21T12:00:00Z'
        4XX:
          description: Client error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicErrorResponse'
components:
  schemas:
    ResponseMeta:
      properties:
        timestamp:
          type: string
          format: date-time
          title: Timestamp
          description: Server timestamp of the response
      type: object
      title: ResponseMeta
    PublicErrorResponse:
      properties:
        error:
          $ref: '#/components/schemas/ErrorDetail'
      type: object
      required:
      - error
      title: PublicErrorResponse
    MeResponse:
      properties:
        org_id:
          type: string
          title: Org Id
          description: Authenticated organization ID
        user_id:
          type: string
          title: User Id
          description: Authenticated user ID
        user_email:
          anyOf:
          - type: string
          - type: 'null'
          title: User Email
          description: Authenticated user email
        user_first_name:
          anyOf:
          - type: string
          - type: 'null'
          title: User First Name
          description: Authenticated user first name
        user_last_name:
          anyOf:
          - type: string
          - type: 'null'
          title: User Last Name
          description: Authenticated user last name
        org_name:
          anyOf:
          - type: string
          - type: 'null'
          title: Org Name
          description: Authenticated organization name
      type: object
      required:
      - org_id
      - user_id
      title: MeResponse
    ErrorDetail:
      properties:
        code:
          type: string
          title: Code
          description: Machine-readable error code
          examples:
          - not_found
        message:
          type: string
          title: Message
          description: Human-readable error message
          examples:
          - Resource not found
      type: object
      required:
      - code
      - message
      title: ErrorDetail
    PublicItemResponse_MeResponse_:
      properties:
        data:
          $ref: '#/components/schemas/MeResponse'
        meta:
          $ref: '#/components/schemas/ResponseMeta'
      type: object
      required:
      - data
      title: PublicItemResponse[MeResponse]