Files
animethemes-api-docs/docs/image/show/README.md
T
2022-06-30 15:42:51 -05:00

1.1 KiB

title
title
Image Show

Image Show Endpoint

The image show endpoint returns an image resource.

For example, /image/435 endpoint will return the large cover image for the Bakemonogatari anime.

URL

GET /image/{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

{
    image: {
        id: id,
        path: "path",
        size: size,
        mimetype: "mimetype",
        facet: "facet",
        created_at: "created_at",
        updated_at: "updated_at",
        deleted_at: "deleted_at",
        link: "link"
    }
}
```bash curl https://api.animethemes.moe/image/435 ```