Açılış sayfaları

GET https://www.linknow.bio/api/splash-pages/
curl --request GET \
--url 'https://www.linknow.bio/api/splash-pages/' \
--header 'Authorization: Bearer {api_key}' \
Parametreler Detaylar Açıklama
page İsteğe bağlı Tamsayı Sonuçları istediğiniz sayfa numarası. Varsayılan olarak 1.
results_per_page İsteğe bağlı Tamsayı Sayfa başına kaç sonuç istiyorsunuz. İzin verilen değerler: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Varsayılan: 25.
{
    "data": [
        {
            "id": 1,
            "name": "Development",
            "color": "#0e23cc",
            "last_datetime": null,
            "datetime": "2025-10-19 09:48:02",
        },
    ],
    "meta": {
        "page": 1,
        "results_per_page": 25,
        "total": 1,
        "total_pages": 1
    },
    "links": {
        "first": "https://www.linknow.bio/api/projects?page=1",
        "last": "https://www.linknow.bio/api/projects?page=1",
        "next": null,
        "prev": null,
        "self": "https://www.linknow.bio/api/projects?page=1"
    }
}
GET https://www.linknow.bio/api/splash-pages/{splash_page_id}
curl --request GET \
--url 'https://www.linknow.bio/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \
{
    "data": {
        "id": 1,
        "name": "Development",
        "color": "#0e23cc",
        "last_datetime": null,
        "datetime": "2025-10-19 09:48:02",
    }
}
POST https://www.linknow.bio/api/projects
Parametreler Detaylar Açıklama
name Gerekli Dize -
title İsteğe bağlı Dize -
logo İsteğe bağlı Dosya -
favicon İsteğe bağlı Dosya -
opengraph İsteğe bağlı Dosya -
description İsteğe bağlı Dize -
secondary_button_name İsteğe bağlı Dize -
secondary_button_url İsteğe bağlı Dize -
custom_css İsteğe bağlı Dize -
custom_js İsteğe bağlı Dize -
ads_header İsteğe bağlı Dize -
ads_footer İsteğe bağlı Dize -
link_unlock_seconds İsteğe bağlı Tamsayı -
auto_redirect İsteğe bağlı Boolean -
curl --request POST \
--url 'https://www.linknow.bio/api/projects' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Sample splash page' \
--form 'title=Custom splash page title' \
--form 'description=Custom splash page description' \
{
    "data": {
        "id": 1
    }
}
POST https://www.linknow.bio/api/splash-pages/{splash_page_id}
Parametreler Detaylar Açıklama
name İsteğe bağlı Dize -
title İsteğe bağlı Dize -
logo İsteğe bağlı Dosya -
favicon İsteğe bağlı Dosya -
opengraph İsteğe bağlı Dosya -
description İsteğe bağlı Dize -
secondary_button_name İsteğe bağlı Dize -
secondary_button_url İsteğe bağlı Dize -
custom_css İsteğe bağlı Dize -
custom_js İsteğe bağlı Dize -
ads_header İsteğe bağlı Dize -
ads_footer İsteğe bağlı Dize -
link_unlock_seconds İsteğe bağlı Tamsayı -
auto_redirect İsteğe bağlı Boolean -
curl --request POST \
--url 'https://www.linknow.bio/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Sample splash page' \
--form 'title=Custom splash page title' \
--form 'description=Custom splash page description' \
{
    "data": {
        "id": 1
    }
}
DELETE https://www.linknow.bio/api/splash-pages/{splash_page_id}
curl --request DELETE \
--url 'https://www.linknow.bio/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \