Typeform

Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.

Integrate the Typeform API with the GeoDB Cities API

Setup the Typeform API trigger to run a workflow which integrates with the GeoDB Cities API. Pipedream's integration platform allows you to integrate Typeform and GeoDB Cities remarkably fast. Free for developers.

Find Cities with GeoDB Cities API on New Submission from Typeform API
Typeform + GeoDB Cities
 
Try it
Get Country Details with GeoDB Cities API on New Submission from Typeform API
Typeform + GeoDB Cities
 
Try it
Get Region Details with GeoDB Cities API on New Submission from Typeform API
Typeform + GeoDB Cities
 
Try it
New Submission from the Typeform API

Emit new submission

 
Try it
Find Cities with the GeoDB Cities API

Find cities, filtering by optional criteria. If no criteria are set, you will get back all known cities with a population of at least 1000. See the docs.

 
Try it
Create a Form with the Typeform API

Creates a form with its corresponing fields. See the docs here

 
Try it
Get Country Details with the GeoDB Cities API

Get the details for a specific country, including number of regions. See the docs.

 
Try it
Create an Image with the Typeform API

Adds an image in your Typeform account. See the docs here

 
Try it
Get Region Details with the GeoDB Cities API

Get the details of a specific country region, including number of cities. See the docs.

 
Try it

Overview of Typeform

The Typeform API furnishes you with the means to create dynamic forms and collect user responses in real-time. By leveraging this API within Pipedream's serverless platform, you can automate workflows to process this data, integrate seamlessly with other services, and react to form submissions instantaneously. This empowers you to craft tailored responses, synchronize with databases, trigger email campaigns, or even manage event registrations without manual intervention.

Connect Typeform

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: {
    typeform: {
      type: "app",
      app: "typeform",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.typeform.com/me`,
      headers: {
        Authorization: `Bearer ${this.typeform.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of GeoDB Cities

The GeoDB Cities API lets you tap into a rich dataset of worldwide cities, their attributes, and related data. On Pipedream, you can use this API to create workflows that automate location-based tasks, enrich data with geographical context, or power apps with location intelligence. For instance, you could trigger a workflow whenever a new city is added to a database, gather demographic information based on city names, or even integrate with travel platforms to plan itineraries.

Connect GeoDB Cities

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    geodb_cities: {
      type: "app",
      app: "geodb_cities",
    }
  },
  async run({steps, $}) {
    const data = {
      "query": `{country(id:"US"){name region(code:"CA"){name populatedPlaces(first:10){totalCount pageInfo{startCursor endCursor hasNextPage}edges{node{name}}}}}}`,
    }
    return await axios($, {
      method: "post",
      url: `http://geodb-free-service.wirefreethought.com/graphql`,
      headers: {
        "x-rapidapi-key": `${this.geodb_cities.$auth.api_key}`,
        "Content-Type": `application/json`,
      },
      data,
    })
  },
})