{"id":22790698,"url":"https://github.com/zachalam/typeform-node-api","last_synced_at":"2025-03-30T16:45:17.135Z","repository":{"id":57383564,"uuid":"56304034","full_name":"zachalam/typeform-node-api","owner":"zachalam","description":"The UNOFFICIAL node.js wrapper for the typeform API.","archived":false,"fork":false,"pushed_at":"2016-10-22T22:15:25.000Z","size":8,"stargazers_count":1,"open_issues_count":3,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-05T18:38:53.105Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zachalam.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-04-15T08:27:17.000Z","updated_at":"2016-12-21T23:49:55.000Z","dependencies_parsed_at":"2022-09-14T00:21:19.683Z","dependency_job_id":null,"html_url":"https://github.com/zachalam/typeform-node-api","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zachalam%2Ftypeform-node-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zachalam%2Ftypeform-node-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zachalam%2Ftypeform-node-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zachalam%2Ftypeform-node-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zachalam","download_url":"https://codeload.github.com/zachalam/typeform-node-api/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246350939,"owners_count":20763228,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-12T02:28:42.352Z","updated_at":"2025-03-30T16:45:17.104Z","avatar_url":"https://github.com/zachalam.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# typeform-node-api\nThe UNOFFICIAL node.js wrapper for the typeform API.\n\nThis Node.js module works with the popular form creation service Typeform - https://www.typeform.com/ - use your\nAPI key with the module to list your forms, and access responses.\n\n## Install\n```\nnpm install typeform-node-api\n```\n\n## Usage\n\nRequire typeform module and instantiate new object.\n```js\n// import typeform module\nvar Typeform = require('typeform-node-api');\n// create new instance of Typeform object.\nvar typeform_api = new Typeform('api_key');\n```\n\n___\n\n## Methods\n\nGet a response that lists typeforms we have access to:\n```js\ntypeform_api.getForms(function(data) {\n    // data now contains an array of objects with all your forms.\n    // [ { id: 'B1ulG1', name: 'Registration Form' }, { id: 'WZRt5l', name: 'Contact Form' } ]\n});\n```\n\n\nGet a response that details specific information about a form:\n```js\ntypeform_api.getFormStructure(function('FORM_ID',data) {\n    // data now contains a object with details about your form\n    // { uid: 'BoulG1', fields: [ { id: 'textfield_20678701', type: 'textfield', question: 'What\\'s your name?' }] }\n});\n```\n\n\nGet a response that lists complete and incomplete form responses.\n```js\ntypeform_api.getFormResponses(function('FORM_ID',data) {\n    // data now contains a object with form responses.\n});\n```\n\n\nGet a response that lists complete form responses.\n```js\ntypeform_api.getCompletedFormResponses(function('FORM_ID',data) {\n    // data now contains a object with form responses.\n});\n```\n\n\nGet a response that lists incomplete form responses.\n```js\ntypeform_api.getIncompleteFormResponses(function('FORM_ID',data) {\n    // data now contains a object with form responses.\n});\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzachalam%2Ftypeform-node-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzachalam%2Ftypeform-node-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzachalam%2Ftypeform-node-api/lists"}