NAV

Overview

All API access is performed over HTTPS and accessed from the api.iconfinder.com domain. The API version 3.0 is accessed under the v3/ subpath. This means that the full base path of all the REST API 3.0 endpoints is https://api.iconfinder.com/v3/, although throughout the documentation this is shortened to /v3/.

Usage of the Iconfinder API version 3.0 is subject to the API terms of service.

Data transmission

$ curl -i https://api.iconfinder.com/v3/

HTTP/1.1 200 OK
Server: nginx
Date: Mon, 21 Apr 2014 13:26:48 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
X-RateLimit-Limit: 5000
X-RateLimit-Remaining: 4999
Content-Length: 194

All data is sent as UTF-8 encoded JSON identified by the media type application/json.

Data types

Blank fields, ie. fields whose value would be a JSON null, are omitted to keep the response size to a minimum. All timestamps are returned as strings in the ISO 8601 format of arbitrary precision guaranteed to be in UTC:

<YYYY>-<MM>-<DD>T<HH>:<MM>:<SS>Z

<YYYY>-<MM>-<DD>T<HH>:<MM>:<SS>.<mmm>Z

Summaries and detailed representations

Depending on the endpoint used, either a summary or a detailed representation of a resource will be returned. Generally, listing and search endpoints such as /v3/iconsets will return summaries while resource specific endpoints such as /v3/iconsets/ will return a detailed representation.

While the levels of detail in the representations differ, detailed representations are guaranteed to at least contain the same information in the same structure as summary representations.

Errors

HTTP/1.1 404 Not Found
Date: Mon, 21 Apr 2014 13:26:48 GMT
Content-Type: application/json; charset=utf-8
{
    "code": "not_found",
    "message": "Not found"
}

If an error occurs, the API will respond with the appropriate HTTP status code and an error message object which contains an error code and a humanly readable message.

List of error codes

Error code HTTP status code Meaning
bad_request 400 Bad Request The request was malformed.
invalid_<parameter> 400 Bad Request The request was malformed. The query parameter parameter contains an invalid value.
unauthorized 401 Unauthorized Invalid credentials were used to authenticate the request.
permission_denied 403 Forbidden Permission to the requested resource was denied. This often means that a request should have been authenticated but wasn’t. dispatched to clean up the mess immediately!
insufficient_permissions 403 Forbidden The authentication used does not have the required permissions to access the requested resource. Make sure the authentication was performed with the necessary scope.
not_purchased 403 Forbidden The premium resource you’re trying to access has not been purchased by the authenticated user.
not_found 404 Not Found The requested resource does not exist or is not publicly available.
rate_limit_exceeded 429 Too Many Requests API request rate limit exceeded. See rate limiting.

HTTP request methods

Where possible, the Iconfinder REST API strives to use appropriate HTTP methods for each action:

Method Action
HEAD Retrieve HTTP header information for one or more resources. Do not rely on this information between requests.
GET Retrieve one or more resources.
POST Create a resource or perform a custom action.
PATCH Partially update a resource.
PUT Completely replace a resource.
DELETE Delete a resource.

HTTP status codes

The following status codes will be sent from the Iconfinder REST API:

Status code Meaning
200 OK Indicates that a request completed successfully and the response contains data.
304 Not Modified The requested resource has not been modified.
400 Bad Request Client request error as described above.
401 Unauthorized Error indicating that the request was performed with invalid or no authorization information.
403 Forbidden Error indicating that the requesting user has a valid set of credentials but does not have access to the given resource.
404 Not Found Error indicating that the requested resource was not found or, alternatively, is not publicly available.

Pagination

The Iconfinder API version 3.0 uses two different methods of pagination for listing resources. Endpoints with deterministic ordering rely on the last received resource for pagination using the after parameter, while non-deterministic endpoints use the more traditional offset query parameter. See /v3/iconsets and /v3/icons/search respectively for details.

Rate limiting

The Iconfinder API version 3.0 employs strict rate limiting depending on the authentication method. For OAuth 2.0 authenticated requests, you can make up to 5,000 requests per hour for each authorized user.

Not all requests count towards your request rate. Using conditional requests to ease the load on Iconfinder’s servers will only count towards your request rate if a resource has changed.

All responses from the API contain information about the current state of rate limiting.

$ curl -i https://api.iconfinder.com/v3/iconsets

HTTP/1.1 200 OK
Date: Mon, 21 Apr 2014 13:26:48 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
X-RateLimit-Limit: 15
X-RateLimit-Remaining: 14
X-RateLimit-Reset: Mon, 21 Apr 2014 13:27:48 GMT

The special X-RateLimit- headers have the following meaning:

Header name Description
X-RateLimit-Limit Current rate limit for the authentication method used.
X-RateLimit-Remaining Requests remaining until rate limit is reached.
X-RateLimit-Reset Time at which the request counter is reset.

Hitting the wall

If you exceed the request rate limit, the Iconfinder API will return a 429 Too Many Requests response code with the following content:

$ curl -i https://api.iconfinder.com/v3/iconsets

HTTP/1.1 429 Too Many Requests
Date: Mon, 21 Apr 2014 13:27:04 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
X-RateLimit-Limit: 15
X-RateLimit-Remaining: 0
X-RateLimit-Reset: Mon, 21 Apr 2014 13:27:48 GMT
{
    "code": "rate_limit_exceeded",
    "message": "API rate limit exceeded"
}

If you need a higher rate limit, please contact support with details about your use case.

$ curl -i https://api.iconfinder.com/v3/iconsets?client_id=x&client_secret=y

HTTP/1.1 200 OK
Date: Mon, 21 Apr 2014 13:26:48 GMT
Content-Type: application/json; charset=utf-8
Connection: keep-alive
X-RateLimit-Limit: 5000
X-RateLimit-Remaining: 4999
X-RateLimit-Reset: Mon, 21 Apr 2014 13:27:48 GMT

Conditional requests

Most API version 3.0 endpoints expose a modification time of resources in the Last-Modified header. The modification time can be used in subsequent requests to the same endpoints using the If-Modified-Since conditional header. If the resource has not been modified between requests, the response status code will be 304 Not Modified.

It is heavily encouraged that server-to-server communications cache responses and use the conditional request mechanisms to reduce the load on the Iconfinder API servers.

Cross Origin Resource Sharing (CORS)

The Iconfinder API version 3.0 supports Cross Origin Resource Sharing (CORS) for AJAX requests, independent of the request origin.

$ curl -i https://api.iconfinder.com/v3/iconsets

HTTP/1.1 200 OK
Access-Control-Allow-Origin: *
Access-Control-Allow-Methods: GET, HEAD, POST, OPTIONS
Access-Control-Expose-Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset

Cross-domain policy

For usage in Flash based applications, the Iconfinder API has a cross-domain policy file allowing full access over HTTPS. See https://api.iconfinder.com/crossdomain.xml for details.

Authentication

The Iconfinder API 3.0 offers both a public and a private part of the API. The public part includes the basic functionality, one would experience as a user of Iconfinder without being logged in. The private part of the API includes access to user information, purchases etc. depending on the authorization scope.

There are currently two ways to authenticate. Using a JSON Web Token or using authorization code. Using the web token will allow you to hide the API access from your users - this will require that your account is on an API subscription plan. The authorization code approach lets your users authenticate using their own Iconfinder accounts.

In order to use OAuth 2.0, you need to register an API application, which will be assigned a unique client ID and client secret.

Once you have registered your application, you need to authorize users to be able to access the Iconfinder API version 3.0 as the specific user. The authorization flow between your application and Iconfinder depends on the type of application you’re developing.

JSON Web Token

JSON Web Tokens (JWT) are a standard way of representing security claims between your application and Iconfinder API. A JWT token is simply a signed JSON object which contains information which enables the receiver to authenticate the sender of the request. For more documentation about JWT, see the JWT documentation

Based on an example of a JavaScript based application that makes requests to the Iconfinder API, the sequence diagram will be following:

Sequence diagram

Generate token server-side

Requesting a new token requires a server-side script that uses the client ID and secret. We have created an example application in Node.js that can be used as a foundation for your implementation, or even deploy directly on Heroku.

Getting a client ID and secret

To generate new tokens you need client ID and secret. You can get these by creating a new API application.

Supported browsers

Authenticating using web tokens requires Cross-Origin Resource Sharing (CORS). To see which users support CORS, please see: http://caniuse.com/#feat=cors

Please find more information for Internet Explorer support on Microsoft’s website

Parameters

Name Type Description
grant_type string  jwt_bearer
client_id  string  The client ID that is tied to the application settings.
client_secret  string  The client ID that is tied to the application settings.

Response

Name Type Description
access_token String The access token
token_type String The token type (JWT)

Example

An example response could be

{
    "access_token":"eyJhbGciOiAiaDSadsfadsfdfgIkpXVCJ9.eyJpc3MiOiAiaWNvbmZpbmRlci5jb20iLCAiaWF0IjogMTQ2Nzk4MDMxNiwgInN1YiI6IDIyNCwgImV4cCI6IDE0Njc5ODA5MTZ9.j0iC5gXV+2ngmLN5N1Ei4OGpM1gpC5PKOxSr7IXMR9Q=",
    "token_type":"JWT"}

Authorization code

The Iconfinder API 3.0 supports authorization code when authenticating. In order to use OAuth 2.0, you need to register an API application, which will be assigned a unique client ID and client secret.

1. Redirect the user to Iconfinder to authorize your application

To begin the authorization flow, redirect the user to the following URL on Iconfinder:

GET https://www.iconfinder.com/api/v3/oauth2/authorize

Parameters

Name Type Description
client_id string Your application’s client ID.
client_secret string Your application’s client secret.
response_type string Response type. Must be code for web application registration.
scope string Optional comma separated list of scopes. See scopes for more details.
state string Optional random string used to protect against cross site request forgery attacks.

2. Iconfinder redirects back to your site

If the user chooses to authorize your application, Iconfinder redirects back to your site at the callback URL you configured for your application when registering it. The URL will include with an intermediate code in the code request parameter as well as the opaque state value if provided. If no code parameter is provided, it means that the user did not choose to authorize your application. If you supplied a state parameter, make sure to validate this to avoid security vulnerabilities.

3. Exchange the intermediate code for an access token

Once you have the intermediate code, it must be exchanged for an access token that will be used for all authenticated requests. Access tokens are obtained at the following URL:

POST https://www.iconfinder.com/api/v3/oauth2/token

{
  "access_token": "eyJhbGciOiAiSFMyNTYiLCAidHlwIjogIkpXVCJ9.eyJpc3MiOiAiaWNvbmZpbmRlci5jb20iLCAiaWF0IjogMTQ2NzY0Mzk5NSwgInN1YiI6IDIyMCwgImV4cCI6IDE0Njc2NDQ1OTV9.IiZa0MMs/57+i38fzylfj3XtN/FPkiHpjq0XCzyvZi4=",
  "token_type": "JWT"
}

Parameters

Name Type Description
client_id string Your application’s client ID.
client_secret string Your application’s client secret.
code string The intermediate code received from Iconfinder.
grant_type string Grant type. Must be authorization_code to indicate that the token is granted based on an authorization code.

Response

Upon successful exchange of the intermediate code, Iconfinder returns a JSON response with the access token and token type issued. Access tokens are guaranteed to be alphanumerical strings of 64 byte lengths:

{
    "access_token": "mUZrfE9MJySA1YTyGl9HsMjIypWNtl9jqjpfqxMKakdV00Fkh6C38gZkztrtCzWS",
    "token_type": "Bearer"
}

4. Hit up some endpoints

You are now ready to make requests to the Iconfinder API version 3.0 on behalf of the authorized user. The quick and dirty approach is to use the access token either as a query parameter:

GET https://api.iconfinder.com/v3/user?access_token=mUZrfE9MJySA1YTyGl9HsMjIypWNtl9jqjpfqxMKakdV00Fkh6C38gZkztrtCzWS

However, the preferred approach is to supply the access token in the Authorization header of your requests, using the “Bearer” token type:

Authorization: Bearer mUZrfE9MJySA1YTyGl9HsMjIypWNtl9jqjpfqxMKakdV00Fkh6C38gZkztrtCzWS

Scopes

By default, API applications only have read-only access to public information of authorized users. In order to gain further access, the application must be authorized with one or more scopes.

Scope Description
default Read-only access to a user’s public information.
user Read-only access to a user’s private information such as e-mail address etc.
purchased Read access to a user’s purchased premium resources. Required to be able to download premium icons on behalf of the user.

Get details about the authenticated user

GET /v3/user

When using OAuth 2.0 authentication, this endpoint exposes details about the authenticated user. The level of detail depends on the scope with which the user was authenticated.

Response

{
    "username":"jonsnow",
    "first_name":"Jon",
    "last_name":"Snow",
    "user_id":1,
    "name":"Jon Snow",
    "is_designer":true,
    "organization":
    {
        "organization_id":2,
        "membership_level":"owner",
        "name":"Jon Snow's team",
        "pro_subscription":
        {
            "max_downloads":2500,
            "is_usable":true,
            "is_unlimited":false,
            "current_downloads":154,
            "downloads_reset_on":"2018-08-20"
        }
    },
    "motto":"who dares wins",
    "email":"jon.snow@gmail.com",
    "iconsets_count":25
}

Authors

Content on Iconfinder is always associated with a creator, ie. an entity of some sort, that has created the content. But, because Iconfinder both indexes as well as allows content creators to upload their works, not all content is linked to a known user, who created the content. Instead, indexed content created by someone who is not a user on Iconfinder will be represented as the special “author” type rather than the normal user type.

Get author details

GET /v3/authors/[author ID]

{
    "author_id": 100,
    "name": "Bruno Maia",
    "iconsets_count": 1,
    "website_url": "http://www.icontexto.com"
}

Get details about a specific author identified by a unique ID.

Categories

Icons can depict virtually anything and have many different use cases, and it can therefore be difficult to find just the icons you need. On Iconfinder, apart from being tagged, icons and icon sets are assigned to at least one of a predefined set of categories to make it easier to find icons based on use case.

Categories on Iconfinder are identified in the API by their unique, humanly readable identifier rather than a numerical ID.

List all categories

List all categories sorted ascendingly by their identifier.

GET /v3/categories

{
    "total_count": 59,
    "categories": [{
        "identifier": "abstract",
        "name": "Abstract"
    }, {
        "identifier": "agriculture-farming-gardening",
        "name": "Agriculture, farming, & gardening"
    }, {
        "identifier": "animal",
        "name": "Animals"
    }, {
        "identifier": "arrow",
        "name": "Arrows"
    }, {
        "identifier": "avatars-smiley",
        "name": "Avatars & smileys"
    }, {
        "identifier": "business-finance",
        "name": "Business & finance"
    }, {
        "identifier": "christmas",
        "name": "Christmas"
    }, {
        "identifier": "clothes-accessory",
        "name": "Clothes & accessories"
    }, {
        "identifier": "computer-hardware",
        "name": "Computer & hardware"
    }, {
        "identifier": "culture-communities",
        "name": "Culture & communities"
    }]
}

Parameters

Name Type Description
count int Number of categories to include in the result. Accepted values are between 1 and 100. Default 10.
after string identifier of the last category received. If empty, the count first categories are returned.

Get category details

GET /v3/categories/[category identifier]

{
    "identifier": "halloween",
    "name": "Halloween"
}

Get details about a specific category identified by its identifier.

Icons

List all icons in an icon set

Provides a list of all icons in an icon set sorted descendingly by the popularity of the icons.

GET /v3/iconsets/[icon set ID]/icons

GET /v3/iconsets/[icon set identifier]/icons

{
  "total_count": 7312,
  "icons": [
    {
      "is_icon_glyph": false,
      "is_premium": true,
      "icon_id": 417822,
      "containers": [
        {
          "download_url": "/icons/417822/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/417822/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 2,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "network-communication",
          "name": "Network & communications"
        },
        {
          "identifier": "seo-web",
          "name": "SEO & web"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/417822/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/ikooni-outline-seo-web/128/seo3-35-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/417822/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/ikooni-outline-seo-web/128/seo3-35-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/417822/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/ikooni-outline-seo-web/128/seo3-35-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/417822/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/ikooni-outline-seo-web/128/seo3-35-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/417822/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/ikooni-outline-seo-web/128/seo3-35-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/417822/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/ikooni-outline-seo-web/128/seo3-35-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/417822/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/ikooni-outline-seo-web/128/seo3-35-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/417822/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/ikooni-outline-seo-web/128/seo3-35-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/417822/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/ikooni-outline-seo-web/128/seo3-35-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2014-11-11T18:59:40.970",
      "styles": [
        {
          "identifier": "outline",
          "name": "Outline"
        }
      ],
      "tags": [
        "audit",
        "exam",
        "survey",
        "test"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/417822/formats/svg/821635/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/417822/formats/ai/821635/download",
              "format": "ai"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": false,
      "is_premium": true,
      "icon_id": 437806,
      "containers": [
        {
          "download_url": "/icons/437806/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/437806/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 2,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "ui",
          "name": "UI"
        },
        {
          "identifier": "file-folder",
          "name": "Files & folders"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/437806/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/ikooni-outline-file-folders/128/files-03-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/437806/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/ikooni-outline-file-folders/128/files-03-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/437806/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/ikooni-outline-file-folders/128/files-03-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/437806/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/ikooni-outline-file-folders/128/files-03-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/437806/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/ikooni-outline-file-folders/128/files-03-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/437806/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/ikooni-outline-file-folders/128/files-03-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/437806/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/ikooni-outline-file-folders/128/files-03-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/437806/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/ikooni-outline-file-folders/128/files-03-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/437806/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/ikooni-outline-file-folders/128/files-03-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2015-02-15T21:39:29.582",
      "styles": [
        {
          "identifier": "glyph",
          "name": "Glyph"
        }
      ],
      "tags": [
        "exam",
        "research",
        "survey",
        "test"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/437806/formats/svg/844172/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/437806/formats/ai/844172/download",
              "format": "ai"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": true,
      "is_premium": true,
      "icon_id": 298281,
      "containers": [
        {
          "download_url": "/icons/298281/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/298281/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 2,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "business-finance",
          "name": "Business & finance"
        },
        {
          "identifier": "seo-web",
          "name": "SEO & web"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/298281/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/seo-smart-pack/128/grey_new_seo2-17-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/298281/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/seo-smart-pack/128/grey_new_seo2-17-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/298281/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/seo-smart-pack/128/grey_new_seo2-17-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/298281/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/seo-smart-pack/128/grey_new_seo2-17-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/298281/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/seo-smart-pack/128/grey_new_seo2-17-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/298281/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/seo-smart-pack/128/grey_new_seo2-17-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/298281/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/seo-smart-pack/128/grey_new_seo2-17-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/298281/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/seo-smart-pack/128/grey_new_seo2-17-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/298281/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/seo-smart-pack/128/grey_new_seo2-17-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2014-06-16T18:32:12.931",
      "styles": [
        {
          "identifier": "glyph",
          "name": "Glyph"
        }
      ],
      "tags": [
        "experiment",
        "investigate",
        "research",
        "test"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/298281/formats/svg/677292/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/298281/formats/ai/677292/download",
              "format": "ai"
            },
            {
              "download_url": "/icons/298281/formats/csh/677292/download",
              "format": "csh"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": false,
      "is_premium": true,
      "icon_id": 417766,
      "containers": [
        {
          "download_url": "/icons/417766/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/417766/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 2,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "network-communication",
          "name": "Network & communications"
        },
        {
          "identifier": "seo-web",
          "name": "SEO & web"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/417766/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/ikooni-outline-seo-web/128/seo3-99-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/417766/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/ikooni-outline-seo-web/128/seo3-99-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/417766/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/ikooni-outline-seo-web/128/seo3-99-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/417766/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/ikooni-outline-seo-web/128/seo3-99-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/417766/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/ikooni-outline-seo-web/128/seo3-99-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/417766/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/ikooni-outline-seo-web/128/seo3-99-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/417766/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/ikooni-outline-seo-web/128/seo3-99-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/417766/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/ikooni-outline-seo-web/128/seo3-99-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/417766/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/ikooni-outline-seo-web/128/seo3-99-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2014-11-11T18:59:40.970",
      "styles": [
        {
          "identifier": "outline",
          "name": "Outline"
        }
      ],
      "tags": [
        "experiment",
        "qa",
        "research",
        "test",
        "testing"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/417766/formats/svg/821579/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/417766/formats/ai/821579/download",
              "format": "ai"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": false,
      "is_premium": true,
      "icon_id": 762339,
      "containers": [
        {
          "download_url": "/icons/762339/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/762339/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 2,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "healthcare-medical",
          "name": "Healthcare & medical"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/762339/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/medicine-14/128/medical-13-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/762339/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/medicine-14/128/medical-13-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/762339/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/medicine-14/128/medical-13-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/762339/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/medicine-14/128/medical-13-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/762339/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/medicine-14/128/medical-13-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/762339/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/medicine-14/128/medical-13-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/762339/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/medicine-14/128/medical-13-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/762339/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/medicine-14/128/medical-13-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/762339/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/medicine-14/128/medical-13-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2015-11-01T15:15:38.923",
      "styles": [
        {
          "identifier": "filled_outline",
          "name": "Filled outline"
        }
      ],
      "tags": [
        "chemical",
        "chemistry",
        "experiment",
        "pour chemical",
        "test tube",
        "tube"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/762339/formats/svg/1186419/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/762339/formats/ai/1186419/download",
              "format": "ai"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": false,
      "is_premium": true,
      "icon_id": 302109,
      "containers": [
        {
          "download_url": "/icons/302109/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/302109/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 2,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "education-science",
          "name": "Education & science"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/302109/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-7/512/list-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/302109/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-7/512/list-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/302109/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-7/512/list-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/302109/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-7/512/list-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/302109/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-7/512/list-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/302109/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-7/512/list-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/302109/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-7/512/list-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/302109/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-7/512/list-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/302109/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-7/512/list-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2014-08-01T13:30:01.903",
      "styles": [
        {
          "identifier": "glyph",
          "name": "Glyph"
        }
      ],
      "tags": [
        "clipboard",
        "list",
        "report",
        "test"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/302109/formats/svg/681981/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/302109/formats/ai/681981/download",
              "format": "ai"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": false,
      "is_premium": true,
      "icon_id": 340911,
      "containers": [
        {
          "download_url": "/icons/340911/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/340911/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 2,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "healthcare-medical",
          "name": "Healthcare & medical"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/340911/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/medical-services-2/256/Health_Tests-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/340911/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/medical-services-2/256/Health_Tests-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/340911/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/medical-services-2/256/Health_Tests-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/340911/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/medical-services-2/256/Health_Tests-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/340911/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/medical-services-2/256/Health_Tests-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/340911/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/medical-services-2/256/Health_Tests-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/340911/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/medical-services-2/256/Health_Tests-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/340911/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/medical-services-2/256/Health_Tests-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/340911/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/medical-services-2/256/Health_Tests-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2014-10-06T11:49:18.222",
      "styles": [
        {
          "identifier": "glyph",
          "name": "Glyph"
        }
      ],
      "tags": [
        "diagnosis",
        "healthcare",
        "medical file",
        "medical test"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/340911/formats/svg/729834/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/340911/formats/ai/729834/download",
              "format": "ai"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": true,
      "is_premium": true,
      "icon_id": 1790083,
      "containers": [
        {
          "download_url": "/icons/1790083/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/1790083/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 2,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "education-science",
          "name": "Education & science"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/1790083/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/thin-school-learning/24/thin-1336_test_exam_survey_school-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/1790083/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/thin-school-learning/24/thin-1336_test_exam_survey_school-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/1790083/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/thin-school-learning/24/thin-1336_test_exam_survey_school-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/1790083/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/thin-school-learning/24/thin-1336_test_exam_survey_school-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/1790083/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/thin-school-learning/24/thin-1336_test_exam_survey_school-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/1790083/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/thin-school-learning/24/thin-1336_test_exam_survey_school-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/1790083/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/thin-school-learning/24/thin-1336_test_exam_survey_school-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/1790083/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/thin-school-learning/24/thin-1336_test_exam_survey_school-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/1790083/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/thin-school-learning/24/thin-1336_test_exam_survey_school-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2017-01-11T18:37:27.361",
      "styles": [
        {
          "identifier": "outline",
          "name": "Outline"
        }
      ],
      "tags": [
        "exam",
        "school",
        "survey",
        "test"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/1790083/formats/svg/2239286/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/1790083/formats/ai/2239286/download",
              "format": "ai"
            },
            {
              "download_url": "/icons/1790083/formats/csh/2239286/download",
              "format": "csh"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": true,
      "is_premium": true,
      "icon_id": 2090134,
      "containers": [
        {
          "download_url": "/icons/2090134/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/2090134/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 3,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "network-communication",
          "name": "Network & communications"
        },
        {
          "identifier": "seo-web",
          "name": "SEO & web"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/2090134/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/031_server_performance_dashboard_hosting_laptop_speed_test-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/2090134/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/031_server_performance_dashboard_hosting_laptop_speed_test-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/2090134/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/031_server_performance_dashboard_hosting_laptop_speed_test-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/2090134/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/031_server_performance_dashboard_hosting_laptop_speed_test-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/2090134/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/031_server_performance_dashboard_hosting_laptop_speed_test-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/2090134/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/031_server_performance_dashboard_hosting_laptop_speed_test-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/2090134/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/031_server_performance_dashboard_hosting_laptop_speed_test-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/2090134/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/031_server_performance_dashboard_hosting_laptop_speed_test-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/2090134/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/031_server_performance_dashboard_hosting_laptop_speed_test-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2017-04-05T09:29:54.507",
      "styles": [
        {
          "identifier": "filled_outline",
          "name": "Filled outline"
        }
      ],
      "tags": [
        "laptop",
        "speed",
        "test"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/2090134/formats/svg/2542745/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/2090134/formats/ai/2542745/download",
              "format": "ai"
            },
            {
              "download_url": "/icons/2090134/formats/csh/2542745/download",
              "format": "csh"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": false,
      "is_premium": true,
      "icon_id": 555954,
      "containers": [
        {
          "download_url": "/icons/555954/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/555954/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 2,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "mixed",
          "name": "Mixed"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/555954/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/survey/500/Questionnaire_Archery-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/555954/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/survey/500/Questionnaire_Archery-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/555954/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/survey/500/Questionnaire_Archery-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/555954/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/survey/500/Questionnaire_Archery-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/555954/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/survey/500/Questionnaire_Archery-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/555954/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/survey/500/Questionnaire_Archery-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/555954/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/survey/500/Questionnaire_Archery-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/555954/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/survey/500/Questionnaire_Archery-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/555954/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/survey/500/Questionnaire_Archery-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2015-05-26T13:45:28.612",
      "styles": [
        {
          "identifier": "outline",
          "name": "Outline"
        }
      ],
      "tags": [
        "answer",
        "exam",
        "questionnaire",
        "quiz",
        "survey",
        "test"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 500,
          "size_width": 500,
          "size_height": 500,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/555954/formats/svg/971906/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/555954/formats/ai/971906/download",
              "format": "ai"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": false,
      "is_premium": true,
      "icon_id": 458157,
      "containers": [
        {
          "download_url": "/icons/458157/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/458157/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 2,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "education-science",
          "name": "Education & science"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/458157/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-volume-1-4/256/31-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/458157/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-volume-1-4/256/31-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/458157/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-volume-1-4/256/31-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/458157/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-volume-1-4/256/31-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/458157/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-volume-1-4/256/31-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/458157/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-volume-1-4/256/31-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/458157/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-volume-1-4/256/31-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/458157/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-volume-1-4/256/31-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/458157/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-volume-1-4/256/31-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2015-02-26T14:36:32.459",
      "styles": [
        {
          "identifier": "flat",
          "name": "Flat"
        }
      ],
      "tags": [
        "experiment",
        "flask",
        "laboratory",
        "test"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/458157/formats/svg/866188/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/458157/formats/ai/866188/download",
              "format": "ai"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": false,
      "is_premium": true,
      "icon_id": 378444,
      "containers": [
        {
          "download_url": "/icons/378444/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/378444/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 2,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "education-science",
          "name": "Education & science"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/378444/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/learning-icons-rounded/110/Test-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/378444/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/learning-icons-rounded/110/Test-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/378444/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/learning-icons-rounded/110/Test-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/378444/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/learning-icons-rounded/110/Test-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/378444/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/learning-icons-rounded/110/Test-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/378444/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/learning-icons-rounded/110/Test-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/378444/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/learning-icons-rounded/110/Test-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/378444/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/learning-icons-rounded/110/Test-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/378444/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/learning-icons-rounded/110/Test-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2014-12-08T13:16:09.786",
      "styles": [
        {
          "identifier": "flat",
          "name": "Flat"
        }
      ],
      "tags": [
        "test"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 110,
          "size_width": 110,
          "size_height": 110,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/378444/formats/svg/778393/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/378444/formats/ai/778393/download",
              "format": "ai"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": false,
      "is_premium": false,
      "icon_id": 115722,
      "containers": [
        {
          "download_url": "/icons/115722/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/115722/containers/icns/download",
          "format": "icns"
        }
      ],
      "categories": [
        {
          "identifier": "mixed",
          "name": "Mixed"
        },
        {
          "identifier": "sign-symbol",
          "name": "Signs & symbols"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/115722/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/linecons-free-vector-icons-pack/32/lab-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/115722/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/linecons-free-vector-icons-pack/32/lab-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/115722/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/linecons-free-vector-icons-pack/32/lab-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/115722/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/linecons-free-vector-icons-pack/32/lab-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/115722/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/linecons-free-vector-icons-pack/32/lab-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/115722/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/linecons-free-vector-icons-pack/32/lab-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/115722/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/linecons-free-vector-icons-pack/32/lab-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/115722/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/linecons-free-vector-icons-pack/32/lab-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/115722/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/linecons-free-vector-icons-pack/32/lab-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2013-04-09T16:39:27.077",
      "styles": [
        {
          "identifier": "outline",
          "name": "Outline"
        }
      ],
      "tags": [
        "chemistry",
        "lab",
        "science",
        "test",
        "vials"
      ],
      "vector_sizes": [
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/115722/formats/svg/239183/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/115722/formats/ai/239183/download",
              "format": "ai"
            },
            {
              "download_url": "/icons/115722/formats/csh/239183/download",
              "format": "csh"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": true,
      "is_premium": true,
      "icon_id": 2090132,
      "containers": [
        {
          "download_url": "/icons/2090132/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/2090132/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 3,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "network-communication",
          "name": "Network & communications"
        },
        {
          "identifier": "seo-web",
          "name": "SEO & web"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/2090132/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/029_servers_performance_dashboard_speed_test_high_gauge-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/2090132/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/029_servers_performance_dashboard_speed_test_high_gauge-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/2090132/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/029_servers_performance_dashboard_speed_test_high_gauge-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/2090132/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/029_servers_performance_dashboard_speed_test_high_gauge-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/2090132/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/029_servers_performance_dashboard_speed_test_high_gauge-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/2090132/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/029_servers_performance_dashboard_speed_test_high_gauge-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/2090132/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/029_servers_performance_dashboard_speed_test_high_gauge-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/2090132/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/029_servers_performance_dashboard_speed_test_high_gauge-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/2090132/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/029_servers_performance_dashboard_speed_test_high_gauge-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2017-04-05T09:29:54.507",
      "styles": [
        {
          "identifier": "filled_outline",
          "name": "Filled outline"
        }
      ],
      "tags": [
        "server",
        "speed",
        "test"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/2090132/formats/svg/2542743/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/2090132/formats/ai/2542743/download",
              "format": "ai"
            },
            {
              "download_url": "/icons/2090132/formats/csh/2542743/download",
              "format": "csh"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": true,
      "is_premium": true,
      "icon_id": 2090131,
      "containers": [
        {
          "download_url": "/icons/2090131/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/2090131/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 3,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "network-communication",
          "name": "Network & communications"
        },
        {
          "identifier": "seo-web",
          "name": "SEO & web"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/2090131/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/032_work_performance_speed_test_laptop_computer_gauge-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/2090131/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/032_work_performance_speed_test_laptop_computer_gauge-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/2090131/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/032_work_performance_speed_test_laptop_computer_gauge-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/2090131/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/032_work_performance_speed_test_laptop_computer_gauge-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/2090131/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/032_work_performance_speed_test_laptop_computer_gauge-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/2090131/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/032_work_performance_speed_test_laptop_computer_gauge-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/2090131/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/032_work_performance_speed_test_laptop_computer_gauge-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/2090131/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/032_work_performance_speed_test_laptop_computer_gauge-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/2090131/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/scenarium-vol-1-2/128/032_work_performance_speed_test_laptop_computer_gauge-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2017-04-05T09:29:54.507",
      "styles": [
        {
          "identifier": "filled_outline",
          "name": "Filled outline"
        }
      ],
      "tags": [
        "laptop",
        "performance",
        "test"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/2090131/formats/svg/2542742/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/2090131/formats/ai/2542742/download",
              "format": "ai"
            },
            {
              "download_url": "/icons/2090131/formats/csh/2542742/download",
              "format": "csh"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": false,
      "is_premium": true,
      "icon_id": 105090,
      "containers": [
        {
          "download_url": "/icons/105090/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/105090/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 2,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "education-science",
          "name": "Education & science"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/105090/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/education/512/Grades-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/105090/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/education/512/Grades-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/105090/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/education/512/Grades-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/105090/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/education/512/Grades-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/105090/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/education/512/Grades-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/105090/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/education/512/Grades-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/105090/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/education/512/Grades-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/105090/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/education/512/Grades-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/105090/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/education/512/Grades-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2013-03-19T16:46:10.887",
      "styles": [
        {
          "identifier": "glyph",
          "name": "Glyph"
        }
      ],
      "tags": [
        "exam",
        "grade",
        "grades",
        "test"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/105090/formats/svg/225881/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/105090/formats/ai/225881/download",
              "format": "ai"
            },
            {
              "download_url": "/icons/105090/formats/csh/225881/download",
              "format": "csh"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": false,
      "is_premium": true,
      "icon_id": 334150,
      "containers": [
        {
          "download_url": "/icons/334150/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/334150/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 2,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "business-finance",
          "name": "Business & finance"
        },
        {
          "identifier": "seo-web",
          "name": "SEO & web"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/334150/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/flat-seo-web-ikooni/128/flat_seo2-12-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/334150/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/flat-seo-web-ikooni/128/flat_seo2-12-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/334150/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/flat-seo-web-ikooni/128/flat_seo2-12-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/334150/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/flat-seo-web-ikooni/128/flat_seo2-12-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/334150/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/flat-seo-web-ikooni/128/flat_seo2-12-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/334150/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/flat-seo-web-ikooni/128/flat_seo2-12-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/334150/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/flat-seo-web-ikooni/128/flat_seo2-12-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/334150/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/flat-seo-web-ikooni/128/flat_seo2-12-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/334150/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/flat-seo-web-ikooni/128/flat_seo2-12-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2014-09-15T17:52:39.237",
      "styles": [
        {
          "identifier": "flat",
          "name": "Flat"
        }
      ],
      "tags": [
        "chemistry",
        "research",
        "science",
        "test"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/334150/formats/svg/720987/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/334150/formats/ai/720987/download",
              "format": "ai"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": true,
      "is_premium": true,
      "icon_id": 1011027,
      "containers": [
        {
          "download_url": "/icons/1011027/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/1011027/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 2,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "tools-construction",
          "name": "Tools & construction"
        },
        {
          "identifier": "transportation",
          "name": "Transportation"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/1011027/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/car-service-bolt-line-vol-1-1/128/service-38-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/1011027/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/car-service-bolt-line-vol-1-1/128/service-38-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/1011027/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/car-service-bolt-line-vol-1-1/128/service-38-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/1011027/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/car-service-bolt-line-vol-1-1/128/service-38-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/1011027/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/car-service-bolt-line-vol-1-1/128/service-38-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/1011027/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/car-service-bolt-line-vol-1-1/128/service-38-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/1011027/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/car-service-bolt-line-vol-1-1/128/service-38-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/1011027/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/car-service-bolt-line-vol-1-1/128/service-38-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/1011027/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/car-service-bolt-line-vol-1-1/128/service-38-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2016-02-29T21:24:45.915",
      "styles": [
        {
          "identifier": "outline",
          "name": "Outline"
        }
      ],
      "tags": [
        "car",
        "diagnostic",
        "measure",
        "test",
        "testing"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/1011027/formats/svg/1442178/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/1011027/formats/ai/1442178/download",
              "format": "ai"
            },
            {
              "download_url": "/icons/1011027/formats/csh/1442178/download",
              "format": "csh"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": true,
      "is_premium": true,
      "icon_id": 2091745,
      "containers": [
        {
          "download_url": "/icons/2091745/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/2091745/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 2,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "education-science",
          "name": "Education & science"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/2091745/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/school-outline/70/icon_sets_school_outline_iconfinder-14-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/2091745/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/school-outline/70/icon_sets_school_outline_iconfinder-14-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/2091745/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/school-outline/70/icon_sets_school_outline_iconfinder-14-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/2091745/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/school-outline/70/icon_sets_school_outline_iconfinder-14-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/2091745/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/school-outline/70/icon_sets_school_outline_iconfinder-14-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/2091745/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/school-outline/70/icon_sets_school_outline_iconfinder-14-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/2091745/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/school-outline/70/icon_sets_school_outline_iconfinder-14-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/2091745/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/school-outline/70/icon_sets_school_outline_iconfinder-14-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/2091745/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/school-outline/70/icon_sets_school_outline_iconfinder-14-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2017-04-05T19:06:17.089",
      "styles": [
        {
          "identifier": "outline",
          "name": "Outline"
        }
      ],
      "tags": [
        "analysis",
        "test",
        "tube"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 70,
          "size_width": 70,
          "size_height": 70,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/2091745/formats/svg/2544368/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/2091745/formats/ai/2544368/download",
              "format": "ai"
            },
            {
              "download_url": "/icons/2091745/formats/csh/2544368/download",
              "format": "csh"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": true,
      "is_premium": true,
      "icon_id": 293734,
      "containers": [
        {
          "download_url": "/icons/293734/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/293734/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 2,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "business-finance",
          "name": "Business & finance"
        },
        {
          "identifier": "seo-web",
          "name": "SEO & web"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/293734/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/111-seo-services-pack/128/new_seo2-17-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/293734/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/111-seo-services-pack/128/new_seo2-17-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/293734/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/111-seo-services-pack/128/new_seo2-17-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/293734/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/111-seo-services-pack/128/new_seo2-17-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/293734/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/111-seo-services-pack/128/new_seo2-17-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/293734/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/111-seo-services-pack/128/new_seo2-17-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/293734/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/111-seo-services-pack/128/new_seo2-17-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/293734/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/111-seo-services-pack/128/new_seo2-17-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/293734/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/111-seo-services-pack/128/new_seo2-17-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2014-06-05T20:20:25.541",
      "styles": [
        {
          "identifier": "glyph",
          "name": "Glyph"
        }
      ],
      "tags": [
        "examine",
        "experiment",
        "research",
        "test"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/293734/formats/svg/672443/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/293734/formats/ai/672443/download",
              "format": "ai"
            },
            {
              "download_url": "/icons/293734/formats/csh/672443/download",
              "format": "csh"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": false,
      "is_premium": true,
      "icon_id": 302115,
      "containers": [
        {
          "download_url": "/icons/302115/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/302115/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 2,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "education-science",
          "name": "Education & science"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/302115/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-7/512/test-tubes-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/302115/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-7/512/test-tubes-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/302115/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-7/512/test-tubes-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/302115/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-7/512/test-tubes-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/302115/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-7/512/test-tubes-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/302115/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-7/512/test-tubes-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/302115/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-7/512/test-tubes-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/302115/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-7/512/test-tubes-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/302115/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/science-7/512/test-tubes-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2014-08-01T13:30:01.903",
      "styles": [
        {
          "identifier": "glyph",
          "name": "Glyph"
        }
      ],
      "tags": [
        "chemistry",
        "science",
        "test",
        "test-tube",
        "tubes"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/302115/formats/svg/681987/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/302115/formats/ai/681987/download",
              "format": "ai"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": false,
      "is_premium": true,
      "icon_id": 340771,
      "containers": [
        {
          "download_url": "/icons/340771/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/340771/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 2,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "healthcare-medical",
          "name": "Healthcare & medical"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/340771/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/medical-services/256/Diagnostic-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/340771/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/medical-services/256/Diagnostic-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/340771/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/medical-services/256/Diagnostic-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/340771/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/medical-services/256/Diagnostic-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/340771/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/medical-services/256/Diagnostic-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/340771/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/medical-services/256/Diagnostic-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/340771/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/medical-services/256/Diagnostic-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/340771/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/medical-services/256/Diagnostic-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/340771/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/medical-services/256/Diagnostic-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2014-10-06T11:49:00.207",
      "styles": [
        {
          "identifier": "glyph",
          "name": "Glyph"
        }
      ],
      "tags": [
        "cardiogram",
        "heart health",
        "medical test"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/340771/formats/svg/729664/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/340771/formats/ai/729664/download",
              "format": "ai"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": true,
      "is_premium": true,
      "icon_id": 728614,
      "containers": [
        {
          "download_url": "/icons/728614/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/728614/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 2,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "education-science",
          "name": "Education & science"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/728614/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/school-set-2/512/3-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/728614/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/school-set-2/512/3-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/728614/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/school-set-2/512/3-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/728614/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/school-set-2/512/3-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/728614/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/school-set-2/512/3-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/728614/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/school-set-2/512/3-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/728614/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/school-set-2/512/3-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/728614/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/school-set-2/512/3-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/728614/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/school-set-2/512/3-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2015-10-05T16:36:19.991",
      "styles": [
        {
          "identifier": "glyph",
          "name": "Glyph"
        }
      ],
      "tags": [
        "a+",
        "exam",
        "grade",
        "mark",
        "test paper"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/728614/formats/svg/1151698/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/728614/formats/ai/1151698/download",
              "format": "ai"
            },
            {
              "download_url": "/icons/728614/formats/csh/1151698/download",
              "format": "csh"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": false,
      "is_premium": true,
      "icon_id": 942340,
      "containers": [
        {
          "download_url": "/icons/942340/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/942340/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 2,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "business-finance",
          "name": "Business & finance"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/942340/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/business-and-finance-31/244/icon-232-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/942340/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/business-and-finance-31/244/icon-232-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/942340/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/business-and-finance-31/244/icon-232-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/942340/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/business-and-finance-31/244/icon-232-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/942340/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/business-and-finance-31/244/icon-232-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/942340/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/business-and-finance-31/244/icon-232-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/942340/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/business-and-finance-31/244/icon-232-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/942340/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/business-and-finance-31/244/icon-232-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/942340/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn0.iconfinder.com/data/icons/business-and-finance-31/244/icon-232-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2016-01-28T16:01:58.664",
      "styles": [
        {
          "identifier": "flat",
          "name": "Flat"
        }
      ],
      "tags": [
        "confirm",
        "survey",
        "test",
        "write"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 244,
          "size_width": 244,
          "size_height": 244,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/942340/formats/svg/1371902/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/942340/formats/ai/1371902/download",
              "format": "ai"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": false,
      "is_premium": true,
      "icon_id": 105279,
      "containers": [
        {
          "download_url": "/icons/105279/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/105279/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 2,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "ui",
          "name": "UI"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/105279/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/interaction-design/512/Simulator-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/105279/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/interaction-design/512/Simulator-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/105279/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/interaction-design/512/Simulator-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/105279/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/interaction-design/512/Simulator-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/105279/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/interaction-design/512/Simulator-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/105279/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/interaction-design/512/Simulator-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/105279/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/interaction-design/512/Simulator-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/105279/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/interaction-design/512/Simulator-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/105279/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn3.iconfinder.com/data/icons/interaction-design/512/Simulator-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2013-03-19T17:53:53.018",
      "styles": [
        {
          "identifier": "glyph",
          "name": "Glyph"
        }
      ],
      "tags": [
        "drive",
        "simulate",
        "simulator",
        "test"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/105279/formats/svg/226335/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/105279/formats/ai/226335/download",
              "format": "ai"
            },
            {
              "download_url": "/icons/105279/formats/csh/226335/download",
              "format": "csh"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": false,
      "is_premium": true,
      "icon_id": 1046105,
      "containers": [
        {
          "download_url": "/icons/1046105/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/1046105/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 2,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "network-communication",
          "name": "Network & communications"
        },
        {
          "identifier": "seo-web",
          "name": "SEO & web"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/1046105/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/webina-seo-development-and-marketing/128/seo_web-23-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/1046105/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/webina-seo-development-and-marketing/128/seo_web-23-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/1046105/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/webina-seo-development-and-marketing/128/seo_web-23-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/1046105/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/webina-seo-development-and-marketing/128/seo_web-23-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/1046105/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/webina-seo-development-and-marketing/128/seo_web-23-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/1046105/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/webina-seo-development-and-marketing/128/seo_web-23-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/1046105/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/webina-seo-development-and-marketing/128/seo_web-23-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/1046105/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/webina-seo-development-and-marketing/128/seo_web-23-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/1046105/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/webina-seo-development-and-marketing/128/seo_web-23-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2016-03-18T22:47:59.419",
      "styles": [
        {
          "identifier": "flat",
          "name": "Flat"
        }
      ],
      "tags": [
        "ab testing",
        "compare",
        "test",
        "usability"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/1046105/formats/svg/1478047/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/1046105/formats/ai/1478047/download",
              "format": "ai"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": true,
      "is_premium": true,
      "icon_id": 1011010,
      "containers": [
        {
          "download_url": "/icons/1011010/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/1011010/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 2,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "tools-construction",
          "name": "Tools & construction"
        },
        {
          "identifier": "transportation",
          "name": "Transportation"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/1011010/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/car-service-bolt-line-vol-1-1/128/service-55-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/1011010/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/car-service-bolt-line-vol-1-1/128/service-55-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/1011010/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/car-service-bolt-line-vol-1-1/128/service-55-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/1011010/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/car-service-bolt-line-vol-1-1/128/service-55-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/1011010/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/car-service-bolt-line-vol-1-1/128/service-55-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/1011010/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/car-service-bolt-line-vol-1-1/128/service-55-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/1011010/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/car-service-bolt-line-vol-1-1/128/service-55-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/1011010/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/car-service-bolt-line-vol-1-1/128/service-55-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/1011010/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn4.iconfinder.com/data/icons/car-service-bolt-line-vol-1-1/128/service-55-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2016-02-29T21:24:45.915",
      "styles": [
        {
          "identifier": "outline",
          "name": "Outline"
        }
      ],
      "tags": [
        "car",
        "computer",
        "diagnostic",
        "measure",
        "test",
        "testing"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/1011010/formats/svg/1442161/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/1011010/formats/ai/1442161/download",
              "format": "ai"
            },
            {
              "download_url": "/icons/1011010/formats/csh/1442161/download",
              "format": "csh"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": false,
      "is_premium": true,
      "icon_id": 1046104,
      "containers": [
        {
          "download_url": "/icons/1046104/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/1046104/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 2,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "network-communication",
          "name": "Network & communications"
        },
        {
          "identifier": "seo-web",
          "name": "SEO & web"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/1046104/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/webina-seo-development-and-marketing/128/seo_web-22-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/1046104/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/webina-seo-development-and-marketing/128/seo_web-22-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/1046104/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/webina-seo-development-and-marketing/128/seo_web-22-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/1046104/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/webina-seo-development-and-marketing/128/seo_web-22-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/1046104/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/webina-seo-development-and-marketing/128/seo_web-22-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/1046104/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/webina-seo-development-and-marketing/128/seo_web-22-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/1046104/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/webina-seo-development-and-marketing/128/seo_web-22-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/1046104/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/webina-seo-development-and-marketing/128/seo_web-22-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/1046104/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/webina-seo-development-and-marketing/128/seo_web-22-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2016-03-18T22:47:59.419",
      "styles": [
        {
          "identifier": "flat",
          "name": "Flat"
        }
      ],
      "tags": [
        "experiment",
        "gear",
        "research",
        "test tube"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/1046104/formats/svg/1478046/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/1046104/formats/ai/1478046/download",
              "format": "ai"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": false,
      "is_premium": true,
      "icon_id": 176196,
      "containers": [
        {
          "download_url": "/icons/176196/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/176196/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 2,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "ui",
          "name": "UI"
        },
        {
          "identifier": "mixed",
          "name": "Mixed"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/176196/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/picons-basic-1/57/basic1-155_experiment-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/176196/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/picons-basic-1/57/basic1-155_experiment-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/176196/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/picons-basic-1/57/basic1-155_experiment-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/176196/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/picons-basic-1/57/basic1-155_experiment-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/176196/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/picons-basic-1/57/basic1-155_experiment-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/176196/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/picons-basic-1/57/basic1-155_experiment-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/176196/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/picons-basic-1/57/basic1-155_experiment-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/176196/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/picons-basic-1/57/basic1-155_experiment-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/176196/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn2.iconfinder.com/data/icons/picons-basic-1/57/basic1-155_experiment-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2013-07-24T12:33:33.335",
      "styles": [
        {
          "identifier": "glyph",
          "name": "Glyph"
        }
      ],
      "tags": [
        "experiment",
        "lab",
        "laboratory",
        "physician",
        "study",
        "test"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 57,
          "size_width": 57,
          "size_height": 57,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/176196/formats/svg/488210/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/176196/formats/ai/488210/download",
              "format": "ai"
            },
            {
              "download_url": "/icons/176196/formats/csh/488210/download",
              "format": "csh"
            }
          ]
        }
      ]
    },
    {
      "is_icon_glyph": false,
      "is_premium": true,
      "icon_id": 2313021,
      "containers": [
        {
          "download_url": "/icons/2313021/containers/ico/download",
          "format": "ico"
        },
        {
          "download_url": "/icons/2313021/containers/icns/download",
          "format": "icns"
        }
      ],
      "prices": [
        {
          "price": 2,
          "currency": "USD",
          "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "scope": "free",
            "license_id": 71,
            "name": "Basic license"
          }
        }
      ],
      "categories": [
        {
          "identifier": "education-science",
          "name": "Education & science"
        }
      ],
      "raster_sizes": [
        {
          "size": 16,
          "size_width": 16,
          "size_height": 16,
          "formats": [
            {
              "download_url": "/icons/2313021/formats/png/16/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/school-fill-1/70/1-14-16.png"
            }
          ]
        },
        {
          "size": 20,
          "size_width": 20,
          "size_height": 20,
          "formats": [
            {
              "download_url": "/icons/2313021/formats/png/20/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/school-fill-1/70/1-14-20.png"
            }
          ]
        },
        {
          "size": 24,
          "size_width": 24,
          "size_height": 24,
          "formats": [
            {
              "download_url": "/icons/2313021/formats/png/24/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/school-fill-1/70/1-14-24.png"
            }
          ]
        },
        {
          "size": 32,
          "size_width": 32,
          "size_height": 32,
          "formats": [
            {
              "download_url": "/icons/2313021/formats/png/32/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/school-fill-1/70/1-14-32.png"
            }
          ]
        },
        {
          "size": 64,
          "size_width": 64,
          "size_height": 64,
          "formats": [
            {
              "download_url": "/icons/2313021/formats/png/64/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/school-fill-1/70/1-14-64.png"
            }
          ]
        },
        {
          "size": 48,
          "size_width": 48,
          "size_height": 48,
          "formats": [
            {
              "download_url": "/icons/2313021/formats/png/48/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/school-fill-1/70/1-14-48.png"
            }
          ]
        },
        {
          "size": 128,
          "size_width": 128,
          "size_height": 128,
          "formats": [
            {
              "download_url": "/icons/2313021/formats/png/128/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/school-fill-1/70/1-14-128.png"
            }
          ]
        },
        {
          "size": 256,
          "size_width": 256,
          "size_height": 256,
          "formats": [
            {
              "download_url": "/icons/2313021/formats/png/256/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/school-fill-1/70/1-14-256.png"
            }
          ]
        },
        {
          "size": 512,
          "size_width": 512,
          "size_height": 512,
          "formats": [
            {
              "download_url": "/icons/2313021/formats/png/512/download",
              "format": "png",
              "preview_url": "https://cdn1.iconfinder.com/data/icons/school-fill-1/70/1-14-512.png"
            }
          ]
        }
      ],
      "type": "vector",
      "published_at": "2017-06-21T16:06:37.416",
      "styles": [
        {
          "identifier": "glyph",
          "name": "Glyph"
        }
      ],
      "tags": [
        "analysis",
        "test",
        "tube"
      ],
      "is_purchased": false,
      "vector_sizes": [
        {
          "size": 70,
          "size_width": 70,
          "size_height": 70,
          "target_sizes": [
            [
              16,
              20,
              24,
              32,
              64,
              48,
              128,
              256,
              512
            ]
          ],
          "formats": [
            {
              "download_url": "/icons/2313021/formats/svg/2769647/download",
              "format": "svg"
            },
            {
              "download_url": "/icons/2313021/formats/ai/2769647/download",
              "format": "ai"
            },
            {
              "download_url": "/icons/2313021/formats/csh/2769647/download",
              "format": "csh"
            }
          ]
        }
      ]
    }
  ]
}

Parameters

Name Type Description
query string Search query (required)
count int Number of icons to include in the result. Accepted values are between 1 and 100. Default 10.
offset int Result offset. Starts from 0, resulting in the first count icons being returned.
premium string Filter premium icons.
all or empty value - Include all icons no matter if they are premium icons or not.
0 or false - Only include icons that are not premium icons, ie. may require purchasing a license for specific use cases but are not sold directly on the Iconfinder marketplace.
1 or true - Only include premium icons, that are sold directly on the Iconfinder marketplace.
vector string Filter vector icons.
all or empty value - Include all icons no matter if they are vector or raster icons.
0 or false - Only include raster icons in the search result.
1 or true - Only include vector icons in the search result.
license string Filter by license scope.
none or empty value - Include all icons no matter the license.
commercial - Only include icons that can be used commercially, but may require attribution or be restricted by other licensing concerns.
commercial-nonattribution - Only include icons that be used commercially without any attribution requirements.
size_minimum int Minimum icon size to include in search result. Default 0.
size_maximum int Maximum icon size to include in search result. Default 512.
category string Filter icons based on category ID.
style string Filter icons based on style ID.

Icon sets

All icons on Iconfinder are organized into sets created by a specific author. Sets share a set of common attributes, such as licensing, pricing etc.

List all public icon sets

List all public icon sets in descending order of when they were published.

GET /v3/iconsets

{
    "total_count": 21459,
    "iconsets": [{
        "styles": [],
        "icons_count": 16,
        "author": {
            "username": "antto",
            "user_id": 64720,
            "name": "Siwat V",
            "iconsets_count": 176,
            "is_designer": true
        },
        "is_premium": true,
        "published_at": "2016-07-03T10:48:09.213",
        "prices": [{
            "currency": "USD",
            "price": 9.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "virtual-reality-1",
        "type": "vector",
        "iconset_id": 34992,
        "categories": [],
        "name": "Virtual Reality"
    }, {
        "styles": [],
        "icons_count": 10,
        "author": {
            "username": "mooandidesign",
            "user_id": 622851,
            "name": "Vy Tat",
            "iconsets_count": 3,
            "is_designer": true
        },
        "is_premium": true,
        "published_at": "2016-07-01T19:35:14.958",
        "prices": [{
            "currency": "USD",
            "price": 8.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "dining-icons",
        "type": "vector",
        "iconset_id": 34943,
        "categories": [],
        "name": "Dining Icons"
    }, {
        "styles": [],
        "icons_count": 12,
        "author": {
            "username": "tmthymllr",
            "user_id": 41971,
            "name": "Timothy Miller",
            "iconsets_count": 41,
            "is_designer": true
        },
        "is_premium": true,
        "published_at": "2016-07-01T18:34:17.706",
        "prices": [{
            "currency": "USD",
            "price": 9.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "neutro-medical",
        "type": "vector",
        "iconset_id": 34941,
        "categories": [],
        "name": "Neutro Medical"
    }, {
        "styles": [],
        "icons_count": 50,
        "author": {
            "username": "oviyan",
            "user_id": 139457,
            "name": "Vignesh Oviyan",
            "iconsets_count": 356,
            "is_designer": true
        },
        "is_premium": true,
        "published_at": "2016-07-01T17:15:41.240",
        "prices": [{
            "currency": "USD",
            "price": 14.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "sports-vol-03-16",
        "type": "vector",
        "iconset_id": 34939,
        "categories": [],
        "name": "Sports Vol 03"
    }, {
        "styles": [],
        "icons_count": 50,
        "author": {
            "username": "oviyan",
            "user_id": 139457,
            "name": "Vignesh Oviyan",
            "iconsets_count": 356,
            "is_designer": true
        },
        "is_premium": true,
        "published_at": "2016-07-01T17:14:29.781",
        "prices": [{
            "currency": "USD",
            "price": 14.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "sports-vol-02-16",
        "type": "vector",
        "iconset_id": 34938,
        "categories": [],
        "name": "Sports Vol 02"
    }, {
        "styles": [],
        "icons_count": 50,
        "author": {
            "username": "oviyan",
            "user_id": 139457,
            "name": "Vignesh Oviyan",
            "iconsets_count": 356,
            "is_designer": true
        },
        "is_premium": true,
        "published_at": "2016-07-01T17:13:05.731",
        "prices": [{
            "currency": "USD",
            "price": 14.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "sports-vol-01-15",
        "type": "vector",
        "iconset_id": 34937,
        "categories": [],
        "name": "Sports Vol 01"
    }, {
        "styles": [],
        "icons_count": 30,
        "author": {
            "username": "assetkit",
            "user_id": 643564,
            "name": "Asset Kit",
            "iconsets_count": 2,
            "is_designer": true
        },
        "is_premium": true,
        "published_at": "2016-07-01T16:51:19.496",
        "prices": [{
            "currency": "USD",
            "price": 20.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "ui-kit-developer-glyphs",
        "type": "vector",
        "iconset_id": 34936,
        "categories": [],
        "name": "UI Kit Developer Glyphs"
    }, {
        "styles": [],
        "icons_count": 20,
        "author": {
            "username": "Palau",
            "user_id": 609725,
            "name": "Oleksandr Yeromin",
            "iconsets_count": 47,
            "is_designer": true
        },
        "is_premium": true,
        "published_at": "2016-07-01T16:51:08.293",
        "prices": [{
            "currency": "USD",
            "price": 5.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "oil-and-gas-thinline",
        "type": "vector",
        "iconset_id": 34932,
        "categories": [],
        "name": "Oil and gas thinline"
    }, {
        "styles": [],
        "icons_count": 20,
        "author": {
            "username": "Palau",
            "user_id": 609725,
            "name": "Oleksandr Yeromin",
            "iconsets_count": 47,
            "is_designer": true
        },
        "is_premium": true,
        "published_at": "2016-07-01T16:50:46.533",
        "prices": [{
            "currency": "USD",
            "price": 5.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "singapore-thinline",
        "type": "vector",
        "iconset_id": 34931,
        "categories": [],
        "name": "Singapore thinline"
    }, {
        "styles": [],
        "icons_count": 15,
        "author": {
            "username": "Alicat202",
            "user_id": 92835,
            "name": "Alison Fischer",
            "company": "Sublime Worx",
            "is_designer": true,
            "iconsets_count": 4
        },
        "is_premium": true,
        "published_at": "2016-07-01T16:50:40.463",
        "prices": [{
            "currency": "USD",
            "price": 9.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "bright-interface",
        "type": "vector",
        "iconset_id": 34930,
        "categories": [],
        "name": "Bright Interface"
    }]
}

Parameters

Name Type Description
count int Number of icon sets to include in the result. Accepted values are between 1 and 100. Default 10.
after int Icon set ID of the last icon set received. If empty, the count most recently published icon sets are returned.
premium string Filter premium icon sets.
all or empty value - Include all icon sets no matter if they are premium or not.
0 or false - Only include icon sets that are not premium, ie. may require purchasing a license for specific use cases but are not sold directly on the Iconfinder marketplace.
1 or true - Only include premium icon sets, that are sold directly on the Iconfinder marketplace.
vector string Filter vector icon sets.
all or empty value - Include all icon sets no matter if they are vector or raster icon sets.
0 or false - Only include raster icon sets in the result.
1 or true - Only include vector icon sets in the result.
license string Filter by license scope.
none or empty value - Include all icon sets no matter the license.
commercial - Only include icon sets that can be used commercially, but may require attribution or be restricted by other licensing concerns.
commercial-nonattribution - Only include icon sets that be used commercially without any attribution requirements.

List icon sets of a specific style

List public icon sets of a specific style in descending order of when they were published.

GET /v3/styles/[style identifier]/iconsets

{
    "total_count": 4428,
    "iconsets": [{
        "styles": [{
            "identifier": "flat",
            "name": "Flat"
        }],
        "icons_count": 50,
        "author": {
            "username": "apatpoh",
            "user_id": 585239,
            "name": "Maxim Baltag",
            "iconsets_count": 22,
            "is_designer": true
        },
        "is_premium": true,
        "published_at": "2016-06-30T14:49:17.865Z",
        "prices": [{
            "currency": "USD",
            "price": 10.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "office-elements-icons-1",
        "type": "vector",
        "iconset_id": 34884,
        "categories": [{
            "identifier": "business-finance",
            "name": "Business & finance"
        }],
        "name": "Office elements icons"
    }, {
        "styles": [{
            "identifier": "flat",
            "name": "Flat"
        }],
        "icons_count": 18,
        "author": {
            "username": "apatpoh",
            "user_id": 585239,
            "name": "Maxim Baltag",
            "iconsets_count": 22,
            "is_designer": true
        },
        "is_premium": true,
        "published_at": "2016-06-30T14:17:28.889Z",
        "prices": [{
            "currency": "USD",
            "price": 7.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "education-icons-6",
        "type": "vector",
        "iconset_id": 34878,
        "categories": [{
            "identifier": "education-science",
            "name": "Education & science"
        }],
        "name": "Education icons"
    }, {
        "styles": [{
            "identifier": "flat",
            "name": "Flat"
        }],
        "icons_count": 15,
        "author": {
            "username": "apatpoh",
            "user_id": 585239,
            "name": "Maxim Baltag",
            "iconsets_count": 22,
            "is_designer": true
        },
        "is_premium": true,
        "published_at": "2016-06-30T14:17:23.842Z",
        "prices": [{
            "currency": "USD",
            "price": 7.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "business-economics-2",
        "type": "vector",
        "iconset_id": 34879,
        "categories": [{
            "identifier": "business-finance",
            "name": "Business & finance"
        }],
        "name": "Business Economics"
    }, {
        "styles": [{
            "identifier": "flat",
            "name": "Flat"
        }],
        "icons_count": 12,
        "author": {
            "username": "apatpoh",
            "user_id": 585239,
            "name": "Maxim Baltag",
            "iconsets_count": 22,
            "is_designer": true
        },
        "is_premium": true,
        "published_at": "2016-06-30T14:17:18.384Z",
        "prices": [{
            "currency": "USD",
            "price": 5.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "data-science-4",
        "type": "vector",
        "iconset_id": 34880,
        "categories": [{
            "identifier": "education-science",
            "name": "Education & science"
        }],
        "name": "Data science"
    }, {
        "styles": [{
            "identifier": "flat",
            "name": "Flat"
        }],
        "icons_count": 13,
        "author": {
            "username": "apatpoh",
            "user_id": 585239,
            "name": "Maxim Baltag",
            "iconsets_count": 22,
            "is_designer": true
        },
        "is_premium": true,
        "published_at": "2016-06-30T14:17:12.220Z",
        "prices": [{
            "currency": "USD",
            "price": 7.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "learning-and-education-2",
        "type": "vector",
        "iconset_id": 34881,
        "categories": [{
            "identifier": "education-science",
            "name": "Education & science"
        }],
        "name": "Learning and Education"
    }, {
        "styles": [{
            "identifier": "flat",
            "name": "Flat"
        }],
        "icons_count": 10,
        "author": {
            "username": "apatpoh",
            "user_id": 585239,
            "name": "Maxim Baltag",
            "iconsets_count": 22,
            "is_designer": true
        },
        "is_premium": true,
        "published_at": "2016-06-30T14:17:07.022Z",
        "prices": [{
            "currency": "USD",
            "price": 5.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "startup-8",
        "type": "vector",
        "iconset_id": 34882,
        "categories": [{
            "identifier": "business-finance",
            "name": "Business & finance"
        }],
        "name": "Startup"
    }, {
        "styles": [{
            "identifier": "flat",
            "name": "Flat"
        }],
        "icons_count": 30,
        "author": {
            "username": "popcornarts",
            "user_id": 419109,
            "name": "Popcorn Arts",
            "company": "popcornarts",
            "is_designer": true,
            "iconsets_count": 84
        },
        "is_premium": true,
        "published_at": "2016-06-30T14:16:19.485Z",
        "prices": [{
            "currency": "USD",
            "price": 18.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "communication-connection-set-2",
        "type": "vector",
        "iconset_id": 34876,
        "categories": [{
            "identifier": "seo-web",
            "name": "SEO & web"
        }, {
            "identifier": "network-communication",
            "name": "Network & communications"
        }],
        "name": "Communication & Connection-set 2"
    }, {
        "styles": [{
            "identifier": "flat",
            "name": "Flat"
        }],
        "icons_count": 30,
        "author": {
            "username": "popcornarts",
            "user_id": 419109,
            "name": "Popcorn Arts",
            "company": "popcornarts",
            "is_designer": true,
            "iconsets_count": 84
        },
        "is_premium": true,
        "published_at": "2016-06-30T14:16:13.786Z",
        "prices": [{
            "currency": "USD",
            "price": 18.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "communication-connection-set-1",
        "type": "vector",
        "iconset_id": 34875,
        "categories": [{
            "identifier": "network-communication",
            "name": "Network & communications"
        }],
        "name": "Communication & Connection-set 1"
    }, {
        "styles": [{
            "identifier": "flat",
            "name": "Flat"
        }],
        "icons_count": 27,
        "author": {
            "username": "iconmonk",
            "user_id": 588264,
            "name": "icon monk",
            "company": "iconmonk",
            "is_designer": true,
            "iconsets_count": 7
        },
        "is_premium": true,
        "published_at": "2016-06-30T14:14:36.404Z",
        "prices": [{
            "currency": "USD",
            "price": 15.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "food-and-beverages-3",
        "type": "vector",
        "iconset_id": 34871,
        "categories": [{
            "identifier": "food-drinks",
            "name": "Food & drinks"
        }],
        "name": "Food and Beverages"
    }, {
        "styles": [{
            "identifier": "flat",
            "name": "Flat"
        }],
        "icons_count": 11,
        "author": {
            "username": "MilanaTT",
            "user_id": 58849,
            "name": "Natalya Skidan",
            "iconsets_count": 84,
            "is_designer": true
        },
        "is_premium": true,
        "published_at": "2016-06-30T14:04:01.051Z",
        "prices": [{
            "currency": "USD",
            "price": 14.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "monster-1",
        "type": "vector",
        "iconset_id": 34858,
        "categories": [{
            "identifier": "avatars-smiley",
            "name": "Avatars & smileys"
        }],
        "name": "Monster"
    }]
}

Parameters

Name Type Description
count int Number of icon sets to include in the result. Accepted values are between 1 and 100. Default 10.
after int Icon set ID of the last icon set received. If empty, the count most recently published icon sets are returned.
premium string Filter premium icon sets.
all or empty value - Include all icon sets no matter if they are premium or not.
0 or false - Only include icon sets that are not premium, ie. may require purchasing a license for specific use cases but are not sold directly on the Iconfinder marketplace.
1 or true - Only include premium icon sets, that are sold directly on the Iconfinder marketplace.
vector string Filter vector icon sets.
all or empty value - Include all icon sets no matter if they are vector or raster icon sets.
0 or false - Only include raster icon sets in the result.
1 or true - Only include vector icon sets in the result.
license string Filter by license scope.
none or empty value - Include all icon sets no matter the license.
commercial - Only include icon sets that can be used commercially, but may require attribution or be restricted by other licensing concerns.
commercial-nonattribution - Only include icon sets that be used commercially without any attribution requirements.

List icon sets in a category

List public icon sets in a category in descending order of when they were published.

GET /v3/categories/[category identifier]/iconsets

{
    "total_count": 137,
    "iconsets": [{
        "styles": [{
            "identifier": "glyph",
            "name": "Glyph"
        }],
        "icons_count": 30,
        "author": {
            "username": "bakar015",
            "user_id": 594874,
            "name": "Bayu Karina",
            "company": "BAKARSTD",
            "is_designer": true,
            "iconsets_count": 21
        },
        "is_premium": true,
        "published_at": "2016-06-07T14:26:40.339",
        "prices": [{
            "currency": "USD",
            "price": 15.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "halloween-43",
        "type": "vector",
        "iconset_id": 33042,
        "categories": [{
            "identifier": "halloween",
            "name": "Halloween"
        }],
        "name": "HALLOWEEN"
    }, {
        "styles": [{
            "identifier": "flat",
            "name": "Flat"
        }],
        "icons_count": 10,
        "author": {
            "username": "iheartcat",
            "user_id": 538511,
            "name": "Alena Lyssanov",
            "iconsets_count": 5,
            "is_designer": true
        },
        "is_premium": true,
        "published_at": "2016-06-06T13:40:40.137",
        "prices": [{
            "currency": "USD",
            "price": 8.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "halloween-ghosts",
        "type": "vector",
        "iconset_id": 32903,
        "categories": [{
            "identifier": "halloween",
            "name": "Halloween"
        }, {
            "identifier": "avatars-smiley",
            "name": "Avatars & smileys"
        }],
        "name": "Halloween ghosts"
    }, {
        "styles": [{
            "identifier": "outline",
            "name": "Outline"
        }],
        "icons_count": 26,
        "author": {
            "username": "PixelLove",
            "user_id": 60821,
            "name": "James Hourd",
            "company": "Pixel Love Ltd",
            "is_designer": true,
            "iconsets_count": 29
        },
        "is_premium": true,
        "published_at": "2016-06-01T18:17:23.508",
        "prices": [{
            "currency": "USD",
            "price": 13.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "halloween-ios",
        "type": "vector",
        "iconset_id": 32661,
        "categories": [{
            "identifier": "halloween",
            "name": "Halloween"
        }],
        "name": "iOS icons - Halloween"
    }, {
        "styles": [{
            "identifier": "outline",
            "name": "Outline"
        }],
        "icons_count": 15,
        "author": {
            "username": "retinaicon",
            "user_id": 467885,
            "name": "Chris Markhing",
            "iconsets_count": 36,
            "is_designer": true
        },
        "is_premium": true,
        "published_at": "2016-05-31T19:12:26.955",
        "prices": [{
            "currency": "USD",
            "price": 9.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "scary-icons",
        "type": "vector",
        "iconset_id": 32490,
        "categories": [{
            "identifier": "halloween",
            "name": "Halloween"
        }, {
            "identifier": "avatars-smiley",
            "name": "Avatars & smileys"
        }],
        "name": "Scary Icons"
    }, {
        "styles": [{
            "identifier": "outline",
            "name": "Outline"
        }],
        "icons_count": 30,
        "author": {
            "username": "Palau",
            "user_id": 609725,
            "name": "Oleksandr Yeromin",
            "iconsets_count": 47,
            "is_designer": true
        },
        "is_premium": true,
        "published_at": "2016-05-20T15:50:46.268",
        "prices": [{
            "currency": "USD",
            "price": 5.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "halloween-thinline",
        "type": "vector",
        "iconset_id": 31801,
        "categories": [{
            "identifier": "halloween",
            "name": "Halloween"
        }],
        "name": "Halloween thinline"
    }, {
        "styles": [{
            "identifier": "3d",
            "name": "3D"
        }],
        "icons_count": 30,
        "author": {
            "username": "roundicons",
            "user_id": 64309,
            "name": "Ramy Wafaa Wadee Abdou Boktor",
            "company": "roundicons.com",
            "is_designer": true,
            "iconsets_count": 483
        },
        "is_premium": true,
        "published_at": "2016-05-16T11:22:34.667",
        "prices": [{
            "currency": "USD",
            "price": 14.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "halloween-42",
        "type": "vector",
        "iconset_id": 31536,
        "categories": [{
            "identifier": "halloween",
            "name": "Halloween"
        }],
        "name": "Halloween"
    }, {
        "styles": [{
            "identifier": "glyph",
            "name": "Glyph"
        }],
        "icons_count": 50,
        "author": {
            "username": "oviyan",
            "user_id": 139457,
            "name": "Vignesh Oviyan",
            "iconsets_count": 356,
            "is_designer": true
        },
        "is_premium": true,
        "published_at": "2016-02-14T07:14:31.709",
        "prices": [{
            "currency": "USD",
            "price": 12.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "halloween-40",
        "type": "vector",
        "iconset_id": 26727,
        "categories": [{
            "identifier": "halloween",
            "name": "Halloween"
        }],
        "name": "Halloween"
    }, {
        "styles": [{
            "identifier": "filled_outline",
            "name": "Filled outline"
        }],
        "icons_count": 35,
        "author": {
            "username": "iconbaandar",
            "user_id": 343094,
            "name": "IconBaandar Team",
            "iconsets_count": 770,
            "is_designer": true
        },
        "is_premium": true,
        "published_at": "2016-01-28T16:38:18.000",
        "prices": [{
            "currency": "USD",
            "price": 10.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "halloween-filled-line",
        "type": "vector",
        "iconset_id": 25764,
        "categories": [{
            "identifier": "halloween",
            "name": "Halloween"
        }],
        "name": "Halloween Filled Line"
    }, {
        "styles": [{
            "identifier": "glyph",
            "name": "Glyph"
        }],
        "icons_count": 10,
        "author": {
            "username": "egorpolyakov",
            "user_id": 130361,
            "name": "Egor Polyakov",
            "company": "Inmotus Design",
            "is_designer": true,
            "iconsets_count": 525
        },
        "is_premium": true,
        "published_at": "2016-01-05T10:13:00.165",
        "prices": [{
            "currency": "USD",
            "price": 8.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "devil-and-hell",
        "type": "vector",
        "iconset_id": 24289,
        "categories": [{
            "identifier": "halloween",
            "name": "Halloween"
        }, {
            "identifier": "avatars-smiley",
            "name": "Avatars & smileys"
        }],
        "name": "Devil and hell"
    }, {
        "styles": [{
            "identifier": "flat",
            "name": "Flat"
        }],
        "icons_count": 45,
        "author": {
            "username": "vectorsmarket",
            "user_id": 402966,
            "name": "Vectors Market",
            "company": "Vectors Market",
            "is_designer": true,
            "iconsets_count": 1507
        },
        "is_premium": true,
        "published_at": "2015-12-29T15:07:06.542",
        "prices": [{
            "currency": "USD",
            "price": 9.0,
            "license": {
                "url": "https://www.iconfinder.com/licenses/basic",
                "license_id": 71,
                "name": "Basic license",
                "scope": "free"
            }
        }],
        "identifier": "halloween-2-1",
        "type": "vector",
        "iconset_id": 24052,
        "categories": [{
            "identifier": "halloween",
            "name": "Halloween"
        }, {
            "identifier": "events-and-entertainment",
            "name": "Events & Entertainment"
        }],
        "name": "Halloween 2"
    }]
}

Parameters

Name Type Description
count int Number of icon sets to include in the result. Accepted values are between 1 and 100. Default 10.
after int Icon set ID of the last icon set received. If empty, the count most recently published icon sets are returned.
premium string Filter premium icon sets.
all or empty value - Include all icon sets no matter if they are premium or not.
0 or false - Only include icon sets that are not premium, ie. may require purchasing a license for specific use cases but are not sold directly on the Iconfinder marketplace.
1 or true - Only include premium icon sets, that are sold directly on the Iconfinder marketplace.
vector string Filter vector icon sets.
all or empty value - Include all icon sets no matter if they are vector or raster icon sets.
0 or false - Only include raster icon sets in the result.
1 or true - Only include vector icon sets in the result.
license string Filter by license scope.
none or empty value - Include all icon sets no matter the license.
commercial - Only include icon sets that can be used commercially, but may require attribution or be restricted by other licensing concerns.
commercial-nonattribution - Only include icon sets that be used commercially without any attribution requirements.

List a user’s icon sets

List all public icon sets owned by a specific user in descending order of when they were published.

GET /v3/users/[user ID]/iconsets

GET /v3/users/[username]/iconsets

{
    "total_count": 2,
    "iconsets": [{
        "styles": [{
            "identifier": "3d",
            "name": "3D"
        }],
        "icons_count": 2,
        "license": {
            "license_id": 11,
            "name": "Free for commercial use",
            "scope": "free"
        },
        "is_premium": false,
        "published_at": "2014-11-24T09:58:05.752Z",
        "website_url": "http://dogecoin.com/",
        "identifier": "dogecoin",
        "type": "vector",
        "iconset_id": 8086,
        "categories": [{
            "identifier": "animal",
            "name": "Animals"
        }],
        "name": "Dogecoin"
    }, {
        "styles": [{
            "identifier": "glyph",
            "name": "Glyph"
        }],
        "icons_count": 7,
        "license": {
            "license_id": 11,
            "name": "Free for commercial use",
            "scope": "free"
        },
        "is_premium": false,
        "published_at": "2013-08-20T14:18:07.914Z",
        "website_url": "http://www.iconfinder.com/",
        "identifier": "iconfinder-logo",
        "type": "vector",
        "iconset_id": 1761,
        "categories": [{
            "identifier": "mixed",
            "name": "Mixed"
        }],
        "name": "Iconfinder logo"
    }]
}

Parameters

Name Type Description
count int Number of icon sets to include in the result. Accepted values are between 1 and 100. Default 10.
after int Icon set ID of the last icon set received. If empty, the count most recently published icon sets are returned.
premium string Filter premium icon sets.
all or empty value - Include all icon sets no matter if they are premium or not.
0 or false - Only include icon sets that are not premium, ie. may require purchasing a license for specific use cases but are not sold directly on the Iconfinder marketplace.
1 or true - Only include premium icon sets, that are sold directly on the Iconfinder marketplace.
vector string Filter vector icon sets.
all or empty value - Include all icon sets no matter if they are vector or raster icon sets.
0 or false - Only include raster icon sets in the result.
1 or true - Only include vector icon sets in the result.
license string Filter by license scope.
none or empty value - Include all icon sets no matter the license.
commercial - Only include icon sets that can be used commercially, but may require attribution or be restricted by other licensing concerns.
commercial-nonattribution - Only include icon sets that be used commercially without any attribution requirements.

List an author’s icon sets

List all public icon sets owned by a specific author in descending order of when they were published.

GET /v3/authors/[author ID]/iconsets

{
    "total_count": 1,
    "iconsets": [{
        "styles": [{
            "identifier": "3d",
            "name": "3D"
        }],
        "icons_count": 16,
        "license": {
            "url": "http://creativecommons.org/licenses/by-nc/3.0/",
            "license_id": 4,
            "name": "Creative Commons (Attribution-Noncommercial 3.0 Unported)",
            "scope": "commercial"
        },
        "is_premium": false,
        "published_at": "2009-11-29T13:33:46Z",
        "website_url": "http://icontexto.blogspot.com/",
        "identifier": "aurora",
        "type": "raster",
        "iconset_id": 129,
        "categories": [{
            "identifier": "file-folder",
            "name": "Files & folders"
        }],
        "name": "Aurora"
    }]
}

Parameters

Name Type Description
count int Number of icon sets to include in the result. Accepted values are between 1 and 100. Default 10.
after int Icon set ID of the last icon set received. If empty, the count most recently published icon sets are returned.
premium string Filter premium icon sets.
all or empty value - Include all icon sets no matter if they are premium or not.
0 or false - Only include icon sets that are not premium, ie. may require purchasing a license for specific use cases but are not sold directly on the Iconfinder marketplace.
1 or true - Only include premium icon sets, that are sold directly on the Iconfinder marketplace.
vector string Filter vector icon sets.
all or empty value - Include all icon sets no matter if they are vector or raster icon sets.
0 or false - Only include raster icon sets in the result.
1 or true - Only include vector icon sets in the result.
license string Filter by license scope.
none or empty value - Include all icon sets no matter the license.
commercial - Only include icon sets that can be used commercially, but may require attribution or be restricted by other licensing concerns.
commercial-nonattribution - Only include icon sets that be used commercially without any attribution requirements.

List an authenticated user’s icon sets

List all public icon sets owned by the authenticated user in descending order of when they were published.

GET /v3/user/iconsets

Parameters

Name Type Description
count int Number of icon sets to include in the result. Accepted values are between 1 and 100. Default 10.
after int Icon set ID of the last icon set received. If empty, the count most recently published icon sets are returned.
premium string Filter premium icon sets.
all or empty value - Include all icon sets no matter if they are premium or not.
0 or false - Only include icon sets that are not premium, ie. may require purchasing a license for specific use cases but are not sold directly on the Iconfinder marketplace.
1 or true - Only include premium icon sets, that are sold directly on the Iconfinder marketplace.
vector string Filter vector icon sets.
all or empty value - Include all icon sets no matter if they are vector or raster icon sets.
0 or false - Only include raster icon sets in the result.
1 or true - Only include vector icon sets in the result.
license string Filter by license scope.
none or empty value - Include all icon sets no matter the license.
commercial - Only include icon sets that can be used commercially, but may require attribution or be restricted by other licensing concerns.
commercial-nonattribution - Only include icon sets that be used commercially without any attribution requirements.

Get icon set details

Get details about a specific icon set.

GET /v3/iconsets/[icon set ID]

GET /v3/iconsets/[icon set identifier]

{
    "styles": [{
        "identifier": "3d",
        "name": "3D"
    }],
    "icons_count": 50,
    "author": {
        "username": "oviyan",
        "user_id": 139457,
        "name": "Vignesh Oviyan",
        "iconsets_count": 356,
        "is_designer": true
    },
    "is_premium": true,
    "published_at": "2016-07-01T17:15:41.240",
    "prices": [{
        "currency": "USD",
        "price": 14.0,
        "license": {
            "url": "https://www.iconfinder.com/licenses/basic",
            "license_id": 71,
            "name": "Basic license",
            "scope": "free"
        }
    }],
    "identifier": "sports-vol-03-16",
    "type": "vector",
    "iconset_id": 34939,
    "categories": [{
        "identifier": "healthcare-medical",
        "name": "Healthcare & medical"
    }, {
        "identifier": "social-media",
        "name": "Social media"
    }],
    "name": "Sports Vol 03",
    "is_purchased": true,
    "are_all_icons_glyph": true
}

Licenses

Get license details

GET /v3/licenses/[license ID]

{
    "url": "http://creativecommons.org/licenses/by-nc/3.0/",
    "license_id": 4,
    "name": "Creative Commons (Attribution-Noncommercial 3.0 Unported)",
    "scope": "commercial"
}

Get details about a specific license by its unique ID.

Styles

Icons – like any other pieces of design – have very distinct styles and follow trends. Therefore, icons and icon sets on Iconfinder are assigned at least one of a set of predefined styles to make it easier for users to find icons and icon sets that will fit their style needs for a given use case.

Styles on Iconfinder are identified in the API by their unique, humanly readable identifier rather than a numerical ID.

List all styles

GET /v3/styles

{
    "styles": [{
        "identifier": "3d",
        "name": "3D"
    }, {
        "identifier": "cartoon",
        "name": "Cartoon"
    }, {
        "identifier": "filled_outline",
        "name": "Filled outline"
    }, {
        "identifier": "flat",
        "name": "Flat"
    }, {
        "identifier": "glyph",
        "name": "Glyph"
    }, {
        "identifier": "handdrawn",
        "name": "Handdrawn"
    }, {
        "identifier": "outline",
        "name": "Outline"
    }, {
        "identifier": "photorealistic",
        "name": "Photorealistic"
    }, {
        "identifier": "pixel",
        "name": "Pixel"
    }, {
        "identifier": "smooth",
        "name": "Smooth"
    }],
    "total_count": 10
}

List all styles sorted ascendingly by their identifier.

Parameters

Name Type Description
count int Number of styles to include in the result. Accepted values are between 1 and 100. Default 10.
after string identifier of the last style received. If empty, the count first styles are returned.

Get style details

GET /v3/styles/[style identifier]

{
    "identifier": "flat",
    "name": "Flat"
}

Get details about a specific style identified by its identifier.

Users

Get user details

GET /v3/users/[user ID]

GET /v3/users/[username]

{
    "username": "iconfinder",
    "user_id": 14,
    "name": "Martin LeBlanc Eigtved",
    "iconsets_count": 2,
    "company": "Iconfinder Aps",
    "is_designer": true,
    "social_behance": "iconfinder",
    "location": "Copenhagen, denmark",
    "social_twitter": "iconfinder",
    "social_dribbble": "iconfinder",
    "website_url": "http://www.iconfinder.com/"
}

Get details about a specific user.