Domain Search (Multi-record response)

 The data is supplied in JSON format with Client generated ID to each content and will be processed and supplied back with the result. Each multiple request has an upper limit of 10,000 Content.

Host

api.reticleai.com

Endpoint

/searchInventory

HTTP Method

POST

Request Header

X-access-token: TOKEN,
Content-type': 'application/json'

Request Body

{
"Query":"https://www.xyz.com",
"Type":"Domain"
}

Response Types

Success

{'Results': [
{'1 Meta-Data': {'Date': '2021-10-11,
   'URL': 'https://www.xyz.com',
   'User ID': 'sadlfg1242352jk3b423487324ebl723472l3g47'},
  '2 Top Categories': {'Category 1': 'Open-Minded',
   'Category 1 Value': 0.8305871444089072,
   'Category 2': 'Trendy',
   'Category 2 Value': 0.813096529671124,
   'Category 3': 'Interesting',
   'Category 3 Value': 0.7872220331004688,
   'Category 4': 'Creative',
   'Category 4 Value': 0.7176072698618684},
  '3 Positive Classifications': {'Active': 0.04532307639185872,
   'Attractive': 0.5133515511240277,
   'Capable': 0.03488148239233015,
   'Conventional': 0.1705691455863416,
   'Courageous': 0.6506910028734377,
   'Creative': 0.7176072698618684,
   'Friendly': 0.1431687286323202,
   'Funny': 0.01204615582953141,
   'Interesting': 0.7872220331004688,
   'Nurturing': 0.1179354957171849,
   'Open_Minded': 0.8305871444089072,
   'Reliable': 0.1261467595717737,
   'Respectful': 0.4030412478106363,
   'Safety': 0.009594489415966174,
   'Smart': 0.2697804989958448,
   'Sophisticated': 0.637181348300406,
   'Successful': 0.1852683665763055,
   'Trendy': 0.813096529671124,
   'Uplifting': 0.09929236210882664}},
 {'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 Script

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",
    "Type": "Domain"
}'