Installeer onze app 🪄 klik op het pictogram in de rechterbovenhoek van de adresbalk.

Trackingpixels

GET https://digily.link/api/pixels/
curl --request GET \
--url 'https://digily.link/api/pixels/' \
--header 'Authorization: Bearer {api_key}' \
Parameters Details Beschrijving
page Optioneel Integer Het paginanummer waarvan u resultaten wilt. Standaard is 1.
results_per_page Optioneel Integer Hoeveel resultaten wilt u per pagina. Toegestane waarden zijn: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Standaard is 25.
{
    "data": [
        {
            "id": 1,
            "type": "facebook",
            "name": "Fb Ads",
            "pixel": "1234567",
            "last_datetime": null,
            "datetime": "2025-09-14 12:06:10",
        },
    ],
    "meta": {
        "page": 1,
        "results_per_page": 25,
        "total": 1,
        "total_pages": 1
    },
    "links": {
        "first": "https://digily.link/api/pixels?page=1",
        "last": "https://digily.link/api/pixels?page=1",
        "next": null,
        "prev": null,
        "self": "https://digily.link/api/pixels?page=1"
    }
}
GET https://digily.link/api/pixels/{pixel_id}
curl --request GET \
--url 'https://digily.link/api/pixels/{pixel_id}' \
--header 'Authorization: Bearer {api_key}' \
{
    "data": {
        "id": 1,
        "type": "facebook",
        "name": "Fb Ads",
        "pixel": "1234567",
        "last_datetime": null,
        "datetime": "2025-09-14 12:06:10",
    }
}
POST https://digily.link/api/pixels
Parameters Details Beschrijving
type Vereist Tekenreeks Toegestane waarden: facebook , google_analytics , google_tag_manager , linkedin , pinterest , twitter , quora , tiktok , snapchat
name Vereist Tekenreeks -
pixel Vereist Tekenreeks -
curl --request POST \
--url 'https://digily.link/api/pixels' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'type=facebook' \
--form 'name=Facebook' \
--form 'pixel=12345678' \
{
    "data": {
        "id": 1
    }
}
POST https://digily.link/api/pixels/{pixel_id}
Parameters Details Beschrijving
type Optioneel Tekenreeks Toegestane waarden: facebook , google_analytics , google_tag_manager , linkedin , pinterest , twitter , quora , tiktok , snapchat
name Optioneel Tekenreeks -
pixel Optioneel Tekenreeks -
curl --request POST \
--url 'https://digily.link/api/pixels/{pixel_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Facebook New Name' \
{
    "data": {
        "id": 1
    }
}
DELETE https://digily.link/api/pixels/{pixel_id}
curl --request DELETE \
--url 'https://digily.link/api/pixels/{pixel_id}' \
--header 'Authorization: Bearer {api_key}' \