Endpoint Playground
Test Crawlora's Ulta Beauty Product Q&A API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/ulta/product/questions?product_id=<product_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| product_id | string | Yes | Ulta product id, from a search result's product_id field | |
| page | integer | No | Result page, 1-based, defaults to 1 |
{
"code": 200,
"data": {
"count": 1,
"fetched_at": "sample",
"page": 1,
"page_size": 1,
"product_id": "sample-id",
"questions": [
{
"answer_count": 1,
"answers": [
{
"author": "sample",
"created_at": "sample",
"helpful_votes": 1,
"id": "sample-id",
"is_expert": true,
"not_helpful_votes": 1,
"text": "sample"
}
],
"author": "sample",
"created_at": "sample",
"id": "sample-id",
"location": "sample",
"text": "sample"
}
],
"source_url": "https://example.com/resource",
"total_pages": 1,
"total_questions": 1
},
"msg": "OK"
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns one page of an Ulta Beauty product's normalized customer questions, each with every answer it received. product_id is taken from a search result's product_id field or a product page's URL. A product with zero questions, or a well-formed but unrecognized product_id, returns a normal, empty result rather than an error.
{
"code": 200,
"data": {
"count": 1,
"fetched_at": "sample",
"page": 1,
"page_size": 1,
"product_id": "sample-id",
"questions": [
{
"answer_count": 1,
"answers": [
{
"author": "sample",
"created_at": "sample",
"helpful_votes": 1,
"id": "sample-id",
"is_expert": true,
"not_helpful_votes": 1,
"text": "sample"
}
],
"author": "sample",
"created_at": "sample",
"id": "sample-id",
"location": "sample",
"text": "sample"
}
],
"source_url": "https://example.com/resource",
"total_pages": 1,
"total_questions": 1
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/ulta/product/questions?product_id=<product_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"