• package: @agentic/typeform
  • exports: class TypeformClient, namespace typeform
  • env vars: TYPEFORM_API_KEY
  • source
  • typeform api docs

Install

npm install @agentic/typeform

Usage

import { TypeformClient } from '@agentic/typeform'

const typeform = new TypeformClient()

const responses = await typeform.getResponsesForForm({
  formId: 'TODO'
})

const insights = await typeform.getInsightsForForm({
  formId: 'TODO'
})