Murf subpackage_dubbing.subpackage_dubbing/jobs API
The subpackage_dubbing.subpackage_dubbing/jobs API from Murf — 3 operation(s) for subpackage_dubbing.subpackage_dubbing/jobs.
The subpackage_dubbing.subpackage_dubbing/jobs API from Murf — 3 operation(s) for subpackage_dubbing.subpackage_dubbing/jobs.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/murf-subpackage-dubbing-subpackage-dubbing-jobs-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Reference subpackage_auth Subpackage Dubbing.subpackage Dubbing/jobs API
version: 1.0.0
servers:
- url: https://api.murf.ai
- url: https://global.api.murf.ai
- url: https://us-east.api.murf.ai
- url: https://us-west.api.murf.ai
- url: https://in.api.murf.ai
- url: https://ca.api.murf.ai
- url: https://kr.api.murf.ai
- url: https://me.api.murf.ai
- url: https://jp.api.murf.ai
- url: https://au.api.murf.ai
- url: https://eu-central.api.murf.ai
- url: https://uk.api.murf.ai
- url: https://sa-east.api.murf.ai
tags:
- name: subpackage_dubbing.subpackage_dubbing/jobs
paths:
/v1/murfdub/jobs/create:
post:
operationId: create
summary: Create
tags:
- subpackage_dubbing.subpackage_dubbing/jobs
parameters:
- name: api-key
in: header
description: Your Dub API key
required: true
schema:
type: string
responses:
'200':
description: Ok
content:
application/json:
schema:
$ref: '#/components/schemas/ApiJobResponse'
'400':
description: Bad Request
content:
application/json:
schema:
description: Any type
'403':
description: Invalid or expired token provided
content:
application/json:
schema:
description: Any type
'500':
description: Internal Server Error
content:
application/json:
schema:
description: Any type
'503':
description: Service Unavailable
content:
application/json:
schema:
description: Any type
requestBody:
content:
multipart/form-data:
schema:
type: object
properties:
file:
type: string
format: binary
description: The file to upload
file_url:
type: string
source_locale:
type: string
description: Source locale
target_locales:
type: array
items:
type: string
description: List of target locales
webhook_url:
type: string
file_name:
type: string
priority:
$ref: '#/components/schemas/V1MurfdubJobsCreatePostRequestBodyContentMultipartFormDataSchemaPriority'
description: 'Priority of the job. Allowed values: LOW, NORMAL, HIGH'
webhook_secret:
type: string
required:
- target_locales
/v1/murfdub/jobs/create-with-project-id:
post:
operationId: create-with-project-id
summary: Create With Project Id
tags:
- subpackage_dubbing.subpackage_dubbing/jobs
parameters:
- name: api-key
in: header
description: Your Dub API key
required: true
schema:
type: string
responses:
'200':
description: Ok
content:
application/json:
schema:
$ref: '#/components/schemas/ApiJobResponse'
'400':
description: Bad Request
content:
application/json:
schema:
description: Any type
'403':
description: Invalid or expired token provided
content:
application/json:
schema:
description: Any type
'500':
description: Internal Server Error
content:
application/json:
schema:
description: Any type
'503':
description: Service Unavailable
content:
application/json:
schema:
description: Any type
requestBody:
content:
multipart/form-data:
schema:
type: object
properties:
file:
type: string
format: binary
description: The file to upload
file_url:
type: string
project_id:
type: string
description: Your Project Id
webhook_url:
type: string
file_name:
type: string
priority:
$ref: '#/components/schemas/V1MurfdubJobsCreateWithProjectIdPostRequestBodyContentMultipartFormDataSchemaPriority'
description: 'Priority of the job. Allowed values: LOW, NORMAL, HIGH'
webhook_secret:
type: string
required:
- project_id
/v1/murfdub/jobs/{job_id}/status:
get:
operationId: get-status
summary: Get Status
tags:
- subpackage_dubbing.subpackage_dubbing/jobs
parameters:
- name: job_id
in: path
required: true
schema:
type: string
- name: api-key
in: header
description: Your Dub API key
required: true
schema:
type: string
responses:
'200':
description: Ok
content:
application/json:
schema:
$ref: '#/components/schemas/DubJobStatusResponse'
'400':
description: Bad Request
content:
application/json:
schema:
description: Any type
'403':
description: Invalid or expired token provided
content:
application/json:
schema:
description: Any type
'500':
description: Internal Server Error
content:
application/json:
schema:
description: Any type
'503':
description: Service Unavailable
content:
application/json:
schema:
description: Any type
components:
schemas:
ApiJobResponsePriority:
type: string
enum:
- LOW
- NORMAL
- HIGH
description: 'Priority of the job. Allowed values: LOW, NORMAL, HIGH'
title: ApiJobResponsePriority
V1MurfdubJobsCreatePostRequestBodyContentMultipartFormDataSchemaPriority:
type: string
enum:
- LOW
- NORMAL
- HIGH
description: 'Priority of the job. Allowed values: LOW, NORMAL, HIGH'
title: V1MurfdubJobsCreatePostRequestBodyContentMultipartFormDataSchemaPriority
DubJobStatusResponse:
type: object
properties:
project_id:
type: string
description: Your Project Id
job_id:
type: string
description: Your Job Id
status:
type: string
description: Your Job Status
download_details:
type: array
items:
$ref: '#/components/schemas/DubApiDetailResponse'
credits_used:
type: integer
format: int64
credits_remaining:
type: integer
format: int64
failure_reason:
type: string
failure_code:
type: string
required:
- job_id
- status
title: DubJobStatusResponse
DubApiDetailResponse:
type: object
properties:
locale:
type: string
status:
type: string
error_message:
type: string
download_url:
type: string
download_srt_url:
type: string
title: DubApiDetailResponse
V1MurfdubJobsCreateWithProjectIdPostRequestBodyContentMultipartFormDataSchemaPriority:
type: string
enum:
- LOW
- NORMAL
- HIGH
description: 'Priority of the job. Allowed values: LOW, NORMAL, HIGH'
title: V1MurfdubJobsCreateWithProjectIdPostRequestBodyContentMultipartFormDataSchemaPriority
ApiJobResponse:
type: object
properties:
file_url:
type: string
dubbing_type:
$ref: '#/components/schemas/ApiJobResponseDubbingType'
description: Dubbing Type
webhook_url:
type: string
file_name:
type: string
description: Your Uploaded File Name
priority:
$ref: '#/components/schemas/ApiJobResponsePriority'
description: 'Priority of the job. Allowed values: LOW, NORMAL, HIGH'
source_locale:
type: string
description: Source locale
job_id:
type: string
description: Your Job Id
target_locales:
type: array
items:
type: string
description: List of target locales
warning:
type: string
required:
- dubbing_type
- file_name
- priority
- job_id
- target_locales
title: ApiJobResponse
ApiJobResponseDubbingType:
type: string
enum:
- AUTOMATED
- QA
description: Dubbing Type
title: ApiJobResponseDubbingType