mirror of
https://github.com/AnimeThemes/animethemes-api-docs.git
synced 2026-07-25 00:14:00 +02:00
2.3 KiB
2.3 KiB
title
| title |
|---|
| Audio |
Audio
An audio API resource represents the audio track of a video.
For example, the audio Bakemonogatari-OP1.ogg represents the audio track of the Bakemonogatari-OP1.webm video.
Fields
| Name | Type | Nullable | Default | Description |
|---|---|---|---|---|
| id | Integer | No | Yes | The primary key of the resource |
| basename | String | No | Yes | The basename of the file in storage |
| filename | String | No | Yes | The filename of the file in storage |
| path | String | No | Yes | The path of the file in storage |
| size | Integer | No | Yes | The size of the file in storage in Bytes |
| mimetype | String | No | No | The media type of the file in storage |
| created_at | Date | No | No | The date that the resource was created |
| updated_at | Date | No | No | The date that the resource was last modified |
| deleted_at | Date | Yes | No | The date that the resource was deleted |
| link | String | No | Yes | The URL to stream the file from storage |
| views_count | Integer | No | No | The number of views recorded for the resource |
Allowed Include Paths
- videos
Endpoints
The audio destroy endpoint soft deletes an audio and returns the deleted audio resource.
The audio force delete endpoint hard deletes an audio and returns a confirmation message.
The audio index endpoint displays a listing of audio resources.
The audio restore endpoint restores a soft deleted audio and returns the restored audio resource.
The audio show endpoint returns an audio resource.
The audio store endpoint creates a new audio and returns the new audio resource.
The audio update endpoint updates an audio and returns the updated audio resource.