# 去除Sora水印API 請求 curl -X POST https://savesora.com/api/v1/download \ -H "Content-Type: application/json" \ -d '{ "api_key": "YOUR_API_KEY", "video_url": "https://sora.chatgpt.com/p/s_6902318491e88191893d935b08d8c428" }'
什麼是去除Sora水印API?
去除Sora水印API是一款RESTful API服務,讓開發者能程式化移除Sora AI生成影片上的水印。透過此API,您可大規模自動化水印移除,並將無水印影片下載整合至應用程式、工作流程或平台中。

為什麼選擇去除Sora水印API?
即時處理
去除Sora水印API能於數秒內處理影片。優化伺服器確保所有Sora影片快速去除水印。
無瑕輸出
去除Sora水印API提供無任何水印的純淨影片。品質與原始Sora作品相同。
簡易整合
去除Sora水印API採用標準REST架構。一次API呼叫即可移除水印並回傳下載連結。
去除Sora水印API應用場景
內容平台
將去除Sora水印API整合至您的內容平台,為用戶提供無水印的Sora影片下載服務。
自動化工作流程
在自動化腳本中使用去除Sora水印API,批量處理多個Sora影片。
影片剪輯軟體
將去除Sora水印API整合至影片剪輯工具,實現無水印匯出流程。
取得您的去除Sora水印API金鑰
三步驟即可開始使用去除Sora水印API
建立帳號
註冊SaveSora以取得去除Sora水印API。API憑證將自動生成。
購買點數
購買去除Sora水印API呼叫點數。每次移除水印需1點數。
開始移除水印
使用API金鑰呼叫去除Sora水印API,即可立即取得無水印的純淨影片。
去除Sora水印API接口
/api/v1/download移除Sora水印並下載無水印影片。去除Sora水印API每個請求需1點數。
請求參數
| 參數 | 類型 | 必填 | 說明 |
|---|---|---|---|
| api_key | string | 是的 | 您的去除Sora水印API金鑰 |
| video_url | string | 是的 | 欲去除水印的Sora影片網址(格式:https://sora.chatgpt.com/p/s_xxx) |
API請求範例
{
"api_key": "YOUR_API_KEY",
"video_url": "https://sora.chatgpt.com/p/s_68dc40f1f5a481919a01594fef247dd4"
}API回應
{
"code": 200,
"msg": "watermark removed successfully",
"data": {
"post_id": "s_68dc40f1f5a481919a01594fef247dd4",
"prompt": "A cinematic shot of...",
"thumbnail": "https://...",
"download_links": {
"mp4": "https://download-url.mp4",
"mp4_source": "https://source-url.mp4"
},
"credits_used": 1,
"remaining_credits": 99
}
}/api/v1/credits查詢您的去除Sora水印API點數餘額及使用狀態。
請求參數
| 參數 | 類型 | 必填 | 說明 |
|---|---|---|---|
| api_key | string | 是的 | 您的去除Sora水印API金鑰 |
API請求範例
{
"api_key": "YOUR_API_KEY"
}API回應
{
"code": 200,
"msg": "success",
"data": {
"paid_credits": 50,
"onetime_credits": 50,
"total_credits": 100
}
}去除Sora水印API錯誤代碼
| 程式碼 | 錯誤 | 說明 |
|---|---|---|
| 4001 | api_key is required | 未提供去除Sora水印API金鑰 |
| 4002 | video_url is required | 請求中未提供影片URL參數 |
| 4003 | invalid api_key | 去除Sora水印API金鑰無效或已失效 |
| 4004 | user not found | 未找到此去除Sora水印API金鑰對應的使用者 |
| 4005 | user account is banned | 使用者帳戶已被刪除或封鎖 |
| 4006 | invalid video url | 用於移除水印的Sora影片網址無效 |
| 4007 | insufficient credits | 去除Sora水印API點數不足 |
| 5001 | internal server error | 內部伺服器錯誤,請稍後再試 |
| 5002 | watermark removal failed | 去除水印失敗,點數將退款 |
錯誤回應範例
{
"code": 4007,
"msg": "insufficient credits",
"data": {
"current_credits": 0,
"required_credits": 1
}
}AI快速整合
複製下方完整的API文件,貼上至您的AI助理(Cursor、CodeX、Claude Code等)以快速產生整合程式碼。
# Remove Sora Watermark API Documentation
## Base URL
https://savesora.com
## Authentication
All API requests require an `api_key` parameter for authentication.
## Endpoints
### 1. Download Video (Remove Watermark)
- **URL**: POST /api/v1/download
- **Description**: Remove watermark from a Sora video and get download links
- **Cost**: 1 credit per request
**Request Body (JSON):**
```json
{
"api_key": "YOUR_API_KEY",
"video_url": "https://sora.chatgpt.com/p/s_xxx"
}
```
**Success Response (200):**
```json
{
"code": 200,
"msg": "watermark removed successfully",
"data": {
"post_id": "s_xxx",
"prompt": "Original video prompt text",
"thumbnail": "https://thumbnail-url",
"download_links": {
"mp4": "https://download-url.mp4",
"mp4_source": "https://source-url.mp4"
},
"credits_used": 1,
"remaining_credits": 99
}
}
```
**Response Fields:**
| Field | Description |
|-------|-------------|
| post_id | Unique video ID |
| prompt | Original video description/prompt |
| thumbnail | Video cover image URL |
| download_links.mp4 | Watermark-free video download URL |
| download_links.mp4_source | Original video with watermark |
| credits_used | Credits consumed for this request |
| remaining_credits | Your remaining credit balance |
### 2. Check Credits Balance
- **URL**: POST /api/v1/credits
- **Description**: Check your API credit balance
**Request Body (JSON):**
```json
{
"api_key": "YOUR_API_KEY"
}
```
**Success Response (200):**
```json
{
"code": 200,
"msg": "success",
"data": {
"paid_credits": 50,
"onetime_credits": 50,
"total_credits": 100
}
}
```
## Error Responses
| Code | Message | Description |
|------|---------|-------------|
| 4001 | api_key is required | API key was not provided |
| 4002 | video_url is required | Video URL was not provided |
| 4003 | invalid api_key | API key is invalid or revoked |
| 4004 | user not found | User account not found |
| 4005 | user account is banned | User account has been deleted or banned |
| 4006 | invalid video url | The Sora video URL format is incorrect |
| 4007 | insufficient credits | Not enough credits for this request |
| 5001 | internal server error | Server error, please try again later |
| 5002 | watermark removal failed | Failed to remove watermark |
**Error Response Example:**
```json
{
"code": 4007,
"msg": "insufficient credits",
"data": {
"current_credits": 0,
"required_credits": 1
}
}
```
## Notes
- Video URL must be a valid Sora video link (format: https://sora.chatgpt.com/p/s_xxx)
- Each successful download consumes 1 credit
- Downloaded videos are watermark-free and in original quality去除Sora水印API 常見問題
什麼是去除Sora水印API?
去除Sora水印API 是一個REST接口,可程式化移除Sora影片中的水印。呼叫API並提供Sora影片URL,即可取得無水印的乾淨下載連結。
去除Sora水印API的費用是多少?
去除Sora水印API 採用點數制,每次去除水印需消耗1點數。
去除Sora水印API 支援哪些影片格式?
去除Sora水印API 回傳MP4格式影片,並保留原始Sora影片品質。
去除Sora水印API 適合用於正式環境嗎?
適合,去除Sora水印API專為高可用性與快速回應的生產環境設計。
開始使用去除Sora水印API
取得您的API金鑰並開始程式化移除Sora水印。去除Sora水印API是整合水印移除的最快方案。
