स्प्लैश पृष्ठ
                                GET https://digily.link/api/splash-pages/
                            
                        
                                curl --request GET \
--url 'https://digily.link/api/splash-pages/' \
--header 'Authorization: Bearer {api_key}' \
                        --url 'https://digily.link/api/splash-pages/' \
--header 'Authorization: Bearer {api_key}' \
| पैरामीटर | विवरण | विवरण | 
|---|---|---|
| page | वैकल्पिक पूर्णांक | आप जिस पृष्ठ संख्या से परिणाम चाहते हैं। डिफ़ॉल्ट रूप से 1। | 
                            
| results_per_page | वैकल्पिक पूर्णांक | आप प्रति पृष्ठ कितने परिणाम चाहते हैं। अनुमत मान हैं: 10 , 25 , 50 , 100 , 250 , 500 , 1000. डिफ़ॉल्ट है 25. | 
                            
{
    "data": [
        {
            "id": 1,
            "name": "Development",
            "color": "#0e23cc",
            "last_datetime": null,
            "datetime": "2025-11-04 13:16:15",
        },
    ],
    "meta": {
        "page": 1,
        "results_per_page": 25,
        "total": 1,
        "total_pages": 1
    },
    "links": {
        "first": "https://digily.link/api/projects?page=1",
        "last": "https://digily.link/api/projects?page=1",
        "next": null,
        "prev": null,
        "self": "https://digily.link/api/projects?page=1"
    }
}
                        
                                GET https://digily.link/api/splash-pages/{splash_page_id}
                            
                        
                                curl --request GET \
--url 'https://digily.link/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \
                        --url 'https://digily.link/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \
{
    "data": {
        "id": 1,
        "name": "Development",
        "color": "#0e23cc",
        "last_datetime": null,
        "datetime": "2025-11-04 13:16:15",
    }
}
                        
                                POST https://digily.link/api/projects
                            
                        | पैरामीटर | विवरण | विवरण | 
|---|---|---|
| name | आवश्यक है स्ट्रिंग | - | 
| title | वैकल्पिक स्ट्रिंग | - | 
| logo | वैकल्पिक फ़ाइल | - | 
| favicon | वैकल्पिक फ़ाइल | - | 
| opengraph | वैकल्पिक फ़ाइल | - | 
| description | वैकल्पिक स्ट्रिंग | - | 
| secondary_button_name | वैकल्पिक स्ट्रिंग | - | 
| secondary_button_url | वैकल्पिक स्ट्रिंग | - | 
| custom_css | वैकल्पिक स्ट्रिंग | - | 
| custom_js | वैकल्पिक स्ट्रिंग | - | 
| ads_header | वैकल्पिक स्ट्रिंग | - | 
| ads_footer | वैकल्पिक स्ट्रिंग | - | 
| link_unlock_seconds | वैकल्पिक पूर्णांक | - | 
| auto_redirect | वैकल्पिक बूलियन | - | 
                                curl --request POST \
--url 'https://digily.link/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://digily.link/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://digily.link/api/splash-pages/{splash_page_id}
                            
                        | पैरामीटर | विवरण | विवरण | 
|---|---|---|
| name | वैकल्पिक स्ट्रिंग | - | 
| title | वैकल्पिक स्ट्रिंग | - | 
| logo | वैकल्पिक फ़ाइल | - | 
| favicon | वैकल्पिक फ़ाइल | - | 
| opengraph | वैकल्पिक फ़ाइल | - | 
| description | वैकल्पिक स्ट्रिंग | - | 
| secondary_button_name | वैकल्पिक स्ट्रिंग | - | 
| secondary_button_url | वैकल्पिक स्ट्रिंग | - | 
| custom_css | वैकल्पिक स्ट्रिंग | - | 
| custom_js | वैकल्पिक स्ट्रिंग | - | 
| ads_header | वैकल्पिक स्ट्रिंग | - | 
| ads_footer | वैकल्पिक स्ट्रिंग | - | 
| link_unlock_seconds | वैकल्पिक पूर्णांक | - | 
| auto_redirect | वैकल्पिक बूलियन | - | 
                                curl --request POST \
--url 'https://digily.link/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://digily.link/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://digily.link/api/splash-pages/{splash_page_id}
                        
                    
                            curl --request DELETE \
--url 'https://digily.link/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \
                        
                    --url 'https://digily.link/api/splash-pages/{splash_page_id}' \
--header 'Authorization: Bearer {api_key}' \