"Bu sayfa, ilgili kullanıcının sorumluluğunda olup, burada yer alan bağlantılar üçüncü taraflara aittir. Bağlantıların içeriği, doğruluğu veya güvenliği konusunda herhangi bir garanti verilmemekte olup, site yönetimi bu bağlantılardan doğabilecek herhangi bir sorumluluğu kabul etmez. Devam ederek bu koşulları kabul etmiş sayılırsınız."

Açılış sayfaları

GET https://linklerim.net/api/splash-pages/
curl --request GET \
--url 'https://linklerim.net/api/splash-pages/' \
--header 'Authorization: Bearer {api_key}' \
Parametreler Ayrıntılar Açıklama
page İsteğe bağlı Tam sayı Sonuç almak istediğiniz sayfa numarası. Varsayılan 1'dir.
results_per_page İsteğe bağlı Tam sayı Sayfada kaç sonuç istediğinizi belirtin. İzin verilen değerler: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Varsayılan değer 25'dir.
{
    "data": [
        {
            "id": 1,
            "name": "Development",
            "color": "#0e23cc",
            "last_datetime": null,
            "datetime": "2025-12-19 19:22:43",
        },
    ],
    "meta": {
        "page": 1,
        "results_per_page": 25,
        "total": 1,
        "total_pages": 1
    },
    "links": {
        "first": "https://linklerim.net/api/projects?page=1",
        "last": "https://linklerim.net/api/projects?page=1",
        "next": null,
        "prev": null,
        "self": "https://linklerim.net/api/projects?page=1"
    }
}
GET https://linklerim.net/api/splash-pages/{splash_page_id}
curl --request GET \
--url 'https://linklerim.net/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \
{
    "data": {
        "id": 1,
        "name": "Development",
        "color": "#0e23cc",
        "last_datetime": null,
        "datetime": "2025-12-19 19:22:43",
    }
}
POST https://linklerim.net/api/projects
Parametreler Ayrıntılar 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ı Tam sayı -
auto_redirect İsteğe bağlı Boolean -
curl --request POST \
--url 'https://linklerim.net/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://linklerim.net/api/splash-pages/{splash_page_id}
Parametreler Ayrıntılar 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ı Tam sayı -
auto_redirect İsteğe bağlı Boolean -
curl --request POST \
--url 'https://linklerim.net/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://linklerim.net/api/splash-pages/{splash_page_id}
curl --request DELETE \
--url 'https://linklerim.net/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \