mirror of
https://github.com/AnimeThemes/animethemes-api-docs.git
synced 2026-07-11 01:34:06 +02:00
50 lines
1.1 KiB
Markdown
50 lines
1.1 KiB
Markdown
---
|
|
title: Anime Synonym Show
|
|
---
|
|
|
|
# Anime Synonym Show Endpoint
|
|
|
|
The anime synonym show endpoint returns an anime synonym resource.
|
|
|
|
For example, the `/animesynonym/1523` endpoint will return the Monstory synonym for the anime Bakemonogatari.
|
|
|
|
## URL
|
|
|
|
```sh
|
|
GET /animesynonym/{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
|
|
|
|
```json
|
|
{
|
|
animesynonym: {
|
|
id: id,
|
|
text: "text",
|
|
type: "type",
|
|
created_at: "created_at",
|
|
updated_at: "updated_at",
|
|
deleted_at: "deleted_at"
|
|
}
|
|
}
|
|
```
|
|
|
|
## Example
|
|
|
|
```bash
|
|
curl https://api.animethemes.moe/animesynonym/1523
|
|
```
|