{
  "info": {
    "name": "Gladia — mcp.ai",
    "description": "REST API for the Gladia 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/gladia",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "gladia_delete_live_session",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/live/session",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "live",
            "session"
          ]
        },
        "description": "Tool to delete a live transcription session and all its associated data (audio file, transcription). Use when permanently removing a live session from Gladia.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gladia_delete_pre_recorded_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/pre/recorded/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "pre",
            "recorded",
            "job"
          ]
        },
        "description": "Tool to delete a pre-recorded transcription job and all its associated data (audio file, transcription). Use when permanently removing a transcription job from Gladia.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gladia_get_live_transcription_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/live/transcription/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "live",
            "transcription",
            "result"
          ]
        },
        "description": "Tool to retrieve metadata and results of a live transcription job. Use when you need detailed status or results for a specific live transcription session.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gladia_get_pre_recorded_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/pre/recorded/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "pre",
            "recorded",
            "job"
          ]
        },
        "description": "Tool to retrieve a pre-recorded transcription job's metadata, status, and results by ID. Use when checking the status or retrieving results of a specific pre-recorded job.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gladia_get_transcription_audio_file_deprecated",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/transcription/audio/file/deprecated",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "transcription",
            "audio",
            "file",
            "deprecated"
          ]
        },
        "description": "DEPRECATED - use GET /v2/pre-recorded/{id}/file instead. Download the audio file used for a transcription job. Use when you need to retrieve the original audio file associated with a specific transcri",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gladia_initiate_live_session",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/initiate/live/session",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "initiate",
            "live",
            "session"
          ]
        },
        "description": "Initiates a live (real-time) transcription session with Gladia's API. Returns a WebSocket URL that you can connect to for streaming audio data in real-time. The WebSocket URL includes an embedded auth",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"model\": \"\",\n  \"region\": \"\",\n  \"callback\": false,\n  \"channels\": 0,\n  \"encoding\": \"\",\n  \"bit_depth\": 0,\n  \"endpointing\": 0,\n  \"sample_rate\": 0,\n  \"pre_processing\": {},\n  \"callback_config\": {},\n  \"custom_metadata\": {},\n  \"language_config\": {},\n  \"messages_config\": {},\n  \"post_processing\": {},\n  \"realtime_processing\": {},\n  \"maximum_duration_without_endpointing\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gladia_initiate_pre_recorded_transcription",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/initiate/pre/recorded/transcription",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "initiate",
            "pre",
            "recorded",
            "transcription"
          ]
        },
        "description": "Tool to initiate a pre-recorded transcription job. Use when you have an audio URL and need asynchronous transcription results.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"model\": \"\",\n  \"callback\": false,\n  \"audio_url\": \"\",\n  \"sentences\": false,\n  \"subtitles\": false,\n  \"diarization\": false,\n  \"translation\": false,\n  \"summarization\": false,\n  \"callback_config\": {},\n  \"custom_metadata\": {},\n  \"language_config\": {},\n  \"subtitles_config\": {},\n  \"diarization_config\": {},\n  \"translation_config\": {},\n  \"punctuation_enhanced\": false,\n  \"summarization_config\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gladia_list_live_transcriptions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/live/transcriptions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "live",
            "transcriptions"
          ]
        },
        "description": "Tool to list live transcription jobs. Use when you need an overview of live transcription sessions with optional filtering and pagination. Use after setting up live transcription.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"date\": \"\",\n  \"limit\": 0,\n  \"offset\": 0,\n  \"status\": \"\",\n  \"after_date\": \"\",\n  \"before_date\": \"\",\n  \"custom_metadata\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gladia_list_pre_recorded_jobs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/pre/recorded/jobs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "pre",
            "recorded",
            "jobs"
          ]
        },
        "description": "Tool to list all pre-recorded transcription jobs matching the query parameters. Use when you need to retrieve a paginated list of transcription jobs with optional filtering by date, status, or custom ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"date\": \"\",\n  \"limit\": 0,\n  \"offset\": 0,\n  \"status\": \"\",\n  \"after_date\": \"\",\n  \"before_date\": \"\",\n  \"custom_metadata\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gladia_upload_audio_video_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/audio/video/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "audio",
            "video",
            "file"
          ]
        },
        "description": "Upload an audio or video file to Gladia for speech-to-text transcription. Returns a URL that can be used with the pre-recorded transcription endpoint. Supports common audio formats (WAV, MP3, FLAC, OG",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}