Bağlantı istatistikleri
GET https://rqrcode.com/api/statistics/{link_id}
Parametreler | Detaylar | Açıklama |
---|---|---|
start_date | Gerekli | Başlangıç tarihi Y-m-d formatında. |
end_date | Gerekli | Y-m-d formatında bitiş tarihi. |
type | İsteğe bağlı Dize | İzin verilen değerler: overview , referrer_host , referrer_path , continent_code , country_code , city_name , os_name , browser_name , device_type , browser_language , utm_source , utm_medium , utm_campaign |
country_code | İsteğe bağlı Dize | Kullanılabilir olduğunda: type = city_name |
utm_source | İsteğe bağlı Dize | Kullanılabilir olduğunda: type = utm_medium, utm_campaign |
utm_medium | İsteğe bağlı Dize | Kullanılabilir olduğunda: type = utm_campaign |
referrer_host | İsteğe bağlı Dize | Kullanılabilir olduğunda: type = referrer_path |
curl --request GET \
--url 'https://rqrcode.com/api/statistics/{link_id}?start_date=2020-01-01&end_date=2021-01-01' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://rqrcode.com/api/statistics/{link_id}?start_date=2020-01-01&end_date=2021-01-01' \
--header 'Authorization: Bearer {api_key}' \
{
"data": [
{
"pageviews": 20,
"visitors": 5,
"formatted_date": "2021-01"
},
{
"pageviews": 35,
"visitors": 10,
"formatted_date": "2021-02"
},
{
"pageviews": 50,
"visitors": 25,
"formatted_date": "2021-03"
}
]
}