# List all product segments
You can return a list with all of your products’ segments. Use a returned URL to list all products added to the segment.
GET
/product-segments/
# Request
- CURL
- JavaScript
- PHP
- Python
curl -X GET -H
"Authorization: Token <your_64_char_api_key>"
"https://<your_app_subdomain>.user.com/api/public/product-segments/"
# Response
{
"previous": null,
"results": [
{
"name": "New",
"description": "Products added less than 7 days ago.",
"products": "https://<your_app_subdomain>.user.com/api/public/product-segments/1038/products/",
"id": 1038,
"object_count": 100
},
{
"name": "Top selling",
"description": "Products with more than 1000 product events.",
"products": "https://<your_app_subdomain>.user.com/api/public/product-segments/1039/products/",
"id": 1039,
"object_count": 100
},
],
"next": null,
"count": 2
}