Postiz Public API

The Public API API from Postiz — 22 operation(s) for public api.

Operations 23

POST /public/v1/upload #
POST /public/v1/upload-from-url #
GET /public/v1/find-slot/{id} #
GET /public/v1/posts #
POST /public/v1/posts #
DELETE /public/v1/posts/{id} #
DELETE /public/v1/posts/group/{group} #
GET /public/v1/is-connected #
GET /public/v1/groups #
GET /public/v1/integrations #
GET /public/v1/social/{integration} #
GET /public/v1/notifications #
POST /public/v1/generate-video #
POST /public/v1/video/function #
DELETE /public/v1/integrations/{id} #
GET /public/v1/integration-settings/{id} #
GET /public/v1/posts/{id}/missing #
PUT /public/v1/posts/{id}/settings #
PUT /public/v1/posts/{id}/status #
PUT /public/v1/posts/{id}/release-id #
GET /public/v1/analytics/{integration} #
GET /public/v1/analytics/post/{postId} #
POST /public/v1/integration-trigger/{id} #

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/postiz-public-api-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

postiz-public-api-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Postiz Swagger file Public API
  description: API description
  version: '1.0'
  contact: {}
servers: []
tags:
- name: Public API
paths:
  /public/v1/upload:
    post:
      operationId: PublicIntegrationsController_uploadSimple
      parameters: []
      responses:
        '201':
          description: ''
      tags:
      - Public API
  /public/v1/upload-from-url:
    post:
      operationId: PublicIntegrationsController_uploadsFromUrl
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UploadDto'
      responses:
        '201':
          description: ''
      tags:
      - Public API
  /public/v1/find-slot/{id}:
    get:
      operationId: PublicIntegrationsController_findSlotIntegration
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
      tags:
      - Public API
  /public/v1/posts:
    get:
      operationId: PublicIntegrationsController_getPosts
      parameters: []
      responses:
        '200':
          description: ''
      tags:
      - Public API
    post:
      operationId: PublicIntegrationsController_createPost
      parameters: []
      responses:
        '201':
          description: ''
      tags:
      - Public API
  /public/v1/posts/{id}:
    delete:
      operationId: PublicIntegrationsController_deletePost
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
      tags:
      - Public API
  /public/v1/posts/group/{group}:
    delete:
      operationId: PublicIntegrationsController_deletePostByGroup
      parameters:
      - name: group
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
      tags:
      - Public API
  /public/v1/is-connected:
    get:
      operationId: PublicIntegrationsController_getActiveIntegrations
      parameters: []
      responses:
        '200':
          description: ''
      tags:
      - Public API
  /public/v1/groups:
    get:
      operationId: PublicIntegrationsController_listGroups
      parameters: []
      responses:
        '200':
          description: ''
      tags:
      - Public API
  /public/v1/integrations:
    get:
      operationId: PublicIntegrationsController_listIntegration
      parameters:
      - name: group
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: ''
      tags:
      - Public API
  /public/v1/social/{integration}:
    get:
      operationId: PublicIntegrationsController_getIntegrationUrl
      parameters:
      - name: integration
        required: true
        in: path
        schema:
          type: string
      - name: refresh
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: ''
      tags:
      - Public API
  /public/v1/notifications:
    get:
      operationId: PublicIntegrationsController_getNotifications
      parameters: []
      responses:
        '200':
          description: ''
      tags:
      - Public API
  /public/v1/generate-video:
    post:
      operationId: PublicIntegrationsController_generateVideo
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VideoDto'
      responses:
        '201':
          description: ''
      tags:
      - Public API
  /public/v1/video/function:
    post:
      operationId: PublicIntegrationsController_videoFunction
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VideoFunctionDto'
      responses:
        '201':
          description: ''
      tags:
      - Public API
  /public/v1/integrations/{id}:
    delete:
      operationId: PublicIntegrationsController_deleteChannel
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
      tags:
      - Public API
  /public/v1/integration-settings/{id}:
    get:
      operationId: PublicIntegrationsController_getIntegrationSettings
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
      tags:
      - Public API
  /public/v1/posts/{id}/missing:
    get:
      operationId: PublicIntegrationsController_getMissingContent
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
      tags:
      - Public API
  /public/v1/posts/{id}/settings:
    put:
      operationId: PublicIntegrationsController_updatePostSettings
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdatePostSettingsDto'
      responses:
        '200':
          description: ''
      tags:
      - Public API
  /public/v1/posts/{id}/status:
    put:
      operationId: PublicIntegrationsController_changePostStatus
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ChangePostStatusDto'
      responses:
        '200':
          description: ''
      tags:
      - Public API
  /public/v1/posts/{id}/release-id:
    put:
      operationId: PublicIntegrationsController_updateReleaseId
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
      tags:
      - Public API
  /public/v1/analytics/{integration}:
    get:
      operationId: PublicIntegrationsController_getAnalytics
      parameters:
      - name: integration
        required: true
        in: path
        schema:
          type: string
      - name: date
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: ''
      tags:
      - Public API
  /public/v1/analytics/post/{postId}:
    get:
      operationId: PublicIntegrationsController_getPostAnalytics
      parameters:
      - name: postId
        required: true
        in: path
        schema:
          type: string
      - name: date
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: ''
      tags:
      - Public API
  /public/v1/integration-trigger/{id}:
    post:
      operationId: PublicIntegrationsController_triggerIntegrationTool
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      responses:
        '201':
          description: ''
      tags:
      - Public API
components:
  schemas:
    UploadDto:
      type: object
      properties: {}
    UpdatePostSettingsDto:
      type: object
      properties: {}
    VideoDto:
      type: object
      properties: {}
    VideoFunctionDto:
      type: object
      properties: {}
    ChangePostStatusDto:
      type: object
      properties: {}