mirror of
https://github.com/AnimeThemes/animethemes-api-docs.git
synced 2026-07-11 01:34:06 +02:00
1.1 KiB
1.1 KiB
title
| title |
|---|
| Entry Show |
Entry Show Endpoint
The entry show endpoint returns an entry resource.
For example, the /api/entry/3822 endpoint will return the second version of the Bakemonogatari ED theme.
URL
GET /api/entry/{id}
```00
## 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
```json
Status: 200
{
entry: {
id: id,
version: version,
episodes: "episodes",
nsfw: nsfw,
spoiler: spoiler,
notes: "notes",
created_at: "created_at",
updated_at: "updated_at",
deleted_at: "deleted_at"
}
}