{
  "info": {
    "name": "CAMB.AI — mcp.ai",
    "description": "REST API for the CAMB.AI 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/camb_ai",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "camb_ai_dub_media",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/dub/media",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "dub",
            "media"
          ]
        },
        "description": "Dub media from a URL into one or more target languages, wait for completion, and return the output video, audio, and structured transcript.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"media_url\": \"\",\n  \"source_language\": \"\",\n  \"timeout_seconds\": 0,\n  \"target_languages\": \"\",\n  \"transcription_mode\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "camb_ai_generate_subtitles",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/subtitles",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "subtitles"
          ]
        },
        "description": "Generate translated subtitles for media in one or more languages, wait for CAMB.AI to finish, and return structured subtitle cues.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"folder_id\": 0,\n  \"media_url\": \"\",\n  \"source_language\": \"\",\n  \"timeout_seconds\": 0,\n  \"target_languages\": \"\",\n  \"formatting_options\": {},\n  \"transcription_mode\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "camb_ai_get_run_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/run/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "run",
            "result"
          ]
        },
        "description": "Fetch the structured JSON result for a successful CAMB.AI translation, transcription, dubbing, or subtitle run when its run ID is known.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"run_id\": 0,\n  \"workflow\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "camb_ai_get_task_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/task/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "task",
            "status"
          ]
        },
        "description": "Check one CAMB.AI translation, transcription, dubbing, or subtitle task without waiting. Use this to recover a task after a workflow timeout or when a task ID is already known.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"workflow\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "camb_ai_list_languages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/languages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "languages"
          ]
        },
        "description": "List CAMB.AI source and target languages, including locale tags and numeric IDs used by generation tools.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "camb_ai_list_voices",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/voices",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "voices"
          ]
        },
        "description": "Find CAMB.AI voices by name, description, language ID, gender, or publication state before choosing a voice for speech workflows.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"gender\": 0,\n  \"search\": \"\",\n  \"language_id\": 0,\n  \"published_only\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "camb_ai_transcribe_media",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/transcribe/media",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "transcribe",
            "media"
          ]
        },
        "description": "Transcribe an uploaded audio/video file or a media URL, wait for CAMB.AI to finish, and return a structured speaker-and-timing transcript.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"language\": \"\",\n  \"media_url\": \"\",\n  \"media_file\": {},\n  \"timeout_seconds\": 0,\n  \"formatting_options\": {},\n  \"transcription_mode\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "camb_ai_translate_text",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/translate/text",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "translate",
            "text"
          ]
        },
        "description": "Translate one or more text segments and wait for CAMB.AI to return all translated segments in input order.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"age\": 0,\n  \"texts\": \"\",\n  \"gender\": 0,\n  \"formality\": \"\",\n  \"source_language\": \"\",\n  \"target_language\": \"\",\n  \"timeout_seconds\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}