For the complete documentation index, see llms.txt. This page is also available as Markdown.

Search Request

Create a new Smart Search request. This endpoint starts a search job

Create Smart Search Task

post
Authorizations
x-api-keystringRequired
Body
typestring · enumRequiredPossible values:
searchstringRequiredExample: john doe
Responses
200

Search created successfully

application/json
searchIdintegerOptionalExample: 29693
statusstringOptionalExample: completed
createdAtstring · date-timeOptionalExample: 2026-05-28T12:10:11Z
post/api/products/search
POST /api/products/search HTTP/1.1
Host: api.dos-op.io
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 46

{
  "type": "NAME_OR_ADDRESS",
  "search": "john doe"
}
200

Search created successfully

{
  "searchId": 29693,
  "status": "completed",
  "createdAt": "2026-05-28T12:10:11Z"
}

Last updated