### Tilda API: Get Project Info Response Example Source: https://help.tilda.cc/api An example JSON response containing specific details for a Tilda project. This includes project ID, title, custom domain, export paths for assets, and associated page IDs. ```json { "status": "FOUND", "result": { "id": "0", "title": "Project title", "descr": "", "customdomain": "project.com", "export_csspath": "", "export_jspath": "", "export_imgpath": "", "indexpageid": "0", "customcsstext": "y", "favicon": "", "page404id": "0", "images": [ { "from": "", "to": "" } ] } } ``` -------------------------------- ### Tilda API: Get Project Pages List Response Example Source: https://help.tilda.cc/api An example JSON response for a request to list pages within a Tilda project. It includes details for each page such as ID, title, creation date, and filename. ```json { "status": "FOUND", "result": [ { "id": "1001", "projectid": "0", "title": "Page title first", "descr": "", "img": "", "featureimg": "", "alias": "", "date": "2014-05-16 14:45:53", "sort": "80", "published": "1419702868", "filename": "page1001.html" }, { "id": "1002", "projectid": "0", "title": "Page title second", "descr": "", "img": "", "featureimg": "", "alias": "", "date": "2014-05-17 10:50:00", "sort": "90" } ] } ``` -------------------------------- ### Tilda API: Get Project List Request Example Source: https://help.tilda.cc/api Demonstrates how to make a GET request to retrieve a list of all projects associated with your Tilda account. Requires your public and secret keys for authentication. Returns a JSON object containing project details. ```http GET https://api.tildacdn.info/v1/getprojectslist/?publickey=00000000000000000000&secretkey=00000000000000000000 ``` -------------------------------- ### WordPress Plugin Installation from GitHub Source: https://help.tilda.cc/wordpress This provides instructions for manually installing the Tilda Publishing plugin for WordPress by downloading it from a GitHub repository. It outlines the steps for downloading, placing the plugin folder, and activating it via the WordPress admin panel. ```bash Download the folder with the plugin (tilda) to the folder /wp-content/plugins. On WordPress, go to the website dashboard. Go to the plugins page (Plugins/Installed). Search for "Tilda Publishing," select the plugin, and click on Activate. ``` -------------------------------- ### Tilda API: Get Project List Response Example Source: https://help.tilda.cc/api An example of a successful JSON response when requesting the list of projects from the Tilda API. It includes a 'status' field and a 'result' array containing information for each project. ```json { "status": "FOUND", "result": [ { "id": "0", "title": "First Project", "descr": "Some info" }, { "id": "1", "title": "Second Project", "descr": "" } ] } ``` -------------------------------- ### Tilda API: Get Project Info Request Example Source: https://help.tilda.cc/api Shows how to request detailed information about a specific Tilda project using its ID. This request requires your public and secret keys, along with the 'projectid'. The response is a JSON object with project settings. ```http GET https://api.tildacdn.info/v1/getprojectinfo/?publickey=00000000000000000000&secretkey=00000000000000000000&projectid=0 ``` -------------------------------- ### WordPress Plugin Setup with Tilda Source: https://help.tilda.cc/index Instructions on setting up the WordPress plugin for Tilda integration. This allows users to leverage Tilda's design capabilities within their WordPress website, potentially for specific pages or sections. ```bash # Example: Steps to set up Tilda WordPress plugin (conceptual) 1. Download the Tilda WordPress plugin. 2. Upload the plugin to your WordPress site via the "Plugins" > "Add New" > "Upload Plugin" interface. 3. Activate the plugin from the "Plugins" menu. 4. Configure Tilda API keys in the plugin settings if required for advanced features. ``` -------------------------------- ### WordPress Plugin Setup with Tilda API Keys Source: https://help.tilda.cc/wordpress This snippet demonstrates how to retrieve and set Tilda API keys within the WordPress plugin settings. It requires an active Tilda Business Plan and involves generating keys from Tilda's site settings and pasting them into the WordPress plugin configuration. ```php On Tilda, go to the Site Settings → Export → API Integration and click "Generate API keys." On WordPress, go to the WordPress Dashboard → Settings → Tilda Publishing, and paste the public and private keys → click "Save." ```