Icons as a
Service

All of macOSicons.com a simple API call away.

Browse 25k+ App Icons
Free50 monthly requests
4.99€1,000 monthly requests
Scroll to explore
Use cases

Concrete implementation examples

Each pattern below maps to a common endpoint call and the response fields you would typically render.

Search autocomplete results

Call POST /api/v1/search as users type, then render appName + lowResPngUrl in the suggestion dropdown.

Internal software catalog pages

Index tools by category and display category, credit, and creditUrl from the search payload on each app card.

CLI and docs generators

Fetch an icon once during build and embed icnsUrl or iOSUrl in generated markdown/docs for release notes.

Slack/Discord release bots

On deploy, query the app name and attach lowResPngUrl in bot messages so changelog posts include app visuals.

Copy, paste, ship

Get started in 30 seconds

One curl command away from thousands of icons

terminal
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,
}
Launch in minutes

Your API key is waiting

Sign in to get instant access to your dashboard and API keys

macOSicons API

Please sign in to your macOSicons.com account

Don't have an account?