cURL
curl "https://api.ruseo.cn/api/barcode?content=ABC123&type=code128&width=2&height=50&show_text=1"
生成多种格式条形码:Code128/Code39/EAN-13/EAN-8/UPC-A/ITF/Codabar,输出base64 PNG
https://api.ruseo.cn/api/barcode
接口调用前需要确认的核心配置。
/api/barcodebarcode必填参数必须传入,示例值可直接用于联调。
免费API不强制要求API Key,但如果您希望统计个人调用次数,请在请求时附加参数 key=您的API_KEY。
注册账号后即可获得API Key。
| 参数名 | 必填 | 类型 | 说明 | 示例值 |
|---|---|---|---|---|
key |
否 | string | 可选参数:携带此参数可统计您的个人调用次数。请注册账号获取API Key。 | YOUR_API_KEY |
content |
是 | string | 条码内容 | ABC123 |
type |
否 | string | 格式:code128/code39/ean13/ean8/upca/upce/itf/codabar | code128 |
width |
否 | number | 条宽(1-10) | 2 |
height |
否 | number | 高度(10-150) | 50 |
show_text |
否 | string | 显示文字(1或0) | 1 |
优先使用示例地址测试请求参数是否正确。
https://api.ruseo.cn/api/barcode?content=ABC123&type=code128&width=2&height=50&show_text=1
curl "https://api.ruseo.cn/api/barcode?content=ABC123&type=code128&width=2&height=50&show_text=1"
$url = 'https://api.ruseo.cn/api/barcode?content=ABC123&type=code128&width=2&height=50&show_text=1';
$response = file_get_contents($url);
$data = json_decode($response, true);
fetch('https://api.ruseo.cn/api/barcode?content=ABC123&type=code128&width=2&height=50&show_text=1')
.then(res => res.json())
.then(data => console.log(data));
实际返回内容以接口脚本处理结果为准。
{
"code": 0,
"msg": "success",
"data": {
"route": "barcode",
"example": true
}
}
| 参数名 | 类型 | 说明 | 示例值 |
|---|---|---|---|
barcode.type |
string | 条码格式 | code128 |
barcode.content |
string | 原始内容 | ABC123 |
barcode.text |
string | 显示文字 | ABC123 |
image.base64 |
string | Base64编码 | ... |
image.data_url |
string | Data URL | data:image/png;base64,... |
点击左侧“发送请求”查看结果...