Özel alan adları

GET https://bibio.me/api/domains/
curl --request GET \
--url 'https://bibio.me/api/domains/' \
--header 'Authorization: Bearer {api_key}' \
Parametreler Ayrıntılar Açıklama
page Optional Tamsayı Sonuç almak istediğiniz sayfa numarası. Varsayılan olarak 1 şeklindedir.
results_per_page Optional Tamsayı Sayfa başına kaç sonuç istersiniz. İzin verilen değerler: 10 , 25 , 50 , 100 , 250 , 500. Varsayılan olarak 25 şeklindedir.
{
    "data": [
        {
            "id": 1,
            "scheme": "https://",
            "host": "example.com",
            "custom_index_url": "",
            "is_enabled": true,
            "last_datetime": null,
            "datetime": "2021-02-04 23:29:18"
        },
    ],
    "meta": {
        "page": 1,
        "results_per_page": 25,
        "total": 1,
        "total_pages": 1
    },
    "links": {
        "first": "https://bibio.me/api/domains?&page=1",
        "last": "https://bibio.me/api/domains?&page=1",
        "next": null,
        "prev": null,
        "self": "https://bibio.me/api/domains?&page=1"
    }
}
GET https://bibio.me/api/domains/{domain_id}
curl --request GET \
--url 'https://bibio.me/api/domains/{domain_id}' \
--header 'Authorization: Bearer {api_key}' \
{
    "data": {
        "id": 1,
        "scheme": "https://",
        "host": "example.com",
        "custom_index_url": "",
        "is_enabled": true,
        "last_datetime": null,
        "datetime": "2021-02-04 23:29:18"
    }
}
POST https://bibio.me/api/domains
Parametreler Ayrıntılar Açıklama
host Gerekli Dize -
custom_index_url Optional Dize -
custom_not_found_url Optional Dize -
curl --request POST \
--url 'https://bibio.me/api/domains' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'host=domain.com' \
--form 'custom_index_url=https://mywebsite.com/' \
--form 'custom_not_found_url=https://mywebsite.com/404-page'
{
    "data": {
        "id": 1
    }
}
POST https://bibio.me/api/domains/{domain_id}
Parametreler Ayrıntılar Açıklama
host Optional Dize -
custom_index_url Optional Dize -
custom_not_found_url Optional Dize -
curl --request POST \
--url 'https://bibio.me/api/domains/{domain_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'host=domain.com' \
{
  "data": {
    "id": 1
  }
}
DELETE https://bibio.me/api/domains/{domain_id}
curl --request DELETE \
--url 'https://bibio.me/api/domains/{domain_id}' \
--header 'Authorization: Bearer {api_key}' \