Skip to main content
GET
/
v1
/
products
curl -X GET "https://api.getstrato.dev/v1/products?status=active&target_market=US" \
  -H "Authorization: Bearer sk_live_your_api_key"
{
  "data": [
    {
      "id": "prod_abc123",
      "name": "CardioValve Pro 2.0",
      "description": "Next-generation transcatheter aortic valve replacement system",
      "product_line": {
        "id": "pl_cardio",
        "name": "Cardiovascular"
      },
      "status": "active",
      "regulatory_status": "FDA 510(k) Cleared",
      "target_markets": ["US", "EU", "JP"],
      "key_features": [
        "Low-profile delivery system",
        "Repositionable deployment",
        "Enhanced sealing technology"
      ],
      "specifications": [
        {"name": "Valve Sizes", "value": "23mm, 26mm, 29mm"},
        {"name": "Delivery Catheter", "value": "14Fr"}
      ],
      "market_status": {
        "US": {"status": "approved", "clearance_number": "K231234"},
        "EU": {"status": "approved", "ce_mark": true},
        "JP": {"status": "under_review"}
      },
      "created_at": "2023-06-01T08:00:00Z"
    }
  ],
  "meta": {
    "page": 1,
    "per_page": 20,
    "total": 8
  }
}

Query Parameters

page
integer
default:"1"
Page number
per_page
integer
default:"20"
Results per page (max 100)
status
string
Filter by status. Options: active, in_development, discontinued
product_line
string
Filter by product line ID
target_market
string
Filter by target market. Options: US, EU, CN, JP, IN
Search by product name or description

Response

data
array
curl -X GET "https://api.getstrato.dev/v1/products?status=active&target_market=US" \
  -H "Authorization: Bearer sk_live_your_api_key"
{
  "data": [
    {
      "id": "prod_abc123",
      "name": "CardioValve Pro 2.0",
      "description": "Next-generation transcatheter aortic valve replacement system",
      "product_line": {
        "id": "pl_cardio",
        "name": "Cardiovascular"
      },
      "status": "active",
      "regulatory_status": "FDA 510(k) Cleared",
      "target_markets": ["US", "EU", "JP"],
      "key_features": [
        "Low-profile delivery system",
        "Repositionable deployment",
        "Enhanced sealing technology"
      ],
      "specifications": [
        {"name": "Valve Sizes", "value": "23mm, 26mm, 29mm"},
        {"name": "Delivery Catheter", "value": "14Fr"}
      ],
      "market_status": {
        "US": {"status": "approved", "clearance_number": "K231234"},
        "EU": {"status": "approved", "ce_mark": true},
        "JP": {"status": "under_review"}
      },
      "created_at": "2023-06-01T08:00:00Z"
    }
  ],
  "meta": {
    "page": 1,
    "per_page": 20,
    "total": 8
  }
}