4001.Search Part Information via Brand Part Number/OE Number
Brief Summary:- The API supports queries using both Original Equipment (OE) Numbers and Aftermarket Brand Part Numbers. Important:
When querying with OE numbers (e.g., Toyota, Honda part codes), EPC (Electronic Parts Catalog) information may be returned.
When querying with aftermarket brand part numbers (e.g., Bosch, ACDelco), no EPC information will be returned.
Request URL:http://api.17vin.com:8080/?action=search_epc&query_part_number={query_part_number}&query_match_type={query_match_type}&user={username}&token={token}
- Smart search(query_match_type is empty or query_match_type=smart)
- Exact search(query_match_type=exact)
- In exact search(query_match_type=inexact)
- GET or POST
| Parameter | Required | Type | Description |
|---|---|---|---|
| action | Yes | string | search_epc |
| query_part_number | Yes | string | OE number to search: For fuzzy search, input length is recommended to be 5 characters or more; inputs with fewer than 5 characters will automatically switch to exact match mode. |
| query_match_type | No | string | Search type: exact for exact match, inexact for inexact/fuzzy search (partial match), smart for smart search (uses exact match results if available, otherwise falls back to fuzzy search results). |
| user | Yes | string | user name |
| token | Yes | string | MD5(concat(MD5('myusername'),MD5('mypassword'),'/?action=search_epc&query_part_number=xxxxxx')) |
{
"code":1,
"msg":"success",
"data":[
{
"Partnumber":"041110Q021",
"Epc_en":"TOYOTA,LEXUS,SCION",
"Epc_zh":"丰田,雷克萨斯,塞恩",
"Brand_name_en":"TOYOTA,LEXUS,SCION",
"Brand_name_zh":"丰田,雷克萨斯,塞恩",
"Urlmake":"toyota",
"Epc":"toyota",
"Group_id":"40",
"Epc_id":"59",
"Part_name_en":"",
"Part_name_zh":"",
"Part_img":"partimg2/18q1/172/1729400.jpg"
}
]
}
Response description
| Parameter | Type | Description |
|---|---|---|
| Partnumber | string | |
| Epc_en | string | Deprecated, replaced with Brand_name_en |
| Epc_zh | string | Deprecated, replaced with Brand_name_zh) |
| Brand_name_en | string | |
| Brand_name_zh | string | |
| Urlmake | string | Deprecated |
| Epc | string | If it is a brand part number, this field is empty. |
| Group_id | string | |
| Epc_id | string | If it is a brand part number, this field is empty |
| Part_name_en | string | |
| Part_name_zh | string | |
| Part_img | string | http://resource.17vin.com/img/partimg2/18q1/172/1729400.jpg |