# AudioStack Documentation > AudioStack is the world's leading infrastructure for scalable, AI-powered audio production. ## Guides - [Concepts](https://docs.audiostack.ai/docs/concepts-1.md): Learn more about the core concepts underlying AudioStack API and the way it is architected. - [Audioform](https://docs.audiostack.ai/docs/audioform.md): What is Audioform? - [Audioform Format](https://docs.audiostack.ai/docs/audioform-format.md) - [Audioform Service](https://docs.audiostack.ai/docs/audioform-service.md): Describes the service built on the Audioform format - [BETA: Story](https://docs.audiostack.ai/docs/story.md): This page is a guide to the “story” endpoint that enables you to create large scale productions of rich longform content. - [Libraries](https://docs.audiostack.ai/docs/libraries.md): Leverage our libraries, the building blocks to create amazing audio! - [Voice library](https://docs.audiostack.ai/docs/voice-library-1.md): The voice library lists all the voices available to you for use in Audioform - [Sound template library](https://docs.audiostack.ai/docs/sound-template-library.md): Library of sound bed for your production - [AudioStack API](https://docs.audiostack.ai/docs/audiostack-api.md) - [Security](https://docs.audiostack.ai/docs/security.md) - [Reliability and Data Hosting](https://docs.audiostack.ai/docs/reliability-and-slas.md) - [Create an Account](https://docs.audiostack.ai/docs/create-an-account.md): Set up your account for the first time with AudioStack - [Contact Us](https://docs.audiostack.ai/docs/contact-the-audiostack-team.md) ## API Reference - [🔑 Authentication](https://docs.audiostack.ai/reference/authentication.md) - [Check health of the AudiostackAPI and your authentication](https://docs.audiostack.ai/reference/gethealth.md): Returns a 200 status code if the API is healthy and your authentication is working. - [Request to build an Audioform](https://docs.audiostack.ai/reference/process_request__post.md): This endpoint validates the audioform and then starts building it in the background. If the audioform is valid enough to warrant starting a background job, it will return a `202` status code with the `audioformID`. Call then the GET endpoint with the `audioformID` to get the result of the build. - [Return the result of an Audioform build](https://docs.audiostack.ai/reference/process_result__audioform_id__get.md): This endpoint returns the audioform if it is ready, otherwise it returns a `202` in progress status code. - [BETA - Create a batch of audioforms](https://docs.audiostack.ai/reference/create_batch_batches_post.md): **BETA**: THIS ENDPOINT IS EXPERIMENTAL AND SUBJECT TO CHANGE. Audioform batches enable the submission of up to 1000 audioforms in a single request. The whole batch is validated as a single unit to catch detectable errors. Once validated, the batch is then processed in parallel. The batch progress can be tracked by via a single batch ID so the user does not need to track 1000s of individual audioform IDs. Accepts an array of batch `items` (name + audioform) to be processed in parallel as a batch. - [BETA - Get the current status of an audioform batch](https://docs.audiostack.ai/reference/get_batch_batches__batch_id__get.md): **BETA**: THIS ENDPOINT IS EXPERIMENTAL AND SUBJECT TO CHANGE. Returns the status of a batch of audioforms. - [Submit a brief to drive AI-assisted ad creation](https://docs.audiostack.ai/reference/postcreativebrief.md): Accepts a creative brief that defines a desired set out of output adverts with user-specified degrees of AI support. - [BETA - Submit a story to drive AI-assisted creation of longform audio content](https://docs.audiostack.ai/reference/poststory.md): **BETA**: THIS ENDPOINT IS EXPERIMENTAL AND SUBJECT TO CHANGE. Submits a story creation job. Accepts a `story` object that defines a complex audio narrative (podcasts, audiobooks, news bulletins, and other longform content). The response returns a `storyId`; use the GET `/creator/story/{storyId}` endpoint with this id to poll until the job completes. - [BETA - Retrieve the status and results of a previously submitted story creation request](https://docs.audiostack.ai/reference/getstory.md): **BETA**: THIS ENDPOINT IS EXPERIMENTAL AND SUBJECT TO CHANGE. Use this endpoint to check the current status and obtain results for a story creation job using its `storyId` from a previous request to POST /creator/story. - [Get File](https://docs.audiostack.ai/reference/get_file_files__fileid__get.md) - [Patch File](https://docs.audiostack.ai/reference/patch_file_files__fileid__patch.md) - [Delete File By Id](https://docs.audiostack.ai/reference/delete_file_by_id_files__fileid__delete.md) - [Upload File](https://docs.audiostack.ai/reference/upload_file_files_post.md) - [Copy File to a new folder](https://docs.audiostack.ai/reference/copy_file_files_copy_put.md) - [Get File Categories](https://docs.audiostack.ai/reference/get_file_categories_files_file_categories_get.md) - [Get usage in a date range](https://docs.audiostack.ai/reference/getanalyticsusage.md): Returns usage information between the specified start and end dates inclusive. Usage metrics are: - Total number of audioforms created - Total seconds of production audio created Both dates must be valid and not in the future. The end date must be equal to or after the start date. - [Search AudioStack's voice library for the right voice(s) for your audio.](https://docs.audiostack.ai/reference/postvoicesquery.md): Enables you to search AudioStack's voice library from the API in a similar way to how you would on the front end. You can provide a search string e.g. "serious" You can defined a complex filter to narrow down the results such as: Find all matches for * `female` voices only * `english` language only * `american`, `irish` and `australian` accents only - [Search AudioStack's music library for the right music for your audio.](https://docs.audiostack.ai/reference/postsoundtemplatesquery.md): Enables you to search AudioStack's music library from the API in a similar way to how you would on the front end. You can provide a search string e.g. "christmas" You can defined a complex filter to narrow down the results such as: Find all matches for * `classical` or `blues` genre * include `bells` in the instrument * BPM greater than or equal to `95` - [Search AudioStack's sound effect library for the right sound effect(s) for your audio.](https://docs.audiostack.ai/reference/postsoundeffectsquery.md): Enables you to search AudioStack's sound effects library from the API in a similar way to how you would on the front end. You can provide a search string e.g. "footsteps" You can define a complex filter to narrow down the results such as: Find all matches for * `oneShot` sound effect types * the `FIREWORKS` category * duration less than or equal to `10` ## Recipes - [BETA: Building longform audio with the story endpoint SDK](https://docs.audiostack.ai/recipes/beta-building-longform-audio-with-story-endpoint-sdk.md) - [BETA: Building longform audio with the story endpoint - getting AI-recommended one-shot sound effects](https://docs.audiostack.ai/recipes/beta-building-longform-audio-with-the-story-endpoint-getting-ai-recommended-one-shot-sound-effects.md) - [BETA: Building longform audio with the story endpoint - adding music](https://docs.audiostack.ai/recipes/beta-buildling-longform-audio-with-the-story-endpoint-adding-music.md) - [BETA: Building longform audio with the story endpoint - adding uploaded SFX](https://docs.audiostack.ai/recipes/beta-buildling-longform-audio-with-the-story-endpoint-adding-uploaded-sfx.md) - [BETA: Building longform audio with the story endpoint - single voice](https://docs.audiostack.ai/recipes/beta-buildling-longform-audio-with-the-story-endpoint.md) - [BETA: Building longform audio with the story endpoint - multi-voice stories](https://docs.audiostack.ai/recipes/beta.md) - [Create an ad instantly with AI - finding the perfect music](https://docs.audiostack.ai/recipes/create-an-ad-instantly-with-ai-finding-the-perfect-music.md) - [Create an ad instantly with AI - finding the perfect voice](https://docs.audiostack.ai/recipes/create-an-ad-instantly-with-ai-finding-the-perfect-voice.md) - [Create multiple version of audio](https://docs.audiostack.ai/recipes/create-multiple-version-of-audio.md) - [Create an ad instantly with AI!](https://docs.audiostack.ai/recipes/from-product-brief-to-a-30-second-ad.md) - [Generate your first audio](https://docs.audiostack.ai/recipes/generate-your-first-audio.md) ## Changelog - [4th August 2026 - Audioform v5: new mixing and loudness presets](https://docs.audiostack.ai/changelog/audioform-v5-new-mixing-and-loudness-presets.md) - [3rd August 2026 - Legacy API deprecation notice](https://docs.audiostack.ai/changelog/3rd-august-2026-legacy-api-deprecation-notice.md) - [28th July 2026 - Legacy voice cleanup](https://docs.audiostack.ai/changelog/28th-july-2026-legacy-voice-cleanup.md) - [7th July 2026 - AI content metadata now embedded in Audioform output](https://docs.audiostack.ai/changelog/ai-content-metadata-now-embedded-in-audioform-output.md) - [30th April 2026 - Legacy API deprecation notice](https://docs.audiostack.ai/changelog/30th-april-2026-legacy-api-deprecation-notice.md) - [22nd April 2026 - Create an Ad deprecation notice](https://docs.audiostack.ai/changelog/22nd-april-2026-create-an-ad-deprecation-notice.md) - [20th Apr 2026 - Pro Editor update](https://docs.audiostack.ai/changelog/20th-apr-2026-pro-editor-update.md) - [15th Apr 2026 - Maintenance of the Audioform endpoint](https://docs.audiostack.ai/changelog/15th-apr-2026-maintenance-of-the-audioform-endpoint.md) - [12th Mar 2026 - Planned Maintenance Window](https://docs.audiostack.ai/changelog/12th-mar-2026-planned-maintenance-window.md) - [4th Feb 2026 - Planned Maintenance Window this Saturday](https://docs.audiostack.ai/changelog/4th-feb-2025-planned-maintenance-window-this-saturday.md)