Tilda

Website Builder

Go to site

Tilda API Integrations

Build and run workflows using the Tilda API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

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:

  • Informational websites
  • Online portfolios
  • Blogs
  • E-commerce stores
  • Database-driven web applications
  • Communities
  • Intranets
  • Custom dashboards
  • Corporate websites
  • Online magazines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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}`,
      },
    })
  },
})

Authentication

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.