GET https://api.i-as.dev/api/free-png?q={query}&page={value}
q
(required): The search query term, which will be used to search for free PNG images.page
(optional): The page number to retrieve. Defaults to 1
if not provided.GET https://api.i-as.dev/api/free-png?q=icon&page=1
A JSON object containing an array of free PNG images, as well as the search query and page number.
Response Format:
{
"freePNG": [
{
"image": "url",
"title": "string"
}
// More data can be included
],
"query": "string",
"page": "value"
}
Response Example:
{
"freePNG": [
{
"image": "https://example.com/image1.png",
"title": "Icon 1"
},
{
"image": "https://example.com/image2.png",
"title": "Icon 2"
}
],
"query": "icon",
"page": 1
}
freePNG
: An array of free PNG images that match the search query.
image
: The URL of the PNG image.title
: The title or name of the image.query
: The search term used for the query.
page
: The page number of the search results returned.