IRONSCALES Authorization API

The Authorization API from IRONSCALES — 1 operation(s) for authorization.

Operations 1

POST /get-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/ironscales-authorization-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

ironscales-authorization-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: IRONSCALES Management Authorization API
  description: The Authorization operations of the IRONSCALES Management API, split by tag from the provider-published Swagger 2.0 document at https://appapi.ironscales.com/appapi/docs/?format=openapi. Operations, parameters, responses and definitions are carried verbatim from the source specification.
  version: v1
servers:
- url: https://appapi.ironscales.com/appapi
security:
- JWT: []
tags:
- name: Authorization
paths:
  /get-token/:
    parameters: []
    post:
      operationId: get JWT token
      description: 'Get JWT used for interacting with the other endpoints of the AppAPI <br />

        Company Key can be found under Settings -> General -> "Company Token"'
      responses:
        '200':
          description: Successfully Response
          content:
            application/json:
              example:
                jwt: <token>
        '400':
          description: Missing scope list under "scopes"
          content:
            application/json:
              example:
                error_message: explanation
        '403':
          description: One of the following:<ul><li>No company found for API key</li><li>API permission disabled</li><li>Company does not have permission for requested scopes</li>
          content:
            application/json:
              example:
                error_message: explanation
      tags:
      - Authorization
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/JwtRequest'
        required: true
components:
  schemas:
    JwtRequest:
      required:
      - key
      - scopes
      type: object
      properties:
        key:
          title: Key
          type: string
          minLength: 1
        scopes:
          type: array
          items:
            type: string
            minLength: 1
  securitySchemes:
    JWT:
      type: apiKey
      name: Authorization
      in: header