Fermyon personal-access-tokens API
The personal-access-tokens API from Fermyon — 2 operation(s) for personal-access-tokens.
The personal-access-tokens API from Fermyon — 2 operation(s) for personal-access-tokens.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/fermyon-personal-access-tokens-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Fermyon Cloud accounts Personal Access Tokens API
version: '1.0'
description: OpenAPI 3.1 specification for the Fermyon Cloud REST API, derived from the public swagger.json published in the fermyon/cloud-openapi repository on GitHub.
servers:
- url: https://cloud.fermyon.com
description: Fermyon Cloud production API
security:
- Bearer: []
tags:
- name: personal-access-tokens
paths:
/api/personal-access-tokens:
post:
tags:
- personal-access-tokens
parameters:
- name: Api-Version
in: header
description: The requested API version
schema:
type: string
default: '1.0'
requestBody:
content:
application/json-patch+json:
schema:
$ref: '#/components/schemas/CreatePersonalAccessTokenCommand'
application/json:
schema:
$ref: '#/components/schemas/CreatePersonalAccessTokenCommand'
text/json:
schema:
$ref: '#/components/schemas/CreatePersonalAccessTokenCommand'
application/*+json:
schema:
$ref: '#/components/schemas/CreatePersonalAccessTokenCommand'
required: true
responses:
'200':
description: Success
content:
text/plain:
schema:
$ref: '#/components/schemas/PersonalAccessTokenValue'
application/json:
schema:
$ref: '#/components/schemas/PersonalAccessTokenValue'
text/json:
schema:
$ref: '#/components/schemas/PersonalAccessTokenValue'
get:
tags:
- personal-access-tokens
parameters:
- name: searchText
in: query
schema:
type: string
default: ''
- name: pageIndex
in: query
schema:
type: integer
format: int32
default: 0
- name: pageSize
in: query
schema:
type: integer
format: int32
default: 50
- name: sortBy
in: query
schema:
type: string
default: CreatedAt
- name: isSortedAscending
in: query
schema:
type: boolean
default: false
- name: Api-Version
in: header
description: The requested API version
schema:
type: string
default: '1.0'
responses:
'200':
description: Success
content:
text/plain:
schema:
$ref: '#/components/schemas/PersonalAccessTokenItemPage'
application/json:
schema:
$ref: '#/components/schemas/PersonalAccessTokenItemPage'
text/json:
schema:
$ref: '#/components/schemas/PersonalAccessTokenItemPage'
/api/personal-access-tokens/{id}:
delete:
tags:
- personal-access-tokens
parameters:
- name: id
in: path
required: true
schema:
type: string
format: uuid
- name: Api-Version
in: header
description: The requested API version
schema:
type: string
default: '1.0'
responses:
'200':
description: Success
components:
schemas:
CreatePersonalAccessTokenCommand:
required:
- name
type: object
properties:
name:
minLength: 1
type: string
additionalProperties: false
PersonalAccessTokenItem:
type: object
properties:
id:
type: string
format: uuid
name:
type: string
createdAt:
type: string
format: date-time
additionalProperties: false
PersonalAccessTokenValue:
type: object
properties:
name:
type: string
token:
type: string
id:
type: string
format: uuid
additionalProperties: false
PersonalAccessTokenItemPage:
required:
- isLastPage
- items
- pageIndex
- pageSize
- totalItems
type: object
properties:
items:
type: array
items:
$ref: '#/components/schemas/PersonalAccessTokenItem'
totalItems:
type: integer
format: int32
pageIndex:
type: integer
format: int32
pageSize:
type: integer
format: int32
isLastPage:
type: boolean
readOnly: true
additionalProperties: false
securitySchemes:
Bearer:
type: apiKey
description: 'JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"'
name: Authorization
in: header