Aptly App API

The App API from Aptly — 2 operation(s) for app.

Operations 2

POST /api/app/verify Verify a delegate token (keyless) #
GET /api/app/me Get credential info #

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/aptly-app-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

aptly-app-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Aptly App API
  version: '1.0'
  description: 'The Aptly API lets you read and write cards on any Aptly board from external systems.


    All requests require an API key passed as the `x-token` header.

    API keys are scoped to your company and work across all boards.

    '
servers:
- url: https://core-api.getaptly.com
  description: Production
security:
- ApiKeyHeader: []
tags:
- name: App
paths:
  /api/app/verify:
    post:
      summary: Verify a delegate token (keyless)
      description: 'Validates a short-lived delegate token without requiring an API key. The token must

        include an `appClientId` (i.e. it was issued for an embedded app via

        `POST /api/platform/user-token`). Returns the user''s identity, company name, and

        the app''s title.

        '
      operationId: verifyDelegateToken
      tags:
      - App
      security: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - token
              properties:
                token:
                  type: string
                  description: Delegate token returned by `POST /api/platform/user-token`.
      responses:
        '200':
          description: Token is valid.
          content:
            application/json:
              schema:
                type: object
                properties:
                  userId:
                    type: string
                  email:
                    type:
                    - string
                    - 'null'
                  firstName:
                    type:
                    - string
                    - 'null'
                  lastName:
                    type:
                    - string
                    - 'null'
                  companyId:
                    type: string
                  companyName:
                    type:
                    - string
                    - 'null'
                  appClientId:
                    type: string
                  appTitle:
                    type:
                    - string
                    - 'null'
        '400':
          description: token field is missing.
        '401':
          description: Token is invalid, expired, or was not issued for an embedded app (missing appClientId).
  /api/app/me:
    get:
      summary: Get credential info
      description: "Returns identity information for the credential used in the request. The response shape\ndepends on the auth method:\n\n- **Delegate token** (`Authorization: DelegateToken <token>`): returns user identity and,\n  if the token has an `appClientId`, embedded-app context.\n- **API key** (`x-token` header or query param): returns company identity.\n- **Partner token** (`Authorization: Bearer <token>`): returns the partner's permission list.\n"
      operationId: getMe
      tags:
      - App
      security:
      - ApiKeyHeader: []
      - DelegateToken: []
      - PartnerBearer: []
      responses:
        '200':
          description: Credential identity.
          content:
            application/json:
              schema:
                oneOf:
                - title: Delegate token — user
                  type: object
                  properties:
                    type:
                      type: string
                      enum:
                      - user
                    userId:
                      type: string
                    email:
                      type:
                      - string
                      - 'null'
                    firstName:
                      type:
                      - string
                      - 'null'
                    lastName:
                      type:
                      - string
                      - 'null'
                    companyId:
                      type: string
                    companyName:
                      type:
                      - string
                      - 'null'
                - title: Delegate token — app
                  type: object
                  properties:
                    type:
                      type: string
                      enum:
                      - app
                    userId:
                      type: string
                    email:
                      type:
                      - string
                      - 'null'
                    firstName:
                      type:
                      - string
                      - 'null'
                    lastName:
                      type:
                      - string
                      - 'null'
                    companyId:
                      type: string
                    companyName:
                      type:
                      - string
                      - 'null'
                    appClientId:
                      type: string
                    appTitle:
                      type:
                      - string
                      - 'null'
                - title: API key
                  type: object
                  properties:
                    type:
                      type: string
                      enum:
                      - apiKey
                    companyId:
                      type: string
                    companyName:
                      type:
                      - string
                      - 'null'
                - title: Partner token
                  type: object
                  properties:
                    type:
                      type: string
                      enum:
                      - partner
                    permissions:
                      type: array
                      items:
                        type: string
        '401':
          description: Invalid or missing credential.
components:
  securitySchemes:
    ApiKeyHeader:
      type: apiKey
      in: header
      name: x-token
    DelegateToken:
      type: apiKey
      in: header
      name: Authorization
      description: 'Delegate token issued by the platform. Format: `DelegateToken <token>`'
    PartnerBearer:
      type: http
      scheme: bearer
      description: 'Partner token. Format: `Authorization: Bearer <token>`'