Automile ClientApiAuthorizations API

The ClientApiAuthorizations API from Automile — 2 operation(s) for clientapiauthorizations.

Operations 2

GET /v1/client/apiauthorizations Get a list of user that has authorized the logged in API client for access
GET /v1/client/apiauthorizations/{apiAuthorizationId} Get the details about a specific user authorization #

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/automile-clientapiauthorizations-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

automile-clientapiauthorizations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Automile ClientApi Client API Authorizations API
  version: v1
servers:
- url: https://api.automile.com/
tags:
- name: ClientApiAuthorizations
paths:
  /v1/client/apiauthorizations:
    get:
      tags:
      - ClientApiAuthorizations
      summary: Get a list of user that has authorized the logged in API client for access
      description: Only users that has given authorization to the given API client will be returned
      responses:
        '200':
          description: The users are returned
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/APIAuthorizationModel'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/APIAuthorizationModel'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/APIAuthorizationModel'
        '500':
          description: Internal server error
      security:
      - oauth2: []
  /v1/client/apiauthorizations/{apiAuthorizationId}:
    get:
      tags:
      - ClientApiAuthorizations
      summary: Get the details about a specific user authorization
      operationId: GetByAPIAuthorizationId
      parameters:
      - in: path
        name: apiAuthorizationId
        description: The id of the authorization
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The user details are returned
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/APIAuthorizationModel'
            application/json:
              schema:
                $ref: '#/components/schemas/APIAuthorizationModel'
            text/json:
              schema:
                $ref: '#/components/schemas/APIAuthorizationModel'
        '403':
          description: Request is forbidden, meaning you dont' have access to this authorization
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '500':
          description: Internal server error
      security:
      - oauth2: []
components:
  schemas:
    APIAuthorizationModel:
      type: object
      properties:
        APIAuthorizationId:
          format: int32
          type: integer
        IssueDate:
          format: date-time
          type: string
        APIClientId:
          format: int32
          type: integer
        UserId:
          format: int32
          type: integer
        ScopesDelimitedBySpaces:
          type: string
        ExpirationDateUtc:
          format: date-time
          type: string
      additionalProperties: false
    ProblemDetails:
      type: object
      properties:
        type:
          type: string
        title:
          type: string
        status:
          format: int32
          type: integer
        detail:
          type: string
        instance:
          type: string
      additionalProperties: {}
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        implicit:
          scopes:
            read: Read access to protected resources
            write: Write access to protected resources
          authorizationUrl: https://api.automile.com/login/
      description: OAuth2 Implicit Grant