Guide

Quickstart

Make an authenticated request, verify your account, and then browse the resources available to your API key.

1. Set the base URL

All current endpoints live under the v2 API path.

https://dev.niftyimages.com/v2

2. Send your API key

Use Bearer authentication for every API request.

Authorization: Bearer $NIFTYIMAGES_API_KEY

3. Verify the key

curl https://dev.niftyimages.com/v2/whoami \
  -H "Authorization: Bearer $NIFTYIMAGES_API_KEY"

4. Browse images

curl "https://dev.niftyimages.com/v2/images?limit=10" \
  -H "Authorization: Bearer $NIFTYIMAGES_API_KEY"
Use the API Reference to paste a key, make live calls, and inspect responses directly in the browser.