π Introducing MARS8 Series β Four Powerful Variants | Available on All Major Clouds | Learn about the model here
π Introducing MARS8 Series β Four Powerful Variants | Available on All Major Clouds | Learn about the model here
This endpoint empowers you to build custom pronunciation and terminology dictionaries by uploading structured data files directly into your CAMB.AI workspace.
curl --request POST \
--url https://client.camb.ai/apis/dictionaries/create-from-file \
--header 'Content-Type: multipart/form-data' \
--header 'x-api-key: <api-key>' \
--form dictionary_file='@example-file' \
--form 'dictionary_name=<string>' \
--form 'dictionary_description=<string>'{
"message": "<string>",
"status": "<string>"
}What makes this file-based approach particularly valuable is its ability to scale dictionary creation efficiently. Rather than manually entering individual terms one by one, you can prepare comprehensive terminology collections offline using tools your team already knows, then upload complete dictionaries in a single operation. This batch approach becomes essential when working with specialized vocabularies, client-specific terminology, or industry jargon that requires precise handling across multiple audio processing tasks.Documentation Index
Fetch the complete documentation index at: https://docs.camb.ai/llms.txt
Use this file to discover all available pages before exploring further.
The x-api-key is a custom header required for authenticating requests to our API. Include this header in your request with the appropriate API key value to securely access our endpoints. You can find your API key(s) in the 'API' section of our studio website.
CSV or Excel Sheet Matching the required structure for a dictionary.
The name of the dictionary to be created. This is mainly used for organizational purposes.
100The description of the dictionary to be created. This is an optional field that is used to help you provide some info about your dictionaries for better organization.
1000Successful Response
A 201 status code indicates that your dictionary was created successfully and all terminology content from your uploaded file was processed and integrated into the CAMB.AI system. This represents the ideal outcome where file parsing, content validation, and dictionary population all completed without issues, resulting in a fully functional dictionary ready for immediate use across your audio processing tasks.
Human-readable feedback that communicates the outcome of the dictionary operation with actionable context for your application users. This message provides essential information about operation success, partial completion scenarios, or guidance for addressing any issues that occurred during processing.
Standardized operation outcome indicator that enables programmatic response handling across all dictionary management workflows. This status field provides consistent, machine-readable confirmation of operation results, allowing your application logic to branch appropriately between success scenarios, partial completion cases, and error conditions.
curl --request POST \
--url https://client.camb.ai/apis/dictionaries/create-from-file \
--header 'Content-Type: multipart/form-data' \
--header 'x-api-key: <api-key>' \
--form dictionary_file='@example-file' \
--form 'dictionary_name=<string>' \
--form 'dictionary_description=<string>'{
"message": "<string>",
"status": "<string>"
}