llms.txtllms-full.txt
DashboardStatusGet API Key
IntroductionQuickstartModelsPricingArchitecture & SecurityLimits & Quotas
Execution Modes & HTTP QueueWebhooksWebSocketsMCP Servern8n Integrationn8n dryAPI node
API OverviewErrorsText-to-ImagePOSTText-to-Image Price CalculationPOSTText-to-VideoPOSTText-to-Video Price CalculationPOSTImage-to-VideoPOSTImage-to-Video Price CalculationPOSTAudio-to-VideoPOSTAudio-to-Video Price CalculationPOSTText-to-Speech (TTS)POSTText-to-Speech Price CalculationPOSTText-to-MusicPOSTText-to-Music Price CalculationPOSTText-to-EmbeddingPOSTText-to-Embedding Price CalculationPOSTImage-to-ImagePOSTImage-to-Image Price CalculationPOSTImage Background RemovalPOSTImage Background Removal Price CalculationPOSTImage UpscalePOSTImage Upscale Price CalculationPOST
Audio-to-Text (X Spaces Transcription)POSTAudio-to-Text (X Spaces) Price CalculationPOSTImage-to-Text (OCR)POSTImage-to-Text Price CalculationPOSTUpload Audio File (Audio-to-Text)POSTUpload Audio File Price CalculationPOSTUpload Video File (Video-to-Text)POSTUpload Video File Price CalculationPOSTVideo-to-Text (Transcription)POSTVideo-to-Text Price CalculationPOST
OpenAPI
SDKs & IntegrationsPayment MethodsFAQ — Frequently Asked QuestionsSupport & Contact
dAdryAPI
DashboardStatusGet API Key
APIAnalysis
Technical Reference

Video-to-Text (Transcription)

Technical documentation for dryAPI APIs, integration guides, and operational references.

Unique Platform Support: dryAPI is one of the few APIs offering direct transcription from YT, TikTok, Twitch VODs, X and Kick videos — no need to download files first. Just paste the URL.

NOTE

Prerequisite: To ensure a successful request, you must first consult the Model Selection endpoint to identify a valid model slug, check specific limits and features, and verify LoRA availability.

OpenAPI

Request Vid2 Txt

POST
/api/v1/client/vid2txt

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Header Parameters

Accept*string
Default"application/json"
Value in"application/json"

Request Body

application/json

Video transcription parameters

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://api.dryapi.dev/api/v1/client/vid2txt" \  -H "Accept: application/json" \  -H "Content-Type: application/json" \  -d '{    "video_url": "https://www.youtube.com/watch?v=jNQXAC9IVRw",    "include_ts": true  }'
{
  "data": {
    "request_id": "c08a339c-73e5-4d67-a4d5-231302fbff9a"
  }
}
{
  "data": {},
  "message": "string",
  "errors": [
    null
  ],
  "statusCode": 0
}
{
  "data": {},
  "message": "string",
  "errors": [
    null
  ],
  "statusCode": 0
}
{
  "message": "The selected model does not support Text To Image.",
  "errors": {
    "model": [
      "The selected model does not support Text To Image."
    ]
  }
}
{
  "message": "Too Many Attempts."
}
Last updated on 21 March 2026

POST Upload Video File Price Calculation

Previous Page

POST Video-to-Text Price Calculation

Next Page

video_url*string

Public video URL to transcribe. Supported platforms: YouTube, TikTok, Twitch, Kick, X.

include_ts*boolean

Should transcription include timestamps

model?string

The model to use for transcription. Available models can be retrieved via the GET /api/v1/client/models endpoint.

return_result_in_response?|

If true, the result will be returned directly in the response instead of only download url. Optional parameter.

Defaultfalse
webhook_url?|

Optional HTTPS URL to receive webhook notifications for job status changes (processing, completed, failed). Must be HTTPS. Max 2048 characters. See Webhook Documentation for payload structure and authentication details.

Formaturi
Lengthlength <= 2048