Overview
Iconfinder (now served through the Freepik API) gives access to a massive library of icons and vector graphics you can search, filter by style, and download in various formats. Designers and developers use it to find consistent icons for UI projects without needing a subscription to individual icon packs. An API key is required.
Beginner Tip
Get a Freepik API key at https://freepik.com/api to access the icons endpoint. Use the search endpoint with a keyword like "home" to browse available icons before downloading.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Iconfinder",
"description": "Icons",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
data[].id Unique icon identifier used to download or reference the asset data[].name Descriptive name of the icon data[].thumbnails[0].url URL to a small preview image of the icon data[].type Asset type such as "icon" or "sticker" meta.pagination.total Total number of icons matching your search query Implementation Example
const url = "https://developer.iconfinder.com/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "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 →Améthyste
Améthyste provides programmatic access to generate images for discord users via REST API.
Cooper Hewitt
Cooper Hewitt provides programmatic access to smithsonian design museum via REST API.
Europeana
Europeana searches digitized artworks, books, music, and videos from 3,000+ European cultural institutions.
Harvard Art Museums
Harvard Art Museums exposes 250,000+ artworks, artists, and exhibition records with high-res images.
Rijksmuseum
Rijksmuseum provides programmatic access to rijksmuseum data via REST API.