Files
animethemes-api-docs/docs/resource/show

title
title
Resource Show

Resource Show Endpoint

The resource show endpoint returns an external resource.

For example, the /api/resource/1083 will return the MyAnimeList resource for the Bakemonogatari anime.

URL

GET /api/resource/{id}

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

Status: 200

{
    resource: {
        id: id,
        link: "link",
        external_id: external_id,
        site: "site",
        created_at: "created_at",
        updated_at: "updated_at",
        deleted_at: "deleted_at",
        link: "link"
    }
}
```bash curl https://staging.animethemes.moe/api/resource/1083 ```