{
  "info": {
    "name": "GetTranscribe — mcp.ai",
    "description": "REST API for the GetTranscribe 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/get_transcribe",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "get_transcribe_create_transcription_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/transcription/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "transcription",
            "job"
          ]
        },
        "description": "Queue a paid asynchronous transcription job for a supported public video or direct media URL. Returns a job ID to poll with Get Transcription Job; this operation can consume transcription credits.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"model\": \"\",\n  \"prompt\": \"\",\n  \"language\": \"\",\n  \"folder_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "get_transcribe_get_current_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/current/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "current",
            "account"
          ]
        },
        "description": "Return the connected GetTranscribe account's safe identity, plan, usage limits, and available balances.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "get_transcribe_get_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "folder"
          ]
        },
        "description": "Retrieve one transcription folder owned by the connected account.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"folder_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "get_transcribe_get_transcription",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/transcription",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "transcription"
          ]
        },
        "description": "Retrieve one completed transcription with its text and media metadata; optionally include potentially large word and segment timing arrays.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"transcription_id\": 0,\n  \"include_timing_data\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "get_transcribe_get_transcription_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/transcription/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "transcription",
            "job"
          ]
        },
        "description": "Get the status and progress of one asynchronous transcription job, including the finished transcription ID or failure details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"job_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "get_transcribe_list_folders",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/folders",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "folders"
          ]
        },
        "description": "List transcription folders owned by the connected account, optionally filtering by parent folder.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"parent_id\": 0,\n  \"sort_order\": 0,\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "get_transcribe_list_transcription_jobs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/transcription/jobs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "transcription",
            "jobs"
          ]
        },
        "description": "List asynchronous transcription jobs for the connected account, optionally filtered by lifecycle status.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"status\": \"\",\n  \"sort_order\": 0,\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "get_transcribe_list_transcriptions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/transcriptions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "transcriptions"
          ]
        },
        "description": "List lightweight completed-transcription metadata for the connected account, with folder and platform filters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"platform\": \"\",\n  \"folder_id\": 0,\n  \"sort_order\": 0,\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "get_transcribe_resolve_media_download_url",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/resolve/media/download/url",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "resolve",
            "media",
            "download",
            "url"
          ]
        },
        "description": "Resolve a fresh direct download URL for supported social or direct media without creating a transcription. This paid request may consume provider credits, and returned URLs can expire.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}