The data is supplied in JSON format with Client generated ID to the content and will be processed and supplied back with one or no result based on the content alignment to data.
api.reticleai.com
/searchInventory
POST
X-access-token: TOKEN,
Content-type': 'application/json'
{
"Query":"https://www.xyz.com",
"Type":"Domain"
}
Success
{'Results': [
{'1 Meta-Data': {'Date': '2021-10-11',
'URL': 'https://www.xyz.com/weather',
'User ID': 'sadlfg1242352jk3b423487324ebl723472l3g47'},
'2 Top Categories': {'Category 1': 'Trendy',
'Category 1 Value': 0.6568076243767371,
'Category 2': 'Conventional',
'Category 2 Value': 0.5285308004285281,
'Category 3': 'Respectful',
'Category 3 Value': 0.5252857060852245,
'Category 4': 'Reliable',
'Category 4 Value': 0.4573833324158421},
'3 Positive Classifications': {'Active': 0.1961285590838928,
'Attractive': 0.3016371287835332,
'Capable': 0.3028911601465482,
'Conventional': 0.5285308004285281,
'Courageous': 0.2803352633132957,
'Creative': 0.296074831191128,
'Friendly': 0.2674773284234107,
'Funny': 0.1171008116082073,
'Interesting': 0.3273059909160321,
'Nurturing': 0.2925117734031609,
'Open_Minded': 0.1951580599707086,
'Reliable': 0.4573833324158421,
'Respectful': 0.5252857060852245,
'Safety': 0.4040948462923272,
'Smart': 0.1923648135808225,
'Sophisticated': 0.09181770139996213,
'Successful': 0.2683676164597273,
'Trendy': 0.6568076243767371,
'Uplifting': 0.2404623033854967}}
]
}
Missing parameters
[
{
"Error Code": "49",
"Error": "Missing parameters."
}
]
Invalid Token
{
"message": "Invalid Token, Please log in again to get a new token."
}
Out-Of-Quotas
{
"message": "You have reached your quota for the day.",
}
Empty response
{
"message": "No available data.",
}
Out-of-Scope call
{
"message": "Query column not allowed please select from Date, Reticle_ID, Client_ID.",
}
curl --location --request GET 'http://api.reticleai.com/searchInventory' \
--header 'X-access-token: TOKEN ' \
--header 'Content-type: application/json' \
--data-raw '{
"Query": "https://www.xyz.com/weather",
"Type": "URL"
}'