Skip to main content
GET
/
search
Text Search
curl --request GET \
  --url https://api.catalogix.ai/v1/search \
  --header 'Authorization: Bearer <token>'
{
  "status": {
    "code": 0,
    "message": "SUCCESS",
    "request_id": "8c8b2b7e-23d7-4c2a-91b0-2a7c4dfbb312"
  },
  "data": [
    {
      "product_code": "SKU001",
      "title": "Blue Shirt",
      "score": 0.95
    }
  ]
}

Authorizations

Authorization
string
header
required

Pass the API token as a Bearer token in the Authorization header.

Headers

X-Request-Id
string

Optional trace ID

Query Parameters

store_uuid
string
required

Store identifier

text
string
required

Search query text

offset
integer
default:0

Pagination offset

limit
integer
default:10

Maximum number of results

Response

Search results

status
object
data
object[]

List of matching products returned directly from upstream search API.