mirror of
https://github.com/AnimeThemes/animethemes-api-docs.git
synced 2026-09-04 11:45:26 +02:00
title
| title |
|---|
| Artist Show |
Artist Show Endpoint
The artist show endpoint returns an artist resource.
For example, the /api/artist/chiwa_saito endpoint will return the artist resource for the artist Chiwa Saito.
URL
GET /api/artist/{slug}
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
{
artist: {
id: id,
name: "name",
slug: "slug",
created_at: "created_at",
updated_at: "updated_at",
deleted_at: "deleted_at"
}
}