All of macOSicons.com a simple API call away.
25,000+ macOS app icons at your fingertips.
Each pattern below maps to a common endpoint call and the response fields you would typically render.
Call POST /api/v1/search as users type, then render appName + lowResPngUrl in the suggestion dropdown.
Index tools by category and display category, credit, and creditUrl from the search payload on each app card.
Fetch an icon once during build and embed icnsUrl or iOSUrl in generated markdown/docs for release notes.
On deploy, query the app name and attach lowResPngUrl in bot messages so changelog posts include app visuals.
One curl command away from thousands of icons
curl -X POST 'https://api.macosicons.com/api/v1/search' \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{"query": "Safari"}'
# Response
{
"hits": [
{
"appName": "Safari",
"lowResPngUrl": "https://...",
"icnsUrl": "https://...",
"iOSUrl": "https://...",
"category": "Browser",
"credit": "Elías",
"creditUrl": "https://...",
"downloads": 7523
}...
],
"query": "Safari",
"totalHits": 42,
"limit": 10,
"offset": 0,
"page": 1,
"totalPages": 4,
}Sign in to get instant access to your dashboard and API keys
Please sign in to your macOSicons.com account