Documentation
Artists
Search for an Artist

Search for an Artist

This endpoint allows you to search for an artist, filtering by name, aliases, policies, etc.

Endpoint Details

  • URL: /v3/artists
  • Method: GET
  • Response: JSON

Parameters

LocationNameTypeDescriptionRequired
QuerysearchStringSearch term. Will return all artists with this term(s) in their name or aliases.No
Querypolicy_repostBooleanWhether the artist allows their art to be reposted or not.No
Querypolicy_creditBooleanWhether the artist requires you to credit them when using their art or notNo
Querypolicy_aiBooleanWhether the artist allows the use of their art for AI training or notNo
QuerylimitInteger [1..100]The amount of artists to return.No
QueryoffsetIntegerThe amount of artists to skip.No

Example Request

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