Image Reports

Resource Image Reports

Generate Image Report

POST https://api.imageseo.io/v1/external/projects/images

This endpoint allows you to analyze the URL of an image or image file. One of the two is required (imageFile or src)

Headers

NameTypeDescription

Authentication

string

{YOUR_API_KEY}

Request Body

NameTypeDescription

lang

string

Example : 'fr'. You can find the list of languages supported on /public/langs

imageFile

object

Image FILE ( Corresponds to a file )

src

string

Image URL

{
    "success": true,
    "result": {
        "labels": [
            {
                "name": "Moths and butterflies",
                "score": 99.42726492881775,
                "entity": "/m/0d_2m",
                "link_google": "https://www.google.com/search?q=Moths and butterflies"
            }
        ],
        "alts": [
            {
                "name": "Operations management",
                "score": 71.43999934196472,
                "entity": "/m/06ck9d",
                "scoring": 0.7143999934196472,
                "link_google": "https://www.google.com/search?q=Operations management&tbm=isch"
            },
            {
                "name": "Management",
                "score": 63.349997997283936,
                "entity": "/m/04_tv",
                "scoring": 0.6334999799728394,
                "link_google": "https://www.google.com/search?q=Management&tbm=isch"
            }
        ]
        "src": "https://example.com/image",
        "height": "",
        "width": "",
        "weight": "224662",
        "encoding": null,
        "type": "URL"
    }
}

Deprecated

Keys in the response are depreciated and should not be used.

  • alt (use alts array)

  • a_vision

Last updated