MikMak Authentication API

The Authentication API from MikMak — 1 operation(s) for authentication.

Operations 1

POST /reporting/authenticate Authenticate user and get access token

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/mikmak-authentication-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

mikmak-authentication-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: MikMak Insights Authentication API
  description: '

    ## Introduction

    An API for querying reports and report-related data. A set of API credentials is tied to one account; each request

    to the API will return data specific to that account.'
  version: 1.0.0
servers:
- url: https://api.mikmak.ai
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Authentication
paths:
  /reporting/authenticate:
    post:
      tags:
      - Authentication
      summary: Authenticate user and get access token
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                client_id:
                  type: string
                  description: The client ID for authentication.
                client_secret:
                  type: string
                  description: The client secret for authentication.
              required:
              - client_id
              - client_secret
      responses:
        '200':
          description: Successful authentication
          content:
            application/json:
              schema:
                type: object
                properties:
                  access_token:
                    type: string
                    description: The JWT access token.
                  expires_in:
                    type: integer
                    description: Expiration time in seconds.
                  token_type:
                    type: string
                    description: The token type (e.g., Bearer).
                  expires_at:
                    type: string
                    format: date-time
                    description: The timestamp when the token expires.
        '400':
          description: Invalid client credentials
        '500':
          description: Internal server error
components:
  securitySchemes:
    authorization:
      type: http
      scheme: bearer
      description: 'Enter your API key as a normal token. This will send a header that looks like  "Authorization: Bearer {your_api_key}"'
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key
      description: 'Enter your API key as a normal token. This will send a header that looks like  "x-api-key: {your_api_key}"'