Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic Technology Ltd. All rights reserved.
Switch to light modeSwitch to dark mode
APIs / Productivity / KoboToolbox Primary API
KoboToolbox Primary API logo

KoboToolbox Primary API

Agent-ready OpenAPI document · curated by JenticProductivityForms SurveysapiKey, basic171 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

Manage KoboToolbox projects, deploy and edit forms, pull survey submissions, manage permissions, and export to REST services across the v2 API.

Use for: List all my KoboToolbox projects, Pull the latest submissions from a deployed survey, Find all assets shared with my team, Set up a REST service export to a webhook

Not supported: Does not handle the OpenRosa form-collection protocol, mobile client offline sync, or KoboToolbox account billing - use for v2 asset management, submissions, permissions, and REST service exports only.

Jentic publishes the only available OpenAPI specification for KoboToolbox Primary API, keeping it validated and agent-ready. KoboToolbox is the open-source survey and data-collection platform widely used by humanitarian, public-health, and research organisations to design forms, collect responses on mobile devices, and analyse the resulting datasets. The v2 API exposes assets - the unifying concept covering deployed projects, draft projects, library questions, blocks, templates, and collections - alongside survey data, permissions, REST service exports, organisation and team management, library content, and detailed access logs. It does not cover the OpenRosa endpoints, which are documented separately.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the KoboToolbox Primary API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the KoboToolbox Primary API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fkobotoolbox.org%2Fkobotoolbox" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fkobotoolbox.org%2Fkobotoolbox" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with KoboToolbox Primary API.

Create and deploy a KoboToolbox project as a v2 asset

Pull survey submissions from a deployed KoboToolbox project

Edit project content, library questions, and reusable blocks

Manage user, team, and organisation permissions on a project

Configure REST service exports that push submissions to external endpoints

Export access logs and submission data for audit or analysis

Inspect storage and submission usage for an organisation

Use Cases

Patterns agents use KoboToolbox Primary API for, with concrete tasks.

★ Humanitarian Field Data Pipeline

Run a continuous pipeline from KoboToolbox forms in the field into an analytics warehouse. The /api/v2/assets/{uid_asset}/ family of endpoints exposes the deployed survey and its submissions, while REST service exports push new responses to a downstream URL. Critical for response teams in humanitarian and public-health contexts who collect data offline on mobile devices and need it visible to coordinators within hours.

Pull submissions for asset uid 'aBcDef123' updated in the last hour and write them as JSON rows into the analytics staging bucket.

Research Survey Audit

Audit a research project running on KoboToolbox by combining access logs, asset metadata, and submission counts. /api/v2/access-logs/ and /api/v2/asset_usage/ together produce a defensible record of who saw what and when. Useful for principal investigators preparing for IRB review or for organisations that need a paper trail of data handling decisions.

Export the last 7 days of access logs via /api/v2/access-logs/export/ and produce a per-user summary of project access events.

Project Permissions Automation

Automate permission grants for new collaborators across many KoboToolbox projects. The /api/v2/assets/{uid_asset}/ permission endpoints add and revoke user access, so an HR-driven onboarding flow can give a new staffer the same project view as their team without a manual click-through. Saves coordinators hours when teams expand.

For each new staff member listed in the HR sheet, grant view access to the 5 active project assets they need.

REST Service Export Setup

Configure REST service exports so submissions flow to an external endpoint as soon as enumerators sync from the field. The /api/v2/assets/{uid_asset}/hooks/ endpoint creates the export configuration on a deployed project. This pattern replaces fragile periodic polling with a push-style integration into the team's existing data stack.

Create a REST service hook on asset uid 'aBcDef123' that POSTs new submissions to https://example.com/kobo-incoming.

Agent-Driven Survey Operations via Jentic

Have an AI agent answer field-coordinator questions like 'how many submissions came in this morning' or 'who has access to project X' by calling KoboToolbox through Jentic. The agent searches Jentic for the right v2 operation, loads the schema, and executes with the auth token kept in your Jentic One instance. The agent treats the 171-endpoint surface as a discoverable toolkit instead of a docs maze.

Through Jentic, search for 'list KoboToolbox projects', load /api/v2/assets/, and return the count of deployed assets.

Key Endpoints

171 endpoints — jentic publishes the only available openapi specification for kobotoolbox primary api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

GET

/api/v2/assets/

List assets (projects, library content)

GET

/api/v2/assets/{uid_asset}/

Retrieve a single asset

GET

/api/v2/access-logs/

List access log entries

GET

/api/v2/access-logs/export/

Export access logs

GET

/api/v2/asset_usage/

Read asset usage and storage data

GET

/api/v2/asset_subscriptions/

Manage asset subscriptions

GET

/api/v2/asset_snapshots/

List asset snapshots

GET

/api/v2/assets/

List assets (projects, library content)

GET

/api/v2/assets/{uid_asset}/

Retrieve a single asset

GET

/api/v2/access-logs/

List access log entries

GET

/api/v2/access-logs/export/

Export access logs

GET

/api/v2/asset_usage/

Read asset usage and storage data

GET

/api/v2/asset_subscriptions/

Manage asset subscriptions

GET

/api/v2/asset_snapshots/

List asset snapshots

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring KoboToolbox by hand means learning its token or basic auth and handling the kf.kobotoolbox.org/api/v2 host and its errors yourself. Through Jentic you install once, import KoboToolbox from the API Directory, store the credential once, and your agent calls it.

Permission scoping

Permission scoping

KoboToolbox puts the asset uid in the URL path (/api/v2/assets/{uid_asset}/), so a rule can pin your agent to one asset: it can read that survey asset and its submissions and nothing else. You choose the operations it may call, so permission or export-service changes are not included unless you add them.

Credential management

Credential isolation

Your KoboToolbox credential is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'list survey assets' or 'read submissions for an asset', and Jentic returns the matching KoboToolbox operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

SurveyMonkey API

→

Commercial survey platform with broad template and analytics tooling

Choose SurveyMonkey for marketing and customer-feedback surveys; choose KoboToolbox for offline-first humanitarian and research data collection.

Alternative

Typeform API

→

Conversational form builder with strong consumer UX

Use Typeform when respondents are reached online and conversion matters; use KoboToolbox when enumerators collect data offline on mobile in the field.

Complementary

Airtable API

→

Common downstream destination for KoboToolbox submissions exported via REST hooks

Use Airtable as the analyst-facing view for KoboToolbox submissions pushed by a REST service hook.

FAQs

Specific to using KoboToolbox Primary API through Jentic.

Why is there no official OpenAPI spec for KoboToolbox API?

KoboToolbox does not publish an OpenAPI specification - only a Sphinx-rendered narrative reference. Jentic generates and maintains this spec so that AI agents and developers can call KoboToolbox Primary API via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.

What authentication does the KoboToolbox API use?

The KoboToolbox v2 API supports HTTP Basic auth and Token authentication. The token is sent in the Authorization header. Through Jentic, the token is held in your Jentic One instance and injected at execution time so the agent never sees the raw value.

Can I pull survey submissions through the KoboToolbox API?

Yes. The v2 API treats deployed projects as assets, so submissions are read through the /api/v2/assets/{uid_asset}/ family. For continuous flow rather than polling, configure a REST service hook on the asset to push new submissions to an external endpoint.

What are the rate limits for the KoboToolbox API?

KoboToolbox enforces server-level throttling that varies by deployment (the public kf.kobotoolbox.org instance has tighter limits than self-hosted ones). The spec does not declare a hard number - back off on 429 responses and prefer hooks over tight polling.

How do I list my projects from an AI agent through Jentic?

Search Jentic for 'list KoboToolbox projects', load GET /api/v2/assets/, and execute. Jentic injects the auth token from the vault and the agent receives the asset list including project uid, name, and deployment status.

Does the v2 API cover OpenRosa endpoints?

No. The OpenRosa protocol endpoints used by Collect-style mobile clients are documented separately and are not part of this v2 surface. This spec covers the management, library, and submission-export endpoints under /api/v2/.

Can I limit what my agent is allowed to do with the KoboToolbox API?

Yes. Because you run Jentic One yourself and set the rules, you decide exactly which KoboToolbox operations and credentials your agent may use. Since the asset uid sits in the URL path (/api/v2/assets/{uid_asset}/), you can pin the agent to a single survey asset so it reads only that project and its submissions and nothing else. You also choose the operations it may call, so permission grants and REST export-service changes stay out of reach unless you explicitly add them.

GET STARTED

Start building with KoboToolbox Primary API

Explore with Jentic One
View OpenAPI Document