Skip to main content
POST
/
v1
/
products
/
search
curl --location --request POST 'https://api.stateset.com/v1/products/search' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data-raw '{
    "query": "wireless headphones",
    "filters": {
        "categories": ["Electronics"],
        "price_range": {
            "min": 5000,
            "max": 20000
        },
        "in_stock": true
    },
    "sort": {
        "field": "relevance",
        "order": "desc"
    },
    "pagination": {
        "limit": 10,
        "offset": 0
    }
}'
{
  "results": [
    {
      "id": "prod_0901f083-aa1c-43c5-af5c-0a9d2fc64e30",
      "name": "Wireless Bluetooth Headphones",
      "sku": "WBH-001",
      "description": "Premium noise-cancelling wireless headphones with 30-hour battery life",
      "category": "Electronics",
      "brand": "AudioTech",
      "price": {
        "amount": 14999,
        "currency": "USD"
      },
      "relevance_score": 0.98,
      "inventory_summary": {
        "available": true,
        "quantity": 145
      }
    },
    {
      "id": "prod_abc123def456",
      "name": "Sport Wireless Earbuds",
      "sku": "SWE-001",
      "description": "Waterproof wireless earbuds perfect for workouts",
      "category": "Electronics",
      "brand": "FitAudio",
      "price": {
        "amount": 7999,
        "currency": "USD"
      },
      "relevance_score": 0.85,
      "inventory_summary": {
        "available": true,
        "quantity": 230
      }
    }
  ],
  "total_count": 15,
  "facets": {
    "categories": [
      {
        "value": "Electronics",
        "count": 15
      }
    ],
    "brands": [
      {
        "value": "AudioTech",
        "count": 5
      },
      {
        "value": "FitAudio",
        "count": 3
      },
      {
        "value": "SoundMax",
        "count": 4
      },
      {
        "value": "TechConnect",
        "count": 3
      }
    ],
    "price_ranges": [
      {
        "range": "50-100",
        "count": 3
      },
      {
        "range": "100-150",
        "count": 8
      },
      {
        "range": "150-200",
        "count": 4
      }
    ],
    "tags": [
      {
        "value": "wireless",
        "count": 15
      },
      {
        "value": "bluetooth",
        "count": 12
      },
      {
        "value": "noise-cancelling",
        "count": 6
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.stateset.com/llms.txt

Use this file to discover all available pages before exploring further.

This endpoint provides powerful search capabilities including fuzzy matching, relevance scoring, and aggregated facets for building filter UIs.

Request Body

query
string
Search query for full-text search across product names, descriptions, and SKUs
filters
object
Additional filters to narrow results
sort
object
Sort options
pagination
object
Pagination options
include_facets
boolean
Include aggregated facets for building filter UIs (default: true)

Response

results
array
Array of matching products with relevance scores
total_count
integer
Total number of matching products
facets
object
Aggregated data for building filter UIs
curl --location --request POST 'https://api.stateset.com/v1/products/search' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data-raw '{
    "query": "wireless headphones",
    "filters": {
        "categories": ["Electronics"],
        "price_range": {
            "min": 5000,
            "max": 20000
        },
        "in_stock": true
    },
    "sort": {
        "field": "relevance",
        "order": "desc"
    },
    "pagination": {
        "limit": 10,
        "offset": 0
    }
}'
{
  "results": [
    {
      "id": "prod_0901f083-aa1c-43c5-af5c-0a9d2fc64e30",
      "name": "Wireless Bluetooth Headphones",
      "sku": "WBH-001",
      "description": "Premium noise-cancelling wireless headphones with 30-hour battery life",
      "category": "Electronics",
      "brand": "AudioTech",
      "price": {
        "amount": 14999,
        "currency": "USD"
      },
      "relevance_score": 0.98,
      "inventory_summary": {
        "available": true,
        "quantity": 145
      }
    },
    {
      "id": "prod_abc123def456",
      "name": "Sport Wireless Earbuds",
      "sku": "SWE-001",
      "description": "Waterproof wireless earbuds perfect for workouts",
      "category": "Electronics",
      "brand": "FitAudio",
      "price": {
        "amount": 7999,
        "currency": "USD"
      },
      "relevance_score": 0.85,
      "inventory_summary": {
        "available": true,
        "quantity": 230
      }
    }
  ],
  "total_count": 15,
  "facets": {
    "categories": [
      {
        "value": "Electronics",
        "count": 15
      }
    ],
    "brands": [
      {
        "value": "AudioTech",
        "count": 5
      },
      {
        "value": "FitAudio",
        "count": 3
      },
      {
        "value": "SoundMax",
        "count": 4
      },
      {
        "value": "TechConnect",
        "count": 3
      }
    ],
    "price_ranges": [
      {
        "range": "50-100",
        "count": 3
      },
      {
        "range": "100-150",
        "count": 8
      },
      {
        "range": "150-200",
        "count": 4
      }
    ],
    "tags": [
      {
        "value": "wireless",
        "count": 15
      },
      {
        "value": "bluetooth",
        "count": 12
      },
      {
        "value": "noise-cancelling",
        "count": 6
      }
    ]
  }
}