Schematic accesstokens API

The accesstokens API from Schematic — 1 operation(s) for accesstokens.

Operations 1

POST /temporary-access-tokens Issue temporary access token #

Documentation

Specifications

SDKs

Schemas & Data

Other Resources

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/schematic-accesstokens-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

schematic-accesstokens-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Schematic Accesstokens API
  version: '0.1'
  description: Schematic API
  x-rules-engine-schema-version: v97288f60
servers:
- url: https://api.schematichq.com
security:
- ApiKeyAuth: []
tags:
- name: accesstokens
paths:
  /temporary-access-tokens:
    post:
      operationId: issueTemporaryAccessToken
      summary: Issue temporary access token
      tags:
      - accesstokens
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IssueTemporaryAccessTokenRequestBody'
        required: true
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/IssueTemporaryAccessTokenResponseData'
                  params:
                    type: object
                    description: Input parameters
                    title: IssueTemporaryAccessTokenParams
                required:
                - data
                - params
                title: IssueTemporaryAccessTokenResponse
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/ServerError'
components:
  schemas:
    IssueTemporaryAccessTokenResponseData:
      type: object
      properties:
        api_key_id:
          type: string
        created_at:
          type: string
          format: date-time
        environment_id:
          type: string
        expired_at:
          type: string
          format: date-time
        id:
          type: string
        resource_type:
          $ref: '#/components/schemas/TemporaryAccessTokenResourceType'
        token:
          type: string
        updated_at:
          type: string
          format: date-time
      required:
      - id
      - environment_id
      - resource_type
      - api_key_id
      - expired_at
      - created_at
      - updated_at
      - token
      title: IssueTemporaryAccessTokenResponseData
    ApiError:
      type: object
      properties:
        error:
          type: string
          description: Error message
      required:
      - error
    IssueTemporaryAccessTokenRequestBody:
      type: object
      properties:
        lookup:
          additionalProperties:
            type: string
          type: object
        resource_type:
          $ref: '#/components/schemas/TemporaryAccessTokenResourceType'
      required:
      - resource_type
      - lookup
      title: IssueTemporaryAccessTokenRequestBody
    TemporaryAccessTokenResourceType:
      type: string
      enum:
      - company
  responses:
    ServerError:
      description: Server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    BadRequest:
      description: Bad request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    NotFound:
      description: Not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    Forbidden:
      description: Forbidden
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Schematic-Api-Key