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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/armada-s3-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
openapi: 3.2.0
info:
title: Orchestrator Admin Settings S3 API
description: 'API for the GPUaaS Orchestrator microservice. Handles tenants, clusters, VMs,
storage, networking, catalogs, quotas, and related infrastructure operations.
'
version: 1.0.0
contact:
name: GPUaaS Platform
servers:
- url: /
description: Relative base (prefix with deployment base URL)
security:
- bearerAuth: []
tags:
- name: S3
paths:
/tenants/{tenant}/s3/buckets:
get:
tags:
- S3
summary: List S3 buckets
parameters:
- name: tenant
in: path
required: true
schema:
type: string
responses:
'200':
description: List of buckets
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/InternalServerError'
post:
tags:
- S3
summary: Create S3 bucket
parameters:
- name: tenant
in: path
required: true
schema:
type: string
responses:
'200':
description: Bucket created
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/InternalServerError'
'201':
$ref: '#/components/responses/Created'
'409':
$ref: '#/components/responses/Conflict'
/tenants/{tenant}/s3/buckets/{bucketName}:
get:
tags:
- S3
summary: Get S3 bucket
parameters:
- name: tenant
in: path
required: true
schema:
type: string
- name: bucketName
in: path
required: true
schema:
type: string
responses:
'200':
description: Bucket
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/InternalServerError'
delete:
tags:
- S3
summary: Delete S3 bucket
parameters:
- name: tenant
in: path
required: true
schema:
type: string
- name: bucketName
in: path
required: true
schema:
type: string
responses:
'200':
description: Deleted
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/InternalServerError'
'204':
$ref: '#/components/responses/NoContent'
/tenants/{tenant}/s3/buckets/{bucketName}/files:
get:
tags:
- S3
summary: List files in bucket
parameters:
- name: tenant
in: path
required: true
schema:
type: string
- name: bucketName
in: path
required: true
schema:
type: string
responses:
'200':
description: List of files
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/InternalServerError'
post:
tags:
- S3
summary: Upload file to bucket
parameters:
- name: tenant
in: path
required: true
schema:
type: string
- name: bucketName
in: path
required: true
schema:
type: string
responses:
'200':
description: File uploaded
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/InternalServerError'
'201':
$ref: '#/components/responses/Created'
'409':
$ref: '#/components/responses/Conflict'
delete:
tags:
- S3
summary: Delete file(s) from bucket
parameters:
- name: tenant
in: path
required: true
schema:
type: string
- name: bucketName
in: path
required: true
schema:
type: string
responses:
'200':
description: Deleted
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/InternalServerError'
'204':
$ref: '#/components/responses/NoContent'
/tenants/{tenant}/s3/buckets/{bucketName}/file:
get:
tags:
- S3
summary: Download file from bucket
parameters:
- name: tenant
in: path
required: true
schema:
type: string
- name: bucketName
in: path
required: true
schema:
type: string
responses:
'200':
description: File content
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/InternalServerError'
/tenants/{tenant}/s3/upload/status/{task_id}:
get:
tags:
- S3
summary: Get upload status
parameters:
- name: tenant
in: path
required: true
schema:
type: string
- name: task_id
in: path
required: true
schema:
type: string
responses:
'200':
description: Upload status
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/InternalServerError'
components:
responses:
Forbidden:
description: Forbidden - insufficient permissions
BadRequest:
description: Bad Request - invalid or malformed request
NoContent:
description: No Content - success with no response body
Conflict:
description: Conflict - resource conflict (e.g. duplicate)
Created:
description: Created - resource created successfully
InternalServerError:
description: Internal Server Error - server error
Unauthorized:
description: Unauthorized - missing or invalid authentication
NotFound:
description: Not Found - resource does not exist
securitySchemes:
bearerAuth:
type: http
scheme: bearer
bearerFormat: JWT
description: JWT from auth middleware