Simvoly

Website Builder

Go to site
Explore
/
Apps
/
Simvoly

Simvoly API Integrations

Build and run workflows using the Simvoly 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

Simvoly API is designed to make it easy to build and maintain websites and online services. It provides a powerful set of tools that enable developers to quickly create almost any type of web application. Whether you're a professional web developer, a startup looking to get your product to market, or just someone with an awesome idea, Simvoly API will help you bring your vision to life. Here are a few examples of what you can build using the Simvoly API:

  • Business websites
  • E-commerce stores
  • Online forums
  • Social media platforms
  • Blogs
  • Classified advertisements
  • Portfolios
  • Event management sites
  • Online banking and payment systems
  • Online gaming and entertainment sites
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: {
    simvoly: {
      type: "app",
      app: "simvoly",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.simvoly.$auth.subdomain}.simvoly.com/api/site/contacts`,
      headers: {
        Authorization: `Bearer ${this.simvoly.$auth.api_key}`,
      },
    })
  },
})

Authentication

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

You can view your API key in your website > Website Settings > Applications > API Key.
Your subdomain appears before simvoly.com such as https://[subdomain].simvoly.com.