Impossible Cloud Partners API
The Partners API from Impossible Cloud — 5 operation(s) for partners.
The Partners API from Impossible Cloud — 5 operation(s) for partners.
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/impossible-cloud-partners-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:
contact: {}
description: 'Public API designed to help our partners to automate their tasks.
Log in to Management Console, create API Key for your automation or reporting process and provide it in "Authorization" header per every request.'
title: Impossible Cloud Management Console public Distributors Partners API
version: '1.0'
servers:
- url: https://api.partner.impossiblecloud.com/v1
tags:
- name: Partners
paths:
/storage-account:
post:
responses:
'201':
description: Created
content:
application/json:
schema:
$ref: '#/components/schemas/api.StorageAccountResponse'
security:
- Bearer: []
summary: Create a storage account
tags:
- Partners
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/api.CreateStorageAccountReqBody'
description: Storage account details
required: true
/storage-account/list:
get:
responses:
'200':
description: OK
content:
application/json:
schema:
items:
$ref: '#/components/schemas/api.StorageAccountResponse'
type: array
security:
- Bearer: []
summary: Get list of available storage accounts
tags:
- Partners
/storage-account/{accountID}:
delete:
description: By default the storage account will be deleted in 30 days after scheduling.
parameters:
- description: Storage Account ID you can find in /storage-account/list
in: path
name: accountID
required: true
schema:
type: string
responses:
'204':
description: No Content
security:
- Bearer: []
summary: Schedule the deletion of a storage account
tags:
- Partners
get:
parameters:
- description: Storage Account ID you can find in /storage-account/list
in: path
name: accountID
required: true
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/api.StorageAccountResponse'
security:
- Bearer: []
summary: Get account info by accountID
tags:
- Partners
patch:
parameters:
- description: Storage Account ID you can find in /storage-account/list
in: path
name: accountID
required: true
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/api.StorageAccountResponse'
security:
- Bearer: []
summary: Update information of an account by accountID
tags:
- Partners
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/api.PatchStorageAccountReqBody'
description: Storage account details
required: true
/storage-account/{accountID}/usage:
get:
parameters:
- description: Storage Account identifier
in: path
name: accountID
required: true
schema:
type: string
- description: Start of the timeframe from where the data should be shown
in: query
name: from
required: true
schema:
type: string
format: yyyy-mm-dd
- description: End of the timeframe from where the data should be shown
in: query
name: to
required: true
schema:
type: string
format: yyyy-mm-dd
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/api.ClientUsage'
security:
- Bearer: []
summary: Retrieves the usage of the storage account
tags:
- Partners
/storage-accounts/usage:
get:
description: This Endpoint is used to retrieve the usage information of all storage accounts.
parameters:
- description: Start of the timeframe from where the data should be shown
in: query
name: from
required: true
schema:
type: string
format: yyyy-mm-dd
- description: End of the timeframe from where the data should be shown
in: query
name: to
required: true
schema:
type: string
format: yyyy-mm-dd
responses:
'200':
description: OK
content:
application/json:
schema:
items:
$ref: '#/components/schemas/api.ClientUsage'
type: array
security:
- Bearer: []
summary: Retrieves the usage of all storage accounts
tags:
- Partners
components:
schemas:
api.CreateStorageAccountReqBody:
properties:
allocatedCapacity:
minimum: 0
type: integer
allowOverdraft:
type: boolean
clientAccount:
$ref: '#/components/schemas/api.StorageAccountClientAccount'
name:
type: string
required:
- allocatedCapacity
- allowOverdraft
- clientAccount
- name
type: object
api.StorageAccountResponse:
properties:
allocatedCapacity:
type: integer
allowOverdraft:
type: boolean
clientAccountId:
type: string
contactEmail:
type: string
name:
type: string
pendingDeletedAt:
type: string
type: object
api.StorageAccountClientAccount:
properties:
contactEmail:
type: string
password:
description: 'Password The password of the account.
The following requirements apply to the password:
- must be at least 8 characters and no more than 128 characters in length
- must contain at lease one special character: !"#$%&''()*+,-./:;<=>?@[\]^_`{|}~
- must contain lower-case (a-z), upper-case (A-Z) and number (0-9) characters'
type: string
required:
- contactEmail
- password
type: object
api.DailyUsage:
properties:
allocated_capacity:
type: integer
date:
type: string
usage:
type: integer
type: object
api.ClientUsage:
properties:
allocated_capacity:
type: integer
client_id:
type: string
daily_usage:
items:
$ref: '#/components/schemas/api.DailyUsage'
type: array
name:
type: string
type: object
api.PatchStorageAccountReqBody:
properties:
pendingDeletedAt:
type:
- string
- 'null'
type: object
securitySchemes:
Bearer:
description: Type "Bearer" followed by a space and JWT token.
in: header
name: Authorization
type: apiKey