> ## Documentation Index
> Fetch the complete documentation index at: https://docs.magnific.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get detailed sound effect information by ID

> Retrieve full details for a sound effect including category hierarchy, tags, duration, popularity, and download statistics.

Retrieve full details for a sound effect including category hierarchy, tags, duration, popularity, and download statistics. See the [Sound Effects API overview](/api-reference/sfx/overview) for authentication and usage guidance.


## OpenAPI

````yaml get /v1/sound-effects/{sfx-id}
openapi: 3.0.0
info:
  description: >-
    The Magnific API is your gateway to a vast collection of high-quality
    digital resources for your applications and projects. As a leading platform,
    it offers a wide range of graphics, including vectors, photos,
    illustrations, icons, PSD templates, and more, all curated by talented
    designers from around the world.
  title: Magnific API
  version: 1.0.0
servers:
  - description: B2B API Production V1
    url: https://api.magnific.com
security:
  - magnificApiKey: []
paths:
  /v1/sound-effects/{sfx-id}:
    get:
      tags:
        - Sound Effects
      summary: Get detailed sound effect information by ID
      description: >-
        Retrieve full details for a sound effect including category hierarchy,
        tags, duration, popularity, and download statistics.
      operationId: get_sound_effect_detail
      parameters:
        - description: Unique numeric identifier of the sound effect
          example: 1
          in: path
          name: sfx-id
          required: true
          schema:
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SfxDetail'
          description: OK
        '401':
          content:
            application/json:
              examples:
                invalid_api_key:
                  summary: API key is not valid
                  value:
                    message: Invalid API key
                missing_api_key:
                  summary: API key is not provided
                  value:
                    message: Missing API key
              schema:
                $ref: '#/components/schemas/get_all_style_transfer_tasks_400_response'
          description: >-
            Unauthorized - The client must authenticate itself to get the
            requested response.
        '404':
          content:
            application/json:
              examples:
                ai_resource_not_found:
                  summary: AI resource with provided id does not exist
                  value:
                    message: AI resource not found
                collection_not_found:
                  summary: Collection with provided id does not exist
                  value:
                    message: Collection not found
                resource_not_found:
                  summary: Resource with provided id does not exist
                  value:
                    message: Resource not found
                resources_not_found:
                  summary: Resources not found
                  value:
                    message: Resources not found
                user_not_found:
                  summary: User with provided id does not exist
                  value:
                    message: User not found
                video_not_found:
                  summary: Video with provided id does not exist
                  value:
                    message: Video not found
                video_assets_not_found:
                  summary: Video with provided id has not associated assets
                  value:
                    message: Video not found
                icon_not_found:
                  summary: Icon with provided id does not exist
                  value:
                    message: Icon not found
                author_not_found:
                  summary: Author with provided id does not exist
                  value:
                    message: Author not found
                developer_not_found:
                  summary: Developer with provided email does not exist
                  value:
                    message: Developer not found
                country_not_found:
                  summary: Country with provided code does not exist
                  value:
                    message: Country not found
                generic_not_found:
                  summary: Not Found
                  value:
                    message: Not found
              schema:
                $ref: '#/components/schemas/get_all_style_transfer_tasks_400_response'
          description: Not Found - The server can not find the requested resource.
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/get_all_style_transfer_tasks_500_response'
          description: >-
            Internal Server Error - The server has encountered a situation it
            doesn't know how to handle.
components:
  schemas:
    SfxDetail:
      description: Full details of a sound effect
      example:
        id: 1
        title: Thunder Rumble
        tags:
          - thunder
          - storm
          - weather
        category:
          id: 5
          name: Weather
          parent:
            id: 1
            name: Nature
        duration: 5.2
        is_premium: true
        popularity: 72
        download_count: 580
        file_url: file_url
        created_at: '2000-01-23T04:56:07.000Z'
      properties:
        id:
          description: Unique identifier of the sound effect
          example: 1
          type: integer
        title:
          description: Sound effect title
          example: Thunder Rumble
          type: string
        tags:
          description: Tags associated with the sound effect
          example:
            - thunder
            - storm
            - weather
          items:
            type: string
          type: array
        category:
          $ref: '#/components/schemas/SfxCategory'
        duration:
          description: Duration in seconds
          example: 5.2
          format: float
          type: number
        is_premium:
          description: Whether the sound effect is premium
          type: boolean
        popularity:
          description: Popularity score
          example: 72
          type: integer
        download_count:
          description: Total number of downloads
          example: 580
          type: integer
        file_url:
          description: Direct CDN URL to the audio file
          nullable: true
          type: string
        created_at:
          description: Creation timestamp
          format: date-time
          type: string
      required:
        - id
        - title
      type: object
    get_all_style_transfer_tasks_400_response:
      example:
        message: message
      properties:
        message:
          type: string
      type: object
    get_all_style_transfer_tasks_500_response:
      example:
        message: Internal Server Error
      properties:
        message:
          example: Internal Server Error
          type: string
      type: object
    SfxCategory:
      description: Category of the sound effect, with optional parent category
      example:
        id: 5
        name: Weather
        parent:
          id: 1
          name: Nature
      properties:
        id:
          description: Category identifier
          example: 5
          type: integer
        name:
          description: Category name
          example: Weather
          type: string
        parent:
          $ref: '#/components/schemas/SfxCategory_parent'
      required:
        - id
        - name
      type: object
    SfxCategory_parent:
      description: Parent category, if this is a subcategory
      example:
        id: 1
        name: Nature
      nullable: true
      properties:
        id:
          example: 1
          type: integer
        name:
          example: Nature
          type: string
      required:
        - id
        - name
      type: object
  securitySchemes:
    magnificApiKey:
      description: >
        Your Magnific API key. Required for authentication. [Learn how to obtain
        an API key](https://docs.magnific.com/quickstart)
      in: header
      name: x-magnific-api-key
      type: apiKey

````