GET
/
v2
/
search
/
history
List recent account search queries
curl --request GET \
  --url https://api-v2.watchcollect.com/v2/search/history \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "query": "<string>",
      "searched_at_ms": 123,
      "search_count": 2
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Recent search queries.

items
object[]
required