Icons
Find icons by keywords
Returns a list of icons corresponding to a given search string.
Request parameters
				GET /api/v1/search?name=education HTTP/1.1
				Host: webapp.flat-icons.com
				Authorization: Bearer YOUR_ACCESS_TOKEN
			
Responses
				{
					"data": [
						{
							"id": 70,
							"name": "Higher Education Loan",
							"category": {
								"id": 1,
								"name": "2D Vector Icons"
							},
							"style": {
								"id": 2,
								"name": "Line"
							},
							"series": {
								"id": 2,
								"name": "Dualine Series"
							},
							"set": {
								"id": 2,
								"name": "University"
							},
							"thumbnail": "https://webapp.flat-icons.com/private/bundle_icons/70/small",
							"variants": [
								{
									"id": 234,
									"format": "png",
									"size": 512
								},
								{
									"id": 235,
									"format": "png",
									"size": 256
								},
								{
									"id": 236,
									"format": "svg",
									"size": null
								},
								{
									"id": 237,
									"format": "eps",
									"size": null
								}
							]
						},
						...
						{
							"id": 6197,
							"name": "Education Video",
							"category": {
								"id": 1,
								"name": "2D Vector Icons"
							},
							"style": {
								"id": 2,
								"name": "Line"
							},
							"series": {
								"id": 8,
								"name": "Navy Series"
							},
							"set": {
								"id": 17,
								"name": "Live Streaming"
							},
							"thumbnail": "https://webapp.flat-icons.com/private/bundle_icons/6197/small",
							"variants": [
								{
									"id": 37116,
									"format": "png",
									"size": 512
								},
								{
									"id": 37117,
									"format": "png",
									"size": 256
								},
								{
									"id": 37118,
									"format": "svg",
									"size": null
								},
								{
									"id": 37119,
									"format": "eps",
									"size": null
								}
							]
						}
					],
					"meta": {
						"moreResultsAvailable": true
					}
				}
			
Download an icon
Downloads a file based on a variant ID provided. See the "variants" array in the "Search" response above.
Request parameters
				GET /api/v1/download?id=1042 HTTP/1.1
				Host: webapp.flat-icons.com
				Authorization: Bearer YOUR_ACCESS_TOKEN
			
Responses
Last modified: 29 March 2024