api.hero_title
api.hero_description
api.quick_start
api.quick_start_description
api.step_1 api.step_1_desc
api.step_2 api.step_2_desc
api.step_3 api.step_3_desc
api.step_4 api.step_4_desc
Authorization: Bearer {YOUR_API_KEY}
api.base_url
https://auth.clxglobal.vip
api.category_verification
POST
产品验证接口
https://auth.clxglobal.vip/api/v1/verify
验证产品真伪,返回产品详细信息和NFT数据。支持通过产品防伪码进行验证。
api.request_example
curl -X POST https://auth.clxglobal.vip/api/v1/verify \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"product_code": "ABC123456",
"verification_type": "full"
}'
api.response_example
{
"success": true,
"data": {
"product_title": "产品名称",
"brand_name": "品牌名称",
"nft_token_id": "12345",
"is_authentic": true,
"certificate_url": "https://...",
"trace_timeline": [...]
},
"message": "验证成功"
}
api.category_traceability
POST
溯源查询接口
https://auth.clxglobal.vip/api/v1/trace
查询产品溯源信息,包括生产、流通等全部记录。
api.request_example
curl -X POST https://auth.clxglobal.vip/api/v1/trace \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"product_code": "ABC123456",
"include_events": true
}'
api.response_example
{
"success": true,
"data": {
"events": [
{
"event_type": "生产",
"event_time": "2025-01-01 10:00:00",
"event_location": "中国广东",
"manufacturer": "生产商名称"
},
{
"event_type": "质检",
"event_time": "2025-01-02 14:00:00",
"event_location": "中国广东",
"status": "合格"
}
]
},
"message": "查询成功"
}