Retrieve and administer your tracking pixels.
GET https://rqrcode.com/api/pixels/
curl --request GET \
--url 'https://rqrcode.com/api/pixels/' \
--header 'Authorization: Bearer {api_key}'| Parameters | Details | Description |
|---|---|---|
| page |
Optional
ui.admin.api_docs.common.types.Integer
|
The page number that you want to get the results for. Defaults to 1. |
| results_per_page |
Optional
ui.admin.api_docs.common.types.Integer
|
How many results you want per page. Allowed values are: 10, 25, 50, 100, 250, 500, 1000. Defaults to 25. |
{
"data": [
{
"id": 1,
"type": "facebook",
"name": "Facebook Ads",
"pixel": "1234567",
"last_datetime": null,
"datetime": "2026-04-20 07:54:26"
}
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://rqrcode.com/api/pixels?page=1",
"last": "https://rqrcode.com/api/pixels?page=1",
"next": null,
"prev": null,
"self": "https://rqrcode.com/api/pixels?page=1"
}
}GET https://rqrcode.com/api/pixels/{pixel_id}curl --request GET \
--url 'https://rqrcode.com/api/pixels/{pixel_id}' \
--header 'Authorization: Bearer {api_key}'{
"data": {
"id": 1,
"type": "facebook",
"name": "Facebook Ads",
"pixel": "1234567",
"last_datetime": null,
"datetime": "2026-04-20 07:54:26"
}
}POST https://rqrcode.com/api/pixels
curl --request POST \
--url 'https://rqrcode.com/api/pixels' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'type=facebook' \
--form 'name=Facebook' \
--form 'pixel=12345678'| Parameters | Details | Description |
|---|---|---|
| type |
Required
ui.admin.api_docs.common.types.String
|
Allowed values: facebook, google_analytics, google_tag_manager, linkedin, pinterest, twitter, quora, tiktok, snapchat |
| name |
Required
ui.admin.api_docs.common.types.String
|
- |
| pixel |
Required
ui.admin.api_docs.common.types.String
|
- |
{
"data": {
"id": 1
}
}POST https://rqrcode.com/api/pixels/{pixel_id}curl --request POST \
--url 'https://rqrcode.com/api/pixels/{pixel_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Facebook New Name'| Parameters | Details | Description |
|---|---|---|
| type |
Optional
ui.admin.api_docs.common.types.String
|
Allowed values: facebook, google_analytics, google_tag_manager, linkedin, pinterest, twitter, quora, tiktok, snapchat |
| name |
Optional
ui.admin.api_docs.common.types.String
|
- |
| pixel |
Optional
ui.admin.api_docs.common.types.String
|
- |
{
"data": {
"id": 1
}
}DELETE https://rqrcode.com/api/pixels/{pixel_id}curl --request DELETE \
--url 'https://rqrcode.com/api/pixels/{pixel_id}' \
--header 'Authorization: Bearer {api_key}'Empty 200 response body on success.