Versioning

To make use of our API versioning, you need to include the desired version in the Accept-Version header of your API requests. This header allows you to explicitly specify the version of the API you want to interact with, ensuring that your code remains compatible and predictable, even as newer versions become available.

If you do not specify a version, the api will use the latest available, this behaviour may break your app if breaking changes has been released.

The current version of the API isv5.

curl -X GET \
  'https://api.waifu.im/search' \
  -H 'Content-Type: application/json' \
  -H 'Accept-Version: v5'

Last updated