← Back to APIs

Image Search API

Access millions of images with advanced filtering for AI/LLM training, computer vision, and machine learning projects. JSON/JSONL formats supported.

Simple, Predictable Pricing

Free Trial
$0
7 days
7 days full access
Start Free Trial
Starter
$19.99
per month
30,000 API calls/month
Subscribe Now
Growth
$49.99
per month
100,000 API calls/month
Subscribe Now
Pro
$99.99
per month
500,000 API calls/month
Subscribe Now
Millions of Images
Access our vast database of high-quality images with metadata including dimensions, alt text, and source information.
Advanced Filtering
Filter by dimensions, domain, country, and search queries. Perfect for creating curated datasets.
Multiple Formats
Get results in JSON or JSONL format. JSONL is perfect for streaming large datasets for machine learning.
High Performance
Built on RocksDB for lightning-fast search and retrieval. Optimized for bulk data access.
# 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"

API Parameters