Halaman pembuka
GET https://qira.io/api/splash-pages/
curl --request GET \
--url 'https://qira.io/api/splash-pages/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://qira.io/api/splash-pages/' \
--header 'Authorization: Bearer {api_key}' \
Parameter | Rincian | Deskripsi |
---|---|---|
page | Opsional Bilangan bulat | Nomor halaman yang Anda inginkan hasilnya. Default ke 1 . |
results_per_page | Opsional Bilangan bulat | Berapa banyak hasil yang Anda inginkan per halaman. Nilai yang diizinkan adalah: 10 , 25 , 50 , 100 , 250 , 500 , 1000 . Default ke 25 . |
{ "data": [ { "id": 1, "name": "Development", "color": "#0e23cc", "last_datetime": null, "datetime": "2025-09-16 03:47:41", }, ], "meta": { "page": 1, "results_per_page": 25, "total": 1, "total_pages": 1 }, "links": { "first": "https://qira.io/api/projects?page=1", "last": "https://qira.io/api/projects?page=1", "next": null, "prev": null, "self": "https://qira.io/api/projects?page=1" } }
GET https://qira.io/api/splash-pages/{splash_page_id}
curl --request GET \
--url 'https://qira.io/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://qira.io/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \
{ "data": { "id": 1, "name": "Development", "color": "#0e23cc", "last_datetime": null, "datetime": "2025-09-16 03:47:41", } }
POST https://qira.io/api/projects
Parameter | Rincian | Deskripsi |
---|---|---|
name | Diperlukan String | - |
title | Opsional String | - |
logo | Opsional Berkas | - |
favicon | Opsional Berkas | - |
opengraph | Opsional Berkas | - |
description | Opsional String | - |
secondary_button_name | Opsional String | - |
secondary_button_url | Opsional String | - |
custom_css | Opsional String | - |
custom_js | Opsional String | - |
ads_header | Opsional String | - |
ads_footer | Opsional String | - |
link_unlock_seconds | Opsional Bilangan bulat | - |
auto_redirect | Opsional Boolean | - |
curl --request POST \
--url 'https://qira.io/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' \
--url 'https://qira.io/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://qira.io/api/splash-pages/{splash_page_id}
Parameter | Rincian | Deskripsi |
---|---|---|
name | Opsional String | - |
title | Opsional String | - |
logo | Opsional Berkas | - |
favicon | Opsional Berkas | - |
opengraph | Opsional Berkas | - |
description | Opsional String | - |
secondary_button_name | Opsional String | - |
secondary_button_url | Opsional String | - |
custom_css | Opsional String | - |
custom_js | Opsional String | - |
ads_header | Opsional String | - |
ads_footer | Opsional String | - |
link_unlock_seconds | Opsional Bilangan bulat | - |
auto_redirect | Opsional Boolean | - |
curl --request POST \
--url 'https://qira.io/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' \
--url 'https://qira.io/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://qira.io/api/splash-pages/{splash_page_id}
curl --request DELETE \
--url 'https://qira.io/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://qira.io/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \