### Get Projects Source: https://documenter.getpostman.com/view/36975521/2sA3kPo4BR#680c88b0-2684-438f-8baa-16efbe7add7c/index Retrieves a list of all projects associated with the user's account. Requires an API key. ```APIDOC ## GET /projects ### Description Retrieves a list of all projects created by the user. ### Method GET ### Endpoint /projects ### Parameters #### Headers - **key** (string) - Required - Your revid.ai API key. ### Response #### Success Response (200) - **projects** (array) - A list of project objects. - **project_id** (string) - The unique identifier for the project. - **name** (string) - The name of the project. - **created_at** (string) - The timestamp when the project was created. #### Response Example ```json { "projects": [ { "project_id": "proj_abc123", "name": "Marketing Campaign Q3", "created_at": "2023-10-27T10:00:00Z" }, { "project_id": "proj_xyz789", "name": "Product Demo Video", "created_at": "2023-10-26T15:30:00Z" } ] } ``` ``` -------------------------------- ### Get Media Source: https://documenter.getpostman.com/view/36975521/2sA3kPo4BR#680c88b0-2684-438f-8baa-16efbe7add7c/index Retrieves media assets available in the user's account. Requires an API key. ```APIDOC ## GET /media ### Description Fetches a list of available media assets (images, audio files, etc.) associated with the user's account. ### Method GET ### Endpoint /media ### Parameters #### Headers - **key** (string) - Required - Your revid.ai API key. ### Response #### Success Response (200) - **media_assets** (array) - A list of media asset objects. - **media_id** (string) - The unique identifier for the media asset. - **type** (string) - The type of media (e.g., 'image', 'audio'). - **url** (string) - The URL to access the media asset. - **uploaded_at** (string) - The timestamp when the media was uploaded. #### Response Example ```json { "media_assets": [ { "media_id": "media_img001", "type": "image", "url": "https://revid.ai/assets/images/logo.png", "uploaded_at": "2023-10-20T09:00:00Z" }, { "media_id": "media_aud002", "type": "audio", "url": "https://revid.ai/assets/audio/background_music.mp3", "uploaded_at": "2023-10-21T11:00:00Z" } ] } ``` ``` -------------------------------- ### Get All Consistent Characters Source: https://documenter.getpostman.com/view/36975521/2sA3kPo4BR#680c88b0-2684-438f-8baa-16efbe7add7c/index Retrieves a list of all consistent characters created by the user. Requires an API key. ```APIDOC ## GET /characters/consistent ### Description Fetches a list of all consistent characters that the user has created. ### Method GET ### Endpoint /characters/consistent ### Parameters #### Headers - **key** (string) - Required - Your revid.ai API key. ### Response #### Success Response (200) - **characters** (array) - A list of consistent character objects. - **character_id** (string) - The unique identifier for the character. - **name** (string) - The name of the character. - **created_at** (string) - The timestamp when the character was created. #### Response Example ```json { "characters": [ { "character_id": "char_a1b2c3d4", "name": "AI Assistant", "created_at": "2023-10-22T12:00:00Z" }, { "character_id": "char_e5f6g7h8", "name": "Brand Mascot", "created_at": "2023-10-23T14:30:00Z" } ] } ``` ``` -------------------------------- ### Get Video Status Source: https://documenter.getpostman.com/view/36975521/2sA3kPo4BR#680c88b0-2684-438f-8baa-16efbe7add7c/index Retrieves the current status of a video creation job. Requires the video ID and an API key. ```APIDOC ## GET /video/status/{video_id} ### Description Fetches the status of a video that is currently being generated or has been completed. ### Method GET ### Endpoint /video/status/{video_id} ### Parameters #### Path Parameters - **video_id** (string) - Required - The unique identifier of the video. #### Headers - **key** (string) - Required - Your revid.ai API key. ### Response #### Success Response (200) - **status** (string) - The current status of the video (e.g., 'processing', 'completed', 'failed'). - **progress_percent** (integer) - The completion percentage of the video generation (if applicable). - **video_url** (string, optional) - The URL of the completed video if available. #### Response Example ```json { "status": "completed", "progress_percent": 100, "video_url": "https://revid.ai/videos/vid_abc123.mp4" } ``` ``` -------------------------------- ### Export Project as Video (POST) Source: https://documenter.getpostman.com/view/36975521/2sA3kPo4BR#680c88b0-2684-438f-8baa-16efbe7add7c/index Exports a specified project as a video file. Requires a valid project ID owned by the user. Rendering a project consumes 10 credits. The API key is used for authorization. ```curl curl --location 'https://www.revid.ai/api/public/v2/export-video' \ --header 'Content-Type: application/json' \ --header 'key: YOUR_API_KEY' \ --data '{"pid": "YOUR_PROJECT_ID"}' ``` -------------------------------- ### Publish Now Source: https://documenter.getpostman.com/view/36975521/2sA3kPo4BR#680c88b0-2684-438f-8baa-16efbe7add7c/index Immediately publishes a created video. Requires the video ID and an API key. ```APIDOC ## POST /publish/now ### Description Immediately publishes a completed video to specified platforms (if configured). Requires the video ID and an API key. ### Method POST ### Endpoint /publish/now ### Parameters #### Headers - **key** (string) - Required - Your revid.ai API key. #### Request Body - **video_id** (string) - Required - The ID of the video to publish. ### Request Example ```json { "video_id": "vid_abc123" } ``` ### Response #### Success Response (200) - **message** (string) - Confirmation message indicating the video has been published. #### Response Example ```json { "message": "Video vid_abc123 has been published." } ``` ``` -------------------------------- ### Add To Queue Source: https://documenter.getpostman.com/view/36975521/2sA3kPo4BR#680c88b0-2684-438f-8baa-16efbe7add7c/index Adds a video creation task to the processing queue. Requires an API key. ```APIDOC ## POST /queue/add ### Description Adds a video creation task to the processing queue. This is useful for batch processing or scheduling. ### Method POST ### Endpoint /queue/add ### Parameters #### Headers - **key** (string) - Required - Your revid.ai API key. #### Request Body - **video_parameters** (object) - Required - The parameters for the video to be created. ### Request Example ```json { "video_parameters": { "prompt": "Explainer video for new feature", "duration_seconds": 30 } } ``` ### Response #### Success Response (200) - **queue_id** (string) - The identifier for the queued task. - **status** (string) - The status of the queued task (e.g., 'queued'). #### Response Example ```json { "queue_id": "q_def456", "status": "queued" } ``` ``` -------------------------------- ### POST /api/public/v2/export-video Source: https://documenter.getpostman.com/view/36975521/2sA3kPo4BR#680c88b0-2684-438f-8baa-16efbe7add7c/index Exports a project as a video file. Requires a valid project ID and consumes 10 credits per rendering. ```APIDOC ## POST /api/public/v2/export-video ### Description Exports the project and returns a video file. Requires a valid project ID that you own as input. Rendering a project costs 10 credits. ### Method POST ### Endpoint https://www.revid.ai/api/public/v2/export-video ### Parameters #### Headers - **Content-Type** (string) - Required - application/json - **key** (string) - Required - YOUR_API_KEY #### Request Body - **pid** (string) - Required - The ID of the project to export. ### Request Example ```json { "pid": "YOUR_PROJECT_ID" } ``` ### Response #### Success Response (200) No response body is returned upon successful export. ``` -------------------------------- ### Estimate Video Creation Credits (POST) Source: https://documenter.getpostman.com/view/36975521/2sA3kPo4BR#680c88b0-2684-438f-8baa-16efbe7add7c/index Estimates the credits required to create a video based on various creation parameters. This endpoint allows for detailed configuration of video generation, including media type, voiceover, captions, and AI generation settings. Authorization is handled via an API key. ```curl curl --location 'https://www.revid.ai/api/public/v2/calculate-credits' \ --data '{ "creationParams": { "mediaType": "movingImage", "captionPresetName": "Wrap 1", "selectedVoice": "SAz9YHcvj6GT2YYXdXww", "hasEnhancedGeneration": true, "generationPreset": "DEFAULT", "generationUserPrompt": "Dragonball universe", "selectedAudio": "Observer", "origin": "/create", "inputText": "this is a test", "flowType": "text-to-video", "slug": "create-tiktok-video", "hasToGenerateVoice": true, "hasToTranscript": false, "hasToSearchMedia": true, "hasAvatar": false, "hasWebsiteRecorder": false, "hasTextSmallAtBottom": false, "ratio": "9 / 16", "sourceType": "contentScraping", "selectedStoryStyle": { "value": "custom", "label": "Custom" }, "hasToGenerateVideos": true, "audioUrl": "https://cdn.revid.ai/audio/observer.mp3" } }' ``` -------------------------------- ### Export Project Source: https://documenter.getpostman.com/view/36975521/2sA3kPo4BR#680c88b0-2684-438f-8baa-16efbe7add7c/index Exports an existing project. This endpoint requires an API key for authorization. ```APIDOC ## POST /export/project ### Description Exports a project from revid.ai. Requires an API key for authentication. ### Method POST ### Endpoint /export/project ### Parameters #### Headers - **key** (string) - Required - Your revid.ai API key. #### Request Body - **project_id** (string) - Required - The ID of the project to export. ### Request Example ```json { "project_id": "proj_xyz789" } ``` ### Response #### Success Response (200) - **export_url** (string) - A URL to download the exported project. #### Response Example ```json { "export_url": "https://revid.ai/exports/project_xyz789.zip" } ``` ``` -------------------------------- ### POST /api/public/v2/calculate-credits Source: https://documenter.getpostman.com/view/36975521/2sA3kPo4BR#680c88b0-2684-438f-8baa-16efbe7add7c/index Estimates the credits required for video creation based on specified parameters. ```APIDOC ## POST /api/public/v2/calculate-credits ### Description Estimates the credits required for video creation based on the provided `creationParams`. ### Method POST ### Endpoint https://www.revid.ai/api/public/v2/calculate-credits ### Parameters #### Request Body - **creationParams** (object) - Required - Contains all parameters for video creation. - **inputText** (string) - Required - The text or URL to use as the main input. - **hasToGenerateVoice** (boolean) - Optional - Whether to generate a voiceover for the `inputText`. If true, additional voice parameters can be included. - **selectedVoice** (string) - Optional - An ElevenLabs voice ID. - **hasToSearchMedia** (boolean) - Optional - Whether to automatically search for media to include in the video. If true, additional media parameters can be included. - **mediaType** (string) - Optional - The type of media to generate or search for. Options: `stockVideo`, `movingImage`, `aiVideo`. - **stockVideo**: Will find stock videos. - **movingImage**: Will generate AI images and animate them. - **aiVideo**: Will generate AI videos with a state-of-the-art model. - **generationPreset** (string) - Optional - A preset for media generation. Examples: `LEONARDO`, `ANIME`, `REALISM`, `ILLUSTRATION`, `SKETCH_COLOR`, `SKETCH_BW`, `PIXAR`, `INK`, `RENDER_3D`, `LEGO`, `SCIFI`, `RECRO_CARTOON`, `PIXEL_ART`, `CREATIVE`, `PHOTOGRAPHY`, `RAYTRACED`, `ENVIRONMENT`, `FANTASY`, `ANIME_SR`, `MOVIE`, `STYLIZED_ILLUSTRATION`, `MANGA`. - **generationUserPrompt** (string) - Optional - A user-defined prompt to guide media generation. - **hasEnhancedGeneration** (boolean) - Optional - Set to true to use the best performing AI model for generation. - **audioUrl** (string) - Optional - The URL of an audio track to play in the background. - **captionPresetName** (string) - Optional - A preset for caption generation. Options: `Basic`, `Revid`, `Hormozi`, `Ali`, `Wrap 1`, `Wrap 2`, `Faceless`. Defaults to `Wrap 1`. - **hasAvatar** (boolean) - Optional - Whether to add a talking avatar. - **selectedAvatar** (string) - Required if `hasAvatar` is true - An image or video to drive the talking avatar generation. ### Request Example ```json { "creationParams": { "mediaType": "movingImage", "captionPresetName": "Wrap 1", "selectedVoice": "SAz9YHcvj6GT2YYXdXww", "hasEnhancedGeneration": true, "generationPreset": "DEFAULT", "generationUserPrompt": "Dragonball universe", "selectedAudio": "Observer", "origin": "/create", "inputText": "this is a test", "flowType": "text-to-video", "slug": "create-tiktok-video", "hasToGenerateVoice": true, "hasToTranscript": false, "hasToSearchMedia": true, "hasAvatar": false, "hasWebsiteRecorder": false, "hasTextSmallAtBottom": false, "ratio": "9 / 16", "sourceType": "contentScraping", "selectedStoryStyle": { "value": "custom", "label": "Custom" }, "hasToGenerateVideos": true, "audioUrl": "https://cdn.revid.ai/audio/observer.mp3" } } ``` ### Response #### Success Response (200) No response body is returned upon successful estimation. ``` -------------------------------- ### Create Consistent Character Source: https://documenter.getpostman.com/view/36975521/2sA3kPo4BR#680c88b0-2684-438f-8baa-16efbe7add7c/index Creates a new consistent character for use in videos. Requires an API key and character details. ```APIDOC ## POST /characters/consistent/create ### Description Creates a new consistent character that can be reused across multiple videos. ### Method POST ### Endpoint /characters/consistent/create ### Parameters #### Headers - **key** (string) - Required - Your revid.ai API key. #### Request Body - **name** (string) - Required - The name for the new character. - **image_url** (string) - Required - URL of the image to use for the character. ### Request Example ```json { "name": "Tech Guru", "image_url": "https://revid.ai/images/characters/tech_guru.png" } ``` ### Response #### Success Response (200) - **character_id** (string) - The unique identifier for the newly created character. - **message** (string) - Confirmation message. #### Response Example ```json { "character_id": "char_i9j0k1l2", "message": "Consistent character 'Tech Guru' created successfully." } ``` ``` -------------------------------- ### Estimate Credits Source: https://documenter.getpostman.com/view/36975521/2sA3kPo4BR#680c88b0-2684-438f-8baa-16efbe7add7c/index Estimates the credit cost for a video creation task. This endpoint requires an API key. ```APIDOC ## POST /estimate/credits ### Description Estimates the number of credits required for a specific video creation configuration. Useful for planning API usage. ### Method POST ### Endpoint /estimate/credits ### Parameters #### Headers - **key** (string) - Required - Your revid.ai API key. #### Request Body - **video_parameters** (object) - Required - The parameters defining the video to be created (similar to the create video endpoint). ### Request Example ```json { "video_parameters": { "prompt": "A tutorial on using the API", "duration_seconds": 60, "ai_features": ["text_to_speech", "custom_background"] } } ``` ### Response #### Success Response (200) - **estimated_credits** (integer) - The estimated number of credits required. #### Response Example ```json { "estimated_credits": 5 } ``` ``` -------------------------------- ### Create TikTok Video using JSON Source: https://documenter.getpostman.com/view/36975521/2sA3kPo4BR#680c88b0-2684-438f-8baa-16efbe7add7c/index This JSON object demonstrates the structure for creating a TikTok video via the Revid.ai API. It includes parameters for webhook, media type, voice generation, captioning, and media generation prompts. ```json { "webhook": "fill this webhook", "creationParams": { "mediaType": "movingImage", "captionPresetName": "Wrap 1", "selectedVoice": "SAz9YHcvj6GT2YYXdXww", "hasEnhancedGeneration": true, "generationPreset": "DEFAULT", "generationUserPrompt": "Dragonball universe", "selectedAudio": "Observer", "origin": "/create", "inputText": "this is a test", "flowType": "text-to-video", "slug": "create-tiktok-video", "hasToGenerateVoice": true, "hasToTranscript": false, "hasToSearchMedia": true, "hasAvatar": false, "hasWebsiteRecorder": false, "hasTextSmallAtBottom": false, "ratio": "9 / 16", "sourceType": "contentScraping", "selectedStoryStyle": { "value": "custom", "label": "Custom" }, "hasToGenerateVideos": true, "audioUrl": "https://cdn.revid.ai/audio/observer.mp3" } } ``` -------------------------------- ### Create TikTok Video using cURL Source: https://documenter.getpostman.com/view/36975521/2sA3kPo4BR#680c88b0-2684-438f-8baa-16efbe7add7c/index This cURL command shows how to make a POST request to the Revid.ai API to create a TikTok video. It includes the endpoint URL and the JSON payload for video creation parameters. ```curl curl --location 'https://www.revid.ai/api/public/v2/render' \ --data '{ "webhook": "fill this webhook", "creationParams": { "mediaType": "movingImage", "captionPresetName": "Wrap 1", "selectedVoice": "SAz9YHcvj6GT2YYXdXww", "hasEnhancedGeneration": true, "generationPreset": "DEFAULT", "generationUserPrompt": "Dragonball universe", "selectedAudio": "Observer", "origin": "/create", "inputText": "this is a test", "flowType": "text-to-video", "slug": "create-tiktok-video", "hasToGenerateVoice": true, "hasToTranscript": false, "hasToSearchMedia": true, "hasAvatar": false, "hasWebsiteRecorder": false, "hasTextSmallAtBottom": false, "ratio": "9 / 16", "sourceType": "contentScraping", "selectedStoryStyle": { "value": "custom", "label": "Custom" }, "hasToGenerateVideos": true, "audioUrl": "https://cdn.revid.ai/audio/observer.mp3" } }' ``` -------------------------------- ### POST /api/public/v2/render - Create TikTok Video Source: https://documenter.getpostman.com/view/36975521/2sA3kPo4BR#680c88b0-2684-438f-8baa-16efbe7add7c/index This endpoint allows you to create TikTok videos by providing various parameters for content generation, media selection, and customization. ```APIDOC ## POST /api/public/v2/render ### Description This endpoint allows you to create TikTok videos by providing various parameters for content generation, media selection, and customization. ### Method POST ### Endpoint https://www.revid.ai/api/public/v2/render ### Parameters #### Query Parameters - **webhook** (string) - Optional - The URL to call when the project is completed or errored. - **resolution** (string) - Optional - The desired video resolution. Accepts `1080p` (default) or `720p` (faster). - **compression** (integer) - Optional - The compression level for the video. Defaults to `18`. Recommended values are `9` (low), `18` (medium), `33` (high). - **frameRate** (integer) - Optional - The frame rate for the video. Defaults to `30`. Also accepts `60`. #### Request Body - **webhook** (string) - Optional - The URL to call when the project is completed or errored. - **creationParams** (object) - Required - All the parameters to use to create your videos. Refer to the nested parameters below. - **inputText** (string) - Required - The text or URL to use as the main input for the video. - **hasToGenerateVoice** (boolean) - Required - Whether to generate a voiceover for the `inputText`. - **selectedVoice** (string) - Optional - An elevenLabs voice ID to use for the voiceover (required if `hasToGenerateVoice` is true). - **hasToSearchMedia** (boolean) - Optional - Whether to automatically search for and add media to the video. - **mediaType** (string) - Optional - The type of media to add. Can be `stockVideo`, `movingImage`, or `aiVideo`. - `stockVideo`: Will find stock videos. - `movingImage`: Will generate AI images and animate them. - `aiVideo`: Will generate AI videos with a state-of-the-art model. - **generationPreset** (string) - Optional - A preset for media generation. Examples: `LEONARDO`, `ANIME`, `REALISM`, `ILLUSTRATION`, `SKETCH_COLOR`, `SKETCH_BW`, `PIXAR`, `INK`, `RENDER_3D`, `LEGO`, `SCIFI`, `RECRO_CARTOON`, `PIXEL_ART`, `CREATIVE`, `PHOTOGRAPHY`, `RAYTRACED`, `ENVIRONMENT`, `FANTASY`, `ANIME_SR`, `MOVIE`, `STYLIZED_ILLUSTRATION`, `MANGA`. - **generationUserPrompt** (string) - Optional - A prompt to guide the media generation model. - **hasEnhancedGeneration** (boolean) - Optional - Set to `true` to use the best performing AI model for media generation. - **audioUrl** (string) - Optional - The URL of an audio track to play in the background. - **captionPresetName** (string) - Optional - A caption preset. Examples: `Basic`, `Revid`, `Hormozi`, `Ali`, `Wrap 1`, `Wrap 2`, `Faceless`. Defaults to `Wrap 1`. - **hasAvatar** (boolean) - Optional - Whether to add a talking avatar to the video. - **selectedAvatar** (string) - Required if `hasAvatar` is true - An image or video to drive the talking avatar generation. ### Request Example ```json { "webhook": "fill this webhook", "creationParams": { "mediaType": "movingImage", "captionPresetName": "Wrap 1", "selectedVoice": "SAz9YHcvj6GT2YYXdXww", "hasEnhancedGeneration": true, "generationPreset": "DEFAULT", "generationUserPrompt": "Dragonball universe", "selectedAudio": "Observer", "origin": "/create", "inputText": "this is a test", "flowType": "text-to-video", "slug": "create-tiktok-video", "hasToGenerateVoice": true, "hasToTranscript": false, "hasToSearchMedia": true, "hasAvatar": false, "hasWebsiteRecorder": false, "hasTextSmallAtBottom": false, "ratio": "9 / 16", "sourceType": "contentScraping", "selectedStoryStyle": { "value": "custom", "label": "Custom" }, "hasToGenerateVideos": true, "audioUrl": "https://cdn.revid.ai/audio/observer.mp3" } } ``` ### Response #### Success Response (200) This request does not return a response body. #### Response Example No response body. ``` -------------------------------- ### Create TikTok Video Source: https://documenter.getpostman.com/view/36975521/2sA3kPo4BR#680c88b0-2684-438f-8baa-16efbe7add7c/index Creates a new TikTok video. This endpoint requires an API key for authorization and may incur credits based on selected options. ```APIDOC ## POST /create/tiktok ### Description Creates a new TikTok video using the revid.ai API. Users need to provide their API key in the 'key' header. The cost in credits depends on the chosen parameters and AI features used. ### Method POST ### Endpoint /create/tiktok ### Parameters #### Headers - **key** (string) - Required - Your revid.ai API key. #### Request Body (Refer to the revid.ai website for specific parameters. Example: https://www.revid.ai/create "Get API Code") ### Request Example ```json { "video_parameters": { "prompt": "A short, engaging TikTok video about AI", "duration_seconds": 15, "ai_features": ["background_music", "voiceover"] } } ``` ### Response #### Success Response (200) - **video_id** (string) - The unique identifier for the created video. - **status** (string) - The current status of the video creation process (e.g., 'processing', 'completed'). #### Response Example ```json { "video_id": "vid_abc123", "status": "processing" } ``` ``` -------------------------------- ### Rename Project Source: https://documenter.getpostman.com/view/36975521/2sA3kPo4BR#680c88b0-2684-438f-8baa-16efbe7add7c/index Renames an existing project. Requires the project ID, new name, and an API key. ```APIDOC ## POST /project/rename ### Description Renames an existing project associated with the user's account. ### Method POST ### Endpoint /project/rename ### Parameters #### Headers - **key** (string) - Required - Your revid.ai API key. #### Request Body - **project_id** (string) - Required - The ID of the project to rename. - **new_name** (string) - Required - The new name for the project. ### Request Example ```json { "project_id": "proj_xyz789", "new_name": "Updated Product Demo Video" } ``` ### Response #### Success Response (200) - **message** (string) - Confirmation message indicating the project has been renamed. #### Response Example ```json { "message": "Project proj_xyz789 has been renamed to Updated Product Demo Video." } ``` ``` -------------------------------- ### Search Media Source: https://documenter.getpostman.com/view/36975521/2sA3kPo4BR#680c88b0-2684-438f-8baa-16efbe7add7c/index Searches for specific media assets based on keywords or filters. Requires an API key. ```APIDOC ## GET /media/search ### Description Searches for media assets using keywords or other filtering criteria. ### Method GET ### Endpoint /media/search ### Parameters #### Query Parameters - **q** (string) - Optional - The search query or keywords. - **type** (string) - Optional - Filter by media type (e.g., 'image', 'audio'). #### Headers - **key** (string) - Required - Your revid.ai API key. ### Response #### Success Response (200) - **media_assets** (array) - A list of matching media asset objects (same structure as in GET /media). #### Response Example ```json { "media_assets": [ { "media_id": "media_img003", "type": "image", "url": "https://revid.ai/assets/images/ai_graphic.jpg", "uploaded_at": "2023-10-25T14:00:00Z" } ] } ``` ``` -------------------------------- ### Delete Consistent Character Source: https://documenter.getpostman.com/view/36975521/2sA3kPo4BR#680c88b0-2684-438f-8baa-16efbe7add7c/index Deletes a consistent character. Requires the character ID and an API key. ```APIDOC ## DELETE /characters/consistent/{character_id} ### Description Deletes a previously created consistent character. ### Method DELETE ### Endpoint /characters/consistent/{character_id} ### Parameters #### Path Parameters - **character_id** (string) - Required - The ID of the character to delete. #### Headers - **key** (string) - Required - Your revid.ai API key. ### Response #### Success Response (200) - **message** (string) - Confirmation message indicating the character has been deleted. #### Response Example ```json { "message": "Consistent character char_i9j0k1l2 has been deleted." } ``` ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.