dopost Social Accounts API

Inspect connected social accounts and per-network posting limits.

Operations 2

GET /api/v1/social/accounts List connected social accounts #
GET /api/v1/social/limits/{platform} Get per-platform posting limits #

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/dopost-co-social-accounts-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

dopost-co-social-accounts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: dopost Social Scheduler Media Social Accounts API
  version: v1
  summary: REST API for scheduling and publishing posts across Instagram, Facebook, TikTok, Pinterest, X, and YouTube.
  description: 'Hand-authored OpenAPI 3.1 specification for the dopost Social Media Scheduler API,

    derived from public documentation at https://dopost.co/docs/api as of 2026-05-27.


    Authentication uses an API key passed via the `x-api-key` header. API key generation

    happens inside the dopost web app.


    All endpoints are mounted under `/api/v1/` and return `application/json`.


    NOTE: Per-network publish options (Instagram, Facebook, TikTok, Pinterest, X, YouTube)

    are referenced in the dopost docs but the exact field-level schemas for each network

    are not enumerated in the public docs visible to anonymous users. They are modeled here

    as `additionalProperties: true` containers so spec consumers do not lose data, and the

    review notes (review.yml) flag these as `reconciled: false`.

    '
  contact:
    name: dopost
    url: https://dopost.co/
  license:
    name: Proprietary
    url: https://dopost.co/
servers:
- url: https://dopost.co
  description: Production
security:
- ApiKeyAuth: []
tags:
- name: Social Accounts
  description: Inspect connected social accounts and per-network posting limits.
paths:
  /api/v1/social/accounts:
    get:
      tags:
      - Social Accounts
      operationId: listAccounts
      summary: List connected social accounts
      description: Retrieve all connected social media accounts for your workspace.
      responses:
        '200':
          description: Connected accounts
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Account'
        '401':
          $ref: '#/components/responses/Unauthorized'
  /api/v1/social/limits/{platform}:
    get:
      tags:
      - Social Accounts
      operationId: getPlatformLimits
      summary: Get per-platform posting limits
      description: 'Retrieve platform-specific posting limits and constraints, including per-format

        limits for post types such as feed, story, reel, or YouTube short.

        '
      parameters:
      - name: platform
        in: path
        required: true
        schema:
          $ref: '#/components/schemas/Platform'
      responses:
        '200':
          description: Platform limits
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PlatformLimits'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          description: Platform not recognized.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  responses:
    Unauthorized:
      description: Missing or invalid API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    Account:
      type: object
      properties:
        id:
          type: string
        platform:
          $ref: '#/components/schemas/Platform'
        displayName:
          type: string
        handle:
          type: string
        connected:
          type: boolean
        createdAt:
          type: string
          format: date-time
    Error:
      type: object
      required:
      - message
      properties:
        code:
          type: string
        message:
          type: string
        details:
          type: object
          additionalProperties: true
    PlatformLimits:
      type: object
      properties:
        platform:
          $ref: '#/components/schemas/Platform'
        characterLimit:
          type: integer
        mediaLimit:
          type: integer
        formats:
          type: object
          description: Per-format constraints (feed, story, reel, short, etc.).
          additionalProperties:
            type: object
            properties:
              characterLimit:
                type: integer
              mediaLimit:
                type: integer
              maxDurationSeconds:
                type: integer
            additionalProperties: true
    Platform:
      type: string
      description: Supported social network identifier.
      enum:
      - instagram
      - facebook
      - tiktok
      - pinterest
      - x
      - youtube
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Workspace API key issued from the dopost web app.