GET get_return_metadata

Retrieve the metadata that can be returned by a search call along with each match. For each metadata keyword retrieved display data type and the number of images from the index containing that keyword.

Resource URL

https://multicolorengine.tineye.com/<company>/rest/get_return_metadata/

Parameters

There are only the Common parameters.

Request example

curl https://multicolorengine.tineye.com/<company>/rest/get_return_metadata/

Response examples

JSON

{
    "method": "get_return_metadata",
    "status": "ok",
    "error": [],
    "result": [
        {
            "metadata": {
                "id": {
                    "count": "2",
                    "": null,
                    "type": "uint"
                },
            }
        }
    ],
    "stats": {
        "time_get": 3.53,
        "time_total": 3.77
    }
}

XML

<?xml version="1.0" encoding="utf-8"?>
<data>
    <method>get_return_metadata</method>
    <status>ok</status>
    <error/>
    <result>
        <item>
            <metadata>
                <id count="2" type="uint"/>
            </metadata>
        </item>
    </result>
    <stats>
        <time_get>3.53</time_get>
        <time_total>3.77</time_total>
    </stats>
</data>