{
  "info": {
    "name": "Transloadit — mcp.ai",
    "description": "REST API for the Transloadit 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/transloadit",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "transloadit_cancel_assembly",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/cancel/assembly",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "cancel",
            "assembly"
          ]
        },
        "description": "Cancel a running Assembly and any upload still in progress. Fails if the Assembly reaches another terminal state before cancellation is confirmed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"assembly_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "transloadit_create_assembly",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/assembly",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "assembly"
          ]
        },
        "description": "Start a Transloadit file-processing Assembly from validated inline Steps or an existing Template, optionally uploading up to 10 local files with a 20 MiB aggregate direct-upload limit. Use a /http/imp",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"files\": \"\",\n  \"steps\": {},\n  \"fields\": {},\n  \"notify_url\": \"\",\n  \"template_id\": \"\",\n  \"allow_steps_override\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "transloadit_get_assembly_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/assembly/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "assembly",
            "status"
          ]
        },
        "description": "Retrieve the latest state, uploads, warnings, and results for one Assembly. This performs one status fetch and does not poll. Transloadit limits status requests to 3 per second for the same Assembly I",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"assembly_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "transloadit_list_assemblies",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/assemblies",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "assemblies"
          ]
        },
        "description": "Return one page of Assemblies in descending creation order, optionally filtered by state, date range, or keywords.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"to_date\": \"\",\n  \"keywords\": \"\",\n  \"from_date\": \"\",\n  \"page_size\": 0,\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "transloadit_replay_assembly",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/replay/assembly",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "replay",
            "assembly"
          ]
        },
        "description": "Retry a crashed Assembly while its original input files remain recoverable, optionally reparsing its Template.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"assembly_id\": \"\",\n  \"reparse_template\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "transloadit_replay_assembly_notification",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/replay/assembly/notification",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "replay",
            "assembly",
            "notification"
          ]
        },
        "description": "Resend a completed Assembly's result notification to the notify_url configured on that Assembly.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"assembly_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}