The Tilda API provides an easy-to-use interface for creating beautiful, custom websites. With the Tilda API, you can create and manage a variety of content types, from static HTML sites, to database-driven web applications.
Tilda provides an extensive library of features that make web building a breeze. For example, with Tilda, you can easily add multimedia content, style elements, manage SEO, customize layout and more. Plus, you can add third-party integrations like Google Analytics to track website performance, and manage users for easy collaboration.
With the Tilda API, you can build a variety of websites, from basic static sites, to more complex web applications. Here are just a few examples of what you can create with Tilda:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
tilda: {
type: "app",
app: "tilda",
}
},
async run({steps, $}) {
return await axios($, {
url: `http://api.tildacdn.info/v1/getprojectslist/`,
params: {
publickey: `${this.tilda.$auth.public_key}`,
secretkey: `${this.tilda.$auth.secret_key}`,
},
})
},
})
Tilda uses API keys for authentication. When you connect your Tilda account, Pipedream securely stores the keys so you can easily authenticate to Tilda APIs in both code and no-code steps.
You need a Public Key and a Secret Key to use API. It's an experimental function, so please contact hello@tilda.cc
if you have any questions.