Karşılama sayfaları
GET https://bee.ws/api/splash-pages/
curl --request GET \
--url 'https://bee.ws/api/splash-pages/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://bee.ws/api/splash-pages/' \
--header 'Authorization: Bearer {api_key}' \
| Parametreler | Ayrıntılar | Açıklama |
|---|---|---|
| page | İsteğe bağlı Tamsayı | Sonuçları almak istediğiniz sayfa numarası. Varsayılanı 1. |
| results_per_page | İsteğe bağlı Tamsayı | Sayfa başına kaç sonuç istediğiniz. İzin verilen değerler: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Varsayılan 25 değeridir. |
{
"data": [
{
"id": 1,
"name": "Development",
"color": "#0e23cc",
"last_datetime": null,
"datetime": "2025-11-08 13:58:24",
},
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://bee.ws/api/projects?page=1",
"last": "https://bee.ws/api/projects?page=1",
"next": null,
"prev": null,
"self": "https://bee.ws/api/projects?page=1"
}
}
GET https://bee.ws/api/splash-pages/{splash_page_id}
curl --request GET \
--url 'https://bee.ws/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://bee.ws/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \
{
"data": {
"id": 1,
"name": "Development",
"color": "#0e23cc",
"last_datetime": null,
"datetime": "2025-11-08 13:58:24",
}
}
POST https://bee.ws/api/projects
| Parametreler | Ayrıntılar | Açıklama |
|---|---|---|
| name | Zorunlu 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ı Mantıksal | - |
curl --request POST \
--url 'https://bee.ws/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://bee.ws/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://bee.ws/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ı Tamsayı | - |
| auto_redirect | İsteğe bağlı Mantıksal | - |
curl --request POST \
--url 'https://bee.ws/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://bee.ws/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://bee.ws/api/splash-pages/{splash_page_id}
curl --request DELETE \
--url 'https://bee.ws/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://bee.ws/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \