{
    "openapi": "3.0.0",
    "info": {
        "title": "商品条码查询 - API文档",
        "version": "1.0.0",
        "description": "商品条形码信息查询接口，返回商品名称、规格、厂商、品牌、产地等。部分商品返回图片链接，该链接3小时内有效，请尽快下载。"
    },
    "servers": [
        {
            "url": "https:\/\/apis.tianapi.com"
        }
    ],
    "paths": {
        "\/barcode\/index": {
            "get": {
                "summary": "商品条形码查询",
                "tags": [
                    "商品条码查询"
                ],
                "description": "查询商品条形码对应的商品规格信息",
                "parameters": [
                    {
                        "name": "key",
                        "in": "query",
                        "description": "API密钥",
                        "required": true,
                        "schema": {
                            "type": "string",
                            "description": "API密钥"
                        }
                    },
                    {
                        "name": "barcode",
                        "in": "query",
                        "description": "条形码",
                        "required": true,
                        "schema": {
                            "type": "string",
                            "example": "6976586902578",
                            "description": "条形码"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "成功响应",
                        "content": {
                            "application\/json": {
                                "schema": {
                                    "type": "object",
                                    "properties": {
                                        "name": {
                                            "type": "string",
                                            "example": "多种维生素B族片",
                                            "description": "商品名称"
                                        },
                                        "spec": {
                                            "type": "string",
                                            "example": "50克",
                                            "description": "规格"
                                        },
                                        "brand": {
                                            "type": "string",
                                            "example": "品牌",
                                            "description": "贤健"
                                        },
                                        "depth": {
                                            "type": "string",
                                            "description": "深"
                                        },
                                        "width": {
                                            "type": "string",
                                            "description": "宽"
                                        },
                                        "height": {
                                            "type": "string",
                                            "description": "高"
                                        },
                                        "barcode": {
                                            "type": "string",
                                            "example": "6976586902578",
                                            "description": "条形码"
                                        },
                                        "firm_name": {
                                            "type": "string",
                                            "example": "安徽谊康堂健康科技有限公司",
                                            "description": "生产商"
                                        },
                                        "goods_pic": {
                                            "type": "string",
                                            "example": "https:\/\/api.tianapi.com\/goodspic\/?img=qhUnfmO4bzEH8B ",
                                            "description": "商品图片(3小时内有效)"
                                        },
                                        "goods_type": {
                                            "type": "string",
                                            "example": "营养补充剂",
                                            "description": "商品分类"
                                        },
                                        "firm_status": {
                                            "type": "string",
                                            "description": "生产状态"
                                        },
                                        "firm_address": {
                                            "type": "string",
                                            "description": "生产商地址"
                                        },
                                        "gross_weight": {
                                            "type": "string",
                                            "description": "毛重"
                                        }
                                    }
                                },
                                "example": {
                                    "msg": "success",
                                    "code": 200,
                                    "result": {
                                        "name": "多种维生素 B 族片",
                                        "spec": "50克",
                                        "brand": "贤健",
                                        "depth": "",
                                        "width": "",
                                        "height": "",
                                        "barcode": "6976586902578",
                                        "firm_name": "安徽谊康堂健康科技有限公司",
                                        "goods_pic": "https:\/\/api.tianapi.com\/goodspic\/?img=qhUnfmO4bzEH",
                                        "goods_type": "营养补充剂",
                                        "firm_status": "",
                                        "firm_address": "",
                                        "gross_weight": ""
                                    }
                                }
                            }
                        }
                    }
                }
            },
            "post": {
                "summary": "商品条形码查询",
                "tags": [
                    "商品条码查询"
                ],
                "description": "查询商品条形码对应的商品规格信息",
                "requestBody": {
                    "content": {
                        "application\/x-www-form-urlencoded": {
                            "schema": {
                                "type": "object",
                                "properties": {
                                    "key": {
                                        "type": "string",
                                        "description": "API密钥"
                                    },
                                    "barcode": {
                                        "type": "string",
                                        "example": "6976586902578",
                                        "description": "条形码"
                                    }
                                },
                                "required": [
                                    "key",
                                    "barcode"
                                ]
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "成功响应",
                        "content": {
                            "application\/json": {
                                "schema": {
                                    "type": "object",
                                    "properties": {
                                        "name": {
                                            "type": "string",
                                            "example": "多种维生素B族片",
                                            "description": "商品名称"
                                        },
                                        "spec": {
                                            "type": "string",
                                            "example": "50克",
                                            "description": "规格"
                                        },
                                        "brand": {
                                            "type": "string",
                                            "example": "品牌",
                                            "description": "贤健"
                                        },
                                        "depth": {
                                            "type": "string",
                                            "description": "深"
                                        },
                                        "width": {
                                            "type": "string",
                                            "description": "宽"
                                        },
                                        "height": {
                                            "type": "string",
                                            "description": "高"
                                        },
                                        "barcode": {
                                            "type": "string",
                                            "example": "6976586902578",
                                            "description": "条形码"
                                        },
                                        "firm_name": {
                                            "type": "string",
                                            "example": "安徽谊康堂健康科技有限公司",
                                            "description": "生产商"
                                        },
                                        "goods_pic": {
                                            "type": "string",
                                            "example": "https:\/\/api.tianapi.com\/goodspic\/?img=qhUnfmO4bzEH8B ",
                                            "description": "商品图片(3小时内有效)"
                                        },
                                        "goods_type": {
                                            "type": "string",
                                            "example": "营养补充剂",
                                            "description": "商品分类"
                                        },
                                        "firm_status": {
                                            "type": "string",
                                            "description": "生产状态"
                                        },
                                        "firm_address": {
                                            "type": "string",
                                            "description": "生产商地址"
                                        },
                                        "gross_weight": {
                                            "type": "string",
                                            "description": "毛重"
                                        }
                                    }
                                },
                                "example": {
                                    "msg": "success",
                                    "code": 200,
                                    "result": {
                                        "name": "多种维生素 B 族片",
                                        "spec": "50克",
                                        "brand": "贤健",
                                        "depth": "",
                                        "width": "",
                                        "height": "",
                                        "barcode": "6976586902578",
                                        "firm_name": "安徽谊康堂健康科技有限公司",
                                        "goods_pic": "https:\/\/api.tianapi.com\/goodspic\/?img=qhUnfmO4bzEH",
                                        "goods_type": "营养补充剂",
                                        "firm_status": "",
                                        "firm_address": "",
                                        "gross_weight": ""
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}