Skip to main content
POST
/
v0
/
enrich
Python SDK
from channel3_sdk import Channel3

client = Channel3(api_key="YOUR_API_KEY")

response = client.enrich.perform(
    url="https://brand.com/products/linen-shirt"
)
print(response)
{
"id": "<string>",
"title": "<string>",
"url": "<string>",
"brand_id": "<string>",
"brand_name": "<string>",
"image_urls": [
"<string>"
],
"price": {
"price": 123,
"compare_at_price": 123,
"currency": "<string>"
},
"availability": "InStock",
"gender": "male",
"materials": [
"<string>"
],
"key_features": [
"<string>"
],
"variants": []
}

Authorizations

x-api-key
string
header
required

Body

application/json
url
string
required

Response

id
string
required
title
string
required
url
string
required
price
object
required
availability
enum<string>
required
Available options:
InStock,
LimitedAvailability,
PreOrder,
BackOrder,
SoldOut,
OutOfStock,
Discontinued,
Unknown
brand_id
string | null
brand_name
string | null
image_urls
string[] | null
gender
enum<string> | null
Available options:
male,
female,
unisex
materials
string[] | null
key_features
string[] | null
variants
Variant · object[]