List QR codes
curl --request GET \
--url https://biq.li/api/v1/qr \
--header 'Authorization: Bearer <token>'import requests
url = "https://biq.li/api/v1/qr"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://biq.li/api/v1/qr', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://biq.li/api/v1/qr",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://biq.li/api/v1/qr"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://biq.li/api/v1/qr")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://biq.li/api/v1/qr")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"qr_codes": [
{
"id": "<string>",
"type": "static",
"content_type": "text",
"title": "<string>",
"payload": {
"long_url": "<string>",
"text": "<string>",
"phone": "<string>",
"message": "<string>",
"ssid": "<string>",
"encryption": "none",
"password": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"organization": "<string>",
"fax": "<string>",
"email": "jsmith@example.com",
"subject": "<string>",
"website": "<string>",
"socials": {
"youtube": "<string>",
"x": "<string>",
"instagram": "<string>",
"tiktok": "<string>",
"linkedin": "<string>"
},
"title": "<string>",
"description": "<string>",
"location": "<string>",
"url": "<string>",
"start": "2023-11-07T05:31:56Z",
"end": "2023-11-07T05:31:56Z",
"app_store_url": "<string>",
"google_play_url": "<string>",
"fallback_url": "<string>"
},
"scan_value": "<string>",
"qr_config": {
"matrixColor": "<string>",
"eyeFrameColor": "<string>",
"eyeColor": "<string>",
"matrixColorMode": "flat",
"matrixGradient": {
"colorOne": "#214687",
"colorTwo": "#44C8DE",
"angle": "0deg",
"midpoint": 50
},
"eyeFrameColorMode": "flat",
"eyeFrameGradient": {
"colorOne": "#214687",
"colorTwo": "#44C8DE",
"angle": "0deg",
"midpoint": 50
},
"eyeColorMode": "flat",
"eyeGradient": {
"colorOne": "#214687",
"colorTwo": "#44C8DE",
"angle": "0deg",
"midpoint": 50
},
"applyGradientToAll": true,
"applyEyeFrameGradientToEye": true,
"matrixStyle": "square",
"eyeFrameStyle": "square",
"eyeStyle": "square",
"showLogo": true
},
"geo_rules": [
{
"key": "<string>",
"value": "<string>"
}
],
"device_rules": [
{
"key": "<string>",
"value": "<string>"
}
],
"platform_rules": [
{
"key": "<string>",
"value": "<string>"
}
],
"tag_ids": [
"<string>"
],
"clicks_count": 1,
"safety_status": "clear",
"utm": "<string>",
"activates_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z",
"exp_clicks_rule": {},
"clicked_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"page_size": 50,
"has_more": true,
"next_cursor": "<string>",
"previous_cursor": "<string>"
},
"status": "success"
}{
"error": {
"code": "invalid_token",
"message": "<string>",
"details": {}
},
"request_id": "<string>"
}{
"error": {
"code": "invalid_token",
"message": "<string>",
"details": {}
},
"request_id": "<string>"
}{
"error": {
"code": "invalid_token",
"message": "<string>",
"details": {}
},
"request_id": "<string>"
}{
"error": {
"code": "invalid_token",
"message": "<string>",
"details": {}
},
"request_id": "<string>"
}{
"error": {
"code": "invalid_token",
"message": "<string>",
"details": {}
},
"request_id": "<string>"
}{
"error": {
"code": "invalid_token",
"message": "<string>",
"details": {}
},
"request_id": "<string>"
}QR codes
List QR codes
Search, filter, and cursor-paginate standalone QR codes.
GET
/
v1
/
qr
List QR codes
curl --request GET \
--url https://biq.li/api/v1/qr \
--header 'Authorization: Bearer <token>'import requests
url = "https://biq.li/api/v1/qr"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://biq.li/api/v1/qr', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://biq.li/api/v1/qr",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://biq.li/api/v1/qr"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://biq.li/api/v1/qr")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://biq.li/api/v1/qr")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"qr_codes": [
{
"id": "<string>",
"type": "static",
"content_type": "text",
"title": "<string>",
"payload": {
"long_url": "<string>",
"text": "<string>",
"phone": "<string>",
"message": "<string>",
"ssid": "<string>",
"encryption": "none",
"password": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"organization": "<string>",
"fax": "<string>",
"email": "jsmith@example.com",
"subject": "<string>",
"website": "<string>",
"socials": {
"youtube": "<string>",
"x": "<string>",
"instagram": "<string>",
"tiktok": "<string>",
"linkedin": "<string>"
},
"title": "<string>",
"description": "<string>",
"location": "<string>",
"url": "<string>",
"start": "2023-11-07T05:31:56Z",
"end": "2023-11-07T05:31:56Z",
"app_store_url": "<string>",
"google_play_url": "<string>",
"fallback_url": "<string>"
},
"scan_value": "<string>",
"qr_config": {
"matrixColor": "<string>",
"eyeFrameColor": "<string>",
"eyeColor": "<string>",
"matrixColorMode": "flat",
"matrixGradient": {
"colorOne": "#214687",
"colorTwo": "#44C8DE",
"angle": "0deg",
"midpoint": 50
},
"eyeFrameColorMode": "flat",
"eyeFrameGradient": {
"colorOne": "#214687",
"colorTwo": "#44C8DE",
"angle": "0deg",
"midpoint": 50
},
"eyeColorMode": "flat",
"eyeGradient": {
"colorOne": "#214687",
"colorTwo": "#44C8DE",
"angle": "0deg",
"midpoint": 50
},
"applyGradientToAll": true,
"applyEyeFrameGradientToEye": true,
"matrixStyle": "square",
"eyeFrameStyle": "square",
"eyeStyle": "square",
"showLogo": true
},
"geo_rules": [
{
"key": "<string>",
"value": "<string>"
}
],
"device_rules": [
{
"key": "<string>",
"value": "<string>"
}
],
"platform_rules": [
{
"key": "<string>",
"value": "<string>"
}
],
"tag_ids": [
"<string>"
],
"clicks_count": 1,
"safety_status": "clear",
"utm": "<string>",
"activates_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z",
"exp_clicks_rule": {},
"clicked_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"page_size": 50,
"has_more": true,
"next_cursor": "<string>",
"previous_cursor": "<string>"
},
"status": "success"
}{
"error": {
"code": "invalid_token",
"message": "<string>",
"details": {}
},
"request_id": "<string>"
}{
"error": {
"code": "invalid_token",
"message": "<string>",
"details": {}
},
"request_id": "<string>"
}{
"error": {
"code": "invalid_token",
"message": "<string>",
"details": {}
},
"request_id": "<string>"
}{
"error": {
"code": "invalid_token",
"message": "<string>",
"details": {}
},
"request_id": "<string>"
}{
"error": {
"code": "invalid_token",
"message": "<string>",
"details": {}
},
"request_id": "<string>"
}{
"error": {
"code": "invalid_token",
"message": "<string>",
"details": {}
},
"request_id": "<string>"
}GET /v1/qr requires QR codes: Read (qr_codes.view). Every item contains the same complete public fields as Retrieve.
curl 'https://biq.li/api/v1/qr?type=dynamic&content_type=link&page_size=25' \
-H 'Authorization: Bearer biqli_your_workspace_api_key' \
-H 'Accept: application/json'
Query parameters
| Parameter | Description |
|---|---|
search | Case-insensitive title search, or an exact biq_qr_... ID. Maximum 255 characters. |
type | Exact static or dynamic filter. |
content_type | Exact supported content type. |
page_size | Number of results from 1 to 100. Default is 50. |
starting_after | Return the next page after a returned biq_qr_... cursor. |
ending_before | Return the previous page before a returned cursor. |
starting_after and ending_before together. Keep all filters unchanged while following cursors.
The response contains qr_codes and pagination. has_more indicates whether another forward page exists. Use only the returned next_cursor and previous_cursor; do not construct cursors yourself.
Unknown query parameters, malformed cursors, and unsupported filter values return 422 validation_error.
Shared API behavior
Authentication is workspace-scoped; see Authentication. Errors use the standard envelope and request IDs described in Errors, and requests are subject to Rate limits. This endpoint uses cursor pagination; see Pagination.Authorizations
A workspace API key beginning with biqli_.
Query Parameters
Required string length:
1 - 255Available options:
static, dynamic Available options:
text, link, email, phone, sms, wifi, vcard, event, application, whatsapp Required range:
1 <= x <= 100Next-page public ID cursor; mutually exclusive with ending_before.
Previous-page public ID cursor; mutually exclusive with starting_after.

