Documentation
Characters
Search for a Character

Search for a Character

This endpoint allows you to search for a character, filtering by name, aliases, description, etc.

Endpoint Details

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

Parameters

LocationNameTypeDescriptionRequired
QuerysearchStringSearch term. Will return all characters with this term(s) in their name, aliases, or description.No
QueryageIntegerOne or more of the character's (official) ages.No
QuerygenderStringThe character's gender.No
QueryspeciesStringThe character's species.No
QuerynationalityStringThe character's nationality.No
QueryoccupationStringOne or more of the character's occupations.No
QuerylimitInteger [1..100]The amount of characters to return.No
QueryoffsetIntegerThe amount of characters to skip.No

Example Request

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