AITRE API Documents(English)
  1. Openai's format(Chat)
AITRE API Documents(English)
  • AITRE Introduction
  • Project Description
  • Send Request
  • Openai's format(Chat)
    • Gpt-4o-image(Generate Image)
      POST
    • Chat Completions Interface Copy
      POST
    • sora_remover watermark remove api
      POST
  • Audio Interface(Audio)
    • TTS(speech-to-text)
      POST
    • Transcriptions
      POST
    • Translations
      POST
  • video
    • sora2
      • Sora2 (Text to Video)
      • Sora2 (Image to Video)
  • Embeddings Interface(Embeddings)
    • Embeddings
    • Create Embeddings
      POST
  • Images Generations(Images)
    • Openai's format Gpt-image-1
      POST
    • Openai's format Flux
      POST
    • Openai's format DALL·E 3
      POST
  • Models Interface(Models)
    • Model
      GET
  • Auto Completions Interface(Completions)
    • Completions
      POST
  • MidJourney
    • Description
    • Fetch task by id
      GET
    • Action
      POST
    • Blend(image to image)
      POST
    • Describe (image to text)
      POST
    • Imagine (text to image/image to image)
      POST
    • Modal(Partial redrawing、ZOOM)
      POST
    • Shorten(prompt analysis)
      POST
  1. Openai's format(Chat)

sora_remover watermark remove api

POST
{{BASE_URL}}/v1/chat/completions
sora_remover supports specifying the Sora share link and returns the original video URL, the watermark-removed video URL, the GIF URL, the banner image URL, and a prompt word, all for a cost of $0.1 each time.

Request

Header Params

Body Params application/json

Example
{
    "model": "sora_remover",
    "messages": [
        {
            "role": "user",
            "content": "https://sora.chatgpt.com/p/s_68e54266368481919a6bbb6e8d1953f7"
        }
    ]
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST '{{BASE_URL}}/v1/chat/completions' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{YOUR_API_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "model": "sora_remover",
    "messages": [
        {
            "role": "user",
            "content": "https://sora.chatgpt.com/p/s_68e54266368481919a6bbb6e8d1953f7"
        }
    ]
}'

Responses

🟢200OK
application/json
Body

Example
{
    "id": "sora-remover-1761811522",
    "object": "chat.completion",
    "created": 1761811522,
    "model": "sora_remover",
    "choices": [
        {
            "index": 0,
            "message": {
                "role": "assistant",
                "content": "{\"title\": \"The End of the Universe is Livestreaming-霍霸天\", \"url\": \"https://oscdn1.dyysy.com/MP4/s_68e750af8cdc8191a625ebc456e8f902.mp4\", \"photo\": \"https://oscdn1.dyysy.com/THUMBNAIL/s_68e750af8cdc8191a625ebc456e8f902.webp\", \"cover\": \"https://oscdn1.dyysy.com/THUMBNAIL/s_68e750af8cdc8191a625ebc456e8f902.webp\", \"bigFile\": false, \"down\": \"https://oscdn1.dyysy.com/MP4/s_68e750af8cdc8191a625ebc456e8f902.mp4\", \"download_image\": \"https://oscdn1.dyysy.com/THUMBNAIL/s_68e750af8cdc8191a625ebc456e8f902.webp\", \"gif\": \"https://oscdn1.dyysy.com/GIF/s_68e750af8cdc8191a625ebc456e8f902.gif\"}"
            },
            "finish_reason": "stop"
        }
    ],
    "usage": {
        "prompt_tokens": 35,
        "completion_tokens": 260,
        "total_tokens": 295,
        "prompt_tokens_details": {},
        "completion_tokens_details": {
            "reasoning_tokens": 0,
            "accepted_prediction_tokens": 0,
            "rejected_prediction_tokens": 0
        }
    }
}
Modified at 2025-10-30 07:17:08
Previous
Chat Completions Interface Copy
Next
TTS(speech-to-text)
Built with