Overview
Shutterstock is a leading stock media platform, and its API lets you search and license millions of professional photos, videos, and music tracks programmatically. You authenticate with OAuth 2.0 and can integrate media search, licensing, and download workflows directly into your application. It is widely used by creative tools, CMS platforms, and marketing automation products.
Beginner Tip
Use the /v2/images/search endpoint with a simple keyword query to explore available images before attempting OAuth-based licensing. Read access requires only a client_id and client_secret for a client-credentials grant.
Available Data
Example Response
{
"id": "Dwu85P9SOIk",
"urls": {
"full": "https://images.unsplash.com/photo-...",
"regular": "https://images.unsplash.com/photo-...?w=1080",
"thumb": "https://images.unsplash.com/photo-...?w=200"
},
"width": 4000,
"height": 3000,
"user": {
"name": "John Doe",
"username": "johndoe"
}
} Field Reference
data[].id Unique Shutterstock identifier for the image asset. data[].description Short descriptive caption for the image provided by the contributor. data[].assets.preview.url URL to a watermarked low-resolution preview of the image. data[].contributor.id Identifier of the contributor (photographer) who uploaded the image. total_count Total number of images matching the search query across all pages. Implementation Example
const url = "https://api-reference.shutterstock.com/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"Authorization": "Bearer YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Flickr
The Flickr API gives you access to the massive Flickr photo library, letting you search photos, fetch albums, and manage a user's photostream.
Getty Images
The Getty Images API provides programmatic access to one of the largest professional stock photo libraries in the world, with over 480 million images, videos, and illustrations.
Gfycat
Gfycat provides programmatic access to jiffier gifs via REST API.
Google Photos
Google Photos API lets you access, upload, and organize photos and albums stored in a user Google Photos account.
Imgur
⭐ Beginner's PickImgur API lets you upload, manage, and share images and GIFs on the Imgur platform programmatically.