Generate ASMR
Generate ASMR audio content from a theme and optional prompt.
Endpoint
POST
/api/v1/jobsCreate a generate_asmr job
Credits
Cost
175 credits per job.
Input Parameters
Request Body
| Name | Type | Description |
|---|---|---|
workflowrequired | string | "generate_asmr" |
input.themerequired | string | ASMR theme (e.g., 'rain', 'keyboard', 'nature') |
input.prompt | string | Additional description to guide the generation |
webhookUrl | string | URL 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"
}
}