{
  "info": {
    "name": "Castingwords — mcp.ai",
    "description": "REST API for the Castingwords 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/castingwords",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "castingwords_cancel_audiofile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/cancel/audiofile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "cancel",
            "audiofile"
          ]
        },
        "description": "Tool to cancel an ordered audio file and issue a refund if applicable. Use when no transcription work has been done on the file (Pre-Processing, Audio Processing, Error states).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"test\": \"\",\n  \"audiofile_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "castingwords_get_prepay_balance",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/prepay/balance",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "prepay",
            "balance"
          ]
        },
        "description": "Tool to retrieve the current prepay balance for the account. Use when you need to check available funds before placing new transcription orders.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "castingwords_get_transcript",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/transcript",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "transcript"
          ]
        },
        "description": "Tool to retrieve the transcript for a given audiofile in the requested format (txt, doc, rtf, or html). Use after a transcription order has been completed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"test\": \"\",\n  \"extension\": \"\",\n  \"audiofile_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "castingwords_get_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "webhook"
          ]
        },
        "description": "Tool to retrieve the currently registered webhook URL for account notifications. Use when you need to verify your webhook setup.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "castingwords_order_transcript",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/order/transcript",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "order",
            "transcript"
          ]
        },
        "description": "Create a transcription order for audio/video files at publicly accessible URLs. Returns order ID and audiofile IDs for tracking. Requires prepaid balance for non-test orders. Use test=true to validate",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sku\": \"\",\n  \"url\": \"\",\n  \"name\": \"\",\n  \"test\": false,\n  \"notes\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "castingwords_order_upgrades",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/order/upgrades",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "order",
            "upgrades"
          ]
        },
        "description": "Tool to order an upgrade for a specific audio file. Use after transcription is complete to add items like timestamps or extra editing. Example: 'Order timestamps for file 12345'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sku\": \"\",\n  \"test\": false,\n  \"audiofile_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "castingwords_register_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/register/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "register",
            "webhook"
          ]
        },
        "description": "Registers a webhook URL to receive CastingWords event notifications. When events occur (e.g., transcript completion, refund issued, difficult audio), CastingWords will POST to your registered URL with",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"webhook\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "castingwords_sku_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/sku/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "sku",
            "list"
          ]
        },
        "description": "Retrieves all available CastingWords transcription service SKUs with pricing. Use this tool to discover available services (transcription, captions, etc.) and their per-minute prices before placing an",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "castingwords_test_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/test/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "test",
            "webhook"
          ]
        },
        "description": "Tool to request a test webhook call for a specific event type. Use after registering a webhook URL to ensure webhook notifications are functioning properly.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"event\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}