Documentation
Artists
Get an Artist by ID

Get an Artist by ID

This endpoint allows you to get an artist by its ID.

Endpoint Details

  • URL: /v3/artists/{id}
  • Method: GET
  • Response: JSON

Parameters

LocationNameTypeDescriptionRequired
PathidIntegerThe artist's IDYes

Example Request

artist_details.py
import requests
 
res = requests.get(f"https://api.nekosapi.com/v3/artists/{artist_id}")
res.raise_for_status()
 
data = res.json()