Amazon A+ Content Endpoint
Return Amazon A+ content and brand-story blocks for one product.
Getting Started
Send your API key as a bearer token. Start with the smallest request below.
Run Amazon A+ Content
Send the smallest useful request and read the structured response.
curl -X POST "https://api.datablue.dev/v1/data/amazon/a-plus" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"asin": "B0XXXXXXX1",
"domain": "amazon.in",
"country": "IN"
}'{
"success": true,
"asin": "B0XXXXXXX1",
"domain": "amazon.in",
"title": "Kiro Beauty Lipstick",
"brand": "Kiro",
"aplus_content": {
"modules": [
{
"type": "image_text",
"text": "Clean beauty payoff"
}
]
},
"brand_story": {
"text_blocks": [
"Conscious color cosmetics"
]
},
"time_taken": 4.8
}Options
Query and Target
Set the search term, identifier, or source URL that defines the request.
curl -X POST "https://api.datablue.dev/v1/data/amazon/a-plus" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"asin": "B0EXAMPLE1",
"domain": "amazon.in",
"country": "IN",
"url": "https://example.com/products/widget"
}'{
"success": true,
"asin": "B0XXXXXXX1",
"domain": "amazon.in",
"title": "Kiro Beauty Lipstick",
"brand": "Kiro",
"aplus_content": {
"modules": [
{
"type": "image_text",
"text": "Clean beauty payoff"
}
]
},
"brand_story": {
"text_blocks": [
"Conscious color cosmetics"
]
},
"time_taken": 4.8
}Location and Language
Localize results with country, language, coordinates, or delivery-location fields.
curl -X POST "https://api.datablue.dev/v1/data/amazon/a-plus" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"asin": "B0XXXXXXX1",
"domain": "amazon.in",
"country": "us",
"postal_code": "10001"
}'{
"success": true,
"asin": "B0XXXXXXX1",
"domain": "amazon.in",
"title": "Kiro Beauty Lipstick",
"brand": "Kiro",
"aplus_content": {
"modules": [
{
"type": "image_text",
"text": "Clean beauty payoff"
}
]
},
"brand_story": {
"text_blocks": [
"Conscious color cosmetics"
]
},
"time_taken": 4.8
}Response
Read success first, then consume the endpoint-specific records and pagination fields shown below.
Error Handling
Handle 401 for authentication, 422 for invalid input, 429 for limits, and retry only transient failures.
