Generate ASMR

Generate ASMR audio content from a theme and optional prompt.

Endpoint

POST
/api/v1/jobs

Create a generate_asmr job

Credits

Cost

175 credits per job.

Input Parameters

Request Body

NameTypeDescription
workflowrequiredstring"generate_asmr"
input.themerequiredstringASMR theme (e.g., 'rain', 'keyboard', 'nature')
input.promptstringAdditional description to guide the generation
webhookUrlstringURL to receive completion notification

Example Request

Create ASMR Job

curl -X POST https://vydra.ai/api/v1/jobs \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "workflow": "generate_asmr",
    "input": {
      "theme": "rain",
      "prompt": "Gentle rain on a tin roof with distant thunder"
    }
  }'

Example Response

Response (201 Created)json
{
  "id": "aa0e8400-e29b-41d4-a716-446655440005",
  "status": "running",
  "workflow": "generate_asmr",
  "creditsCharged": 175,
  "createdAt": "2026-01-26T12:00:00.000Z",
  "_links": {
    "self": "https://vydra.ai/api/v1/jobs/aa0e8400-e29b-41d4-a716-446655440005",
    "status": "https://vydra.ai/api/v1/jobs/aa0e8400-e29b-41d4-a716-446655440005"
  }
}