Xata

Think data, not databases. The serverless, branchable, scalable, consistent, highly available, and searchable database service focused on the developer experience.

Go to site

Xata API Integrations

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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    xata: {
      type: "app",
      app: "xata",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.xata.io/user`,
      headers: {
        Authorization: `Bearer ${this.xata.$auth.api_key}`,
      },
    })
  },
})

Authentication

Xata uses API keys for authentication. When you connect your Xata account, Pipedream securely stores the keys so you can easily authenticate to Xata APIs in both code and no-code steps.

Create a new API key or retrieve existing keys from your Xata account settings and paste it below.