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/postiz-uploads-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: Postiz Uploads API
version: '1.0'
description: 'Operations tagged Uploads across 2 of this provider''s published API definitions: postiz-public-api-openapi.json, postiz-uploads-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.postiz.com/public/v1
description: Postiz Cloud
- url: https://{your-domain}/api/public/v1
description: Self-hosted
variables:
your-domain:
default: localhost:5000
description: Your Postiz instance domain
security:
- ApiKeyAuth: []
tags:
- name: Uploads
description: Upload media files
paths:
/upload:
post:
tags:
- Uploads
summary: Upload a file
description: Upload a media file using multipart form data.
operationId: uploadFile
requestBody:
required: true
content:
multipart/form-data:
schema:
type: object
properties:
file:
type: string
format: binary
description: The file to upload
required:
- file
responses:
'200':
description: File uploaded successfully
content:
application/json:
schema:
$ref: '#/components/schemas/MediaFile'
servers:
- url: https://api.postiz.com/public/v1
description: Postiz Cloud
- url: https://{your-domain}/api/public/v1
description: Self-hosted
variables:
your-domain:
default: localhost:5000
description: Your Postiz instance domain
/upload-from-url:
post:
tags:
- Uploads
summary: Upload from URL
description: Upload a file from an existing URL.
operationId: uploadFromUrl
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
url:
type: string
format: uri
description: URL of the file to upload
required:
- url
example:
url: https://example.com/image.png
responses:
'200':
description: File uploaded successfully
content:
application/json:
schema:
$ref: '#/components/schemas/MediaFile'
servers:
- url: https://api.postiz.com/public/v1
description: Postiz Cloud
- url: https://{your-domain}/api/public/v1
description: Self-hosted
variables:
your-domain:
default: localhost:5000
description: Your Postiz instance domain
components:
schemas:
MediaFile:
type: object
properties:
id:
type: string
description: Unique file ID
name:
type: string
description: File name
path:
type: string
description: File URL
organizationId:
type: string
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
example:
id: e639003b-f727-4a1e-87bd-74a2c48ae41e
name: image.png
path: https://uploads.postiz.com/image.png
organizationId: 85460a39-6329-4cf4-a252-187ce89a3480
createdAt: '2024-12-14T08:18:54.274Z'
updatedAt: '2024-12-14T08:18:54.274Z'
MediaFile_2:
type: object
properties:
id:
type: string
description: Unique file ID.
name:
type: string
description: File name.
path:
type: string
description: File URL.
organizationId:
type: string
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
example:
id: e639003b-f727-4a1e-87bd-74a2c48ae41e
name: image.png
path: https://uploads.postiz.com/image.png
organizationId: 85460a39-6329-4cf4-a252-187ce89a3480
createdAt: '2024-12-14T08:18:54.274Z'
updatedAt: '2024-12-14T08:18:54.274Z'
securitySchemes:
ApiKeyAuth:
type: apiKey
in: header
name: Authorization
description: Your Postiz API key
x-refined-from:
- postiz-public-api-openapi.json
- postiz-uploads-api-openapi.yml