Access millions of images with advanced filtering for AI/LLM training, computer vision, and machine learning projects. JSON/JSONL formats supported.
# Image Search API Example
curl -X GET "https://nestdaddy.com/api/v1/images?q=cats&limit=50&min_width=1024&format=jsonl" \
-H "X-API-Key: YOUR_API_KEY"
# Response (JSONL format - one JSON object per line)
{"image_url":"https://example.com/cat1.jpg","alt_text":"Cute cat","width":1920,"height":1080,"domain":"example.com"}
{"image_url":"https://example.com/cat2.jpg","alt_text":"Cat sleeping","width":1280,"height":720,"domain":"site.com"}
# Advanced filtering
curl -X GET "https://nestdaddy.com/api/v1/images?q=nature&min_width=1920&min_height=1080&country=US&domain=unsplash.com" \
-H "X-API-Key: YOUR_API_KEY"