Bibio tamamı ile özgür ücretsiz bir araçtır. Tüm özellikler ücretsizdir ve sınırsız olarak kullanılabilir.

Açılış Sayfaları

GET https://bibio.com.tr/api/splash-pages/
curl --request GET \
--url 'https://bibio.com.tr/api/splash-pages/' \
--header 'Authorization: Bearer {api_key}' \
Parametreler Detaylar Açıklama
page İsteğe bağlı Tamsayı Sonuç almak istediğiniz sayfa numarası. Varsayılan olarak 1'dir.
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 olarak 25 şeklindedir.
{ "data": [ { "id": 1, "name": "Development", "color": "#0e23cc", "last_datetime": "2021-03-14 21:22:37", "datetime": "2021-02-04 17:51:07" }, ], "meta": { "page": 1, "results_per_page": 25, "total": 1, "total_pages": 1 }, "links": { "first": "https://bibio.com.tr/api/projects?&page=1", "last": "https://bibio.com.tr/api/projects?&page=1", "next": null, "prev": null, "self": "https://bibio.com.tr/api/projects?&page=1" } }
GET https://bibio.com.tr/api/splash-pages/{splash_page_id}
curl --request GET \
--url 'https://bibio.com.tr/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \
{ "data": { "id": 1, "name": "Development", "color": "#0e23cc", "last_datetime": "2021-03-14 21:22:37", "datetime": "2021-02-04 17:51:07" } }
POST https://bibio.com.tr/api/projects
Parametreler Detaylar Açıklama
name Gerekli Dize -
title İsteğe bağlı Dize -
logo İ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://bibio.com.tr/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://bibio.com.tr/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 -
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://bibio.com.tr/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://bibio.com.tr/api/splash-pages/{splash_page_id}
curl --request DELETE \
--url 'https://bibio.com.tr/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \