Files
animethemes-api-docs/docs/video/show

title
title
Video Show

Video Show Endpoint

The video show endpoint returns a video resource.

For example, /api/video/Bakemonogatari-OP1.webm endpoint will return the video for the Bakemonogatari OP1 theme.

URL

GET /api/video/{basename}

Parameters

Name Required Description
fields No Sparse fieldsets for resource types
include No Inclusion of related resources
filter No Filters to constrain the inclusion of related resources

Response

{
    video: {
        id: id,
        basename: "basename",
        filename: "filename",
        path: "path",
        size: size,
        mimetype: "mimetype",
        resolution: resolution,
        nc: nc,
        subbed: subbed,
        lyrics: lyrics,
        uncen: uncen,
        source: "source",
        overlap: "overlap",
        created_at: "created_at",
        updated_at: "updated_at",
        deleted_at: "deleted_at",
        tags: "tags",
        link: "link"
    }
}
```bash curl https://staging.animethemes.moe/api/video/Bakemonogatari-OP1.webm ```