{
  "info": {
    "name": "Orshot — mcp.ai",
    "description": "REST API for the Orshot MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/orshot",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "orshot_add_brand_color",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/brand/color",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "brand",
            "color"
          ]
        },
        "description": "Save a hex, RGB, HSL, or gradient color to the workspace brand assets and return its new ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tags\": \"\",\n  \"value\": \"\",\n  \"color_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "orshot_delete_brand_color",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/brand/color",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "brand",
            "color"
          ]
        },
        "description": "Permanently delete one saved workspace brand color by ID. This deletion cannot be undone; use it only for a color the caller explicitly intends to remove.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"color_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "orshot_get_profile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/profile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "profile"
          ]
        },
        "description": "Return the authenticated Orshot profile and the IDs, names, and slugs of its accessible workspaces.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "orshot_get_studio_template",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/studio/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "studio",
            "template"
          ]
        },
        "description": "Return one Studio template's metadata, pages, and available render modifications by template ID. A 403 response can mean the template is missing or is not owned by the connected workspace; the API doe",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"template_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "orshot_list_brand_assets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/brand/assets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "brand",
            "assets"
          ]
        },
        "description": "List one category of workspace brand assets, optionally requiring all supplied tags. Brand colors are limited by Orshot to the 200 most recent values.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tags\": \"\",\n  \"asset_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "orshot_list_social_accounts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/social/accounts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "social",
            "accounts"
          ]
        },
        "description": "Return connected social-account IDs and platforms, optionally checking whether each account needs reconnection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"include_health\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "orshot_list_studio_templates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/studio/templates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "studio",
            "templates"
          ]
        },
        "description": "Return one filtered page of Studio templates in the API key's workspace, with an opaque cursor for the next page.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tags\": \"\",\n  \"limit\": 0,\n  \"search\": \"\",\n  \"embed_id\": \"\",\n  \"next_cursor\": \"\",\n  \"embed_user_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "orshot_render_studio_template",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/render/studio/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "render",
            "studio",
            "template"
          ]
        },
        "description": "Render an owned Studio template as an image or PDF URL/base64 result. This consumes render credits and does not publish to social accounts.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"scale\": 0,\n  \"width\": 0,\n  \"height\": 0,\n  \"file_name\": \"\",\n  \"template_id\": \"\",\n  \"include_pages\": \"\",\n  \"modifications\": {},\n  \"output_format\": \"\",\n  \"response_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}