Files
animethemes-api-docs/docs/animetheme/show
paranarimasuandGitHub 57dd7eecd7 fix: update links to production domain (#23)
* fix: update links to production domain

* add missing README change
2022-05-31 20:46:45 -05:00
..

title
title
AnimeTheme Show

AnimeTheme Show Endpoint

The AnimeTheme show endpoint returns an AnimeTheme resource.

For example, the /api/animetheme/3373 endpoint will return the AnimeTheme resource Bakemonogatari OP1.

URL

GET /api/animetheme/{id}

Authentication

None

Parameters

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

Response

{
    animetheme: {
        id: id,
        type: "type",
        sequence: sequence,
        group: "group",
        slug: "slug",
        created_at: "created_at",
        updated_at: "updated_at",
        deleted_at: "deleted_at"
    }
}
```bash curl https://api.animethemes.moe/animetheme/3373 ```