For Agents
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Version 2 of the GoFormz Rest 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.
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%2Fversion2ofthegoformz%2Fversion2ofthegoformz" | shStep 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%2Fversion2ofthegoformz%2Fversion2ofthegoformz" | sh
jentic register # connects your agent to your Jentic One instanceJentic 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.
What an agent can do with Version 2 of the GoFormz Rest API. API.
DataSources_Post
DataSources_Get
DataSources_Patch
DataSources_Delete
GET STARTED
Programmatically datasources_post, datasources_get. Covers 36 operations with basic authentication.
Use for: I need to datasources_post, I want to datasources_get, Search for datasources_get, Find all datasources_patch
Not supported: Does not handle payments, communications, or crm - use for developer tools only.
Version 2 of the GoFormz Rest API. - OpenAPI Specification. The API exposes 36 endpoints secured with basic authentication.
Monitor Version 2 of the GoFormz Rest API. operational status and events
Patterns agents use Version 2 of the GoFormz Rest API. API for, with concrete tasks.
★ Developer Tools Operations
Use the Version 2 of the GoFormz Rest API. to perform developer tools operations programmatically. The API provides 36 endpoints covering core functionality including datasources_post, datasources_get, datasources_get.
Call POST /v2/datasources to datasources_post
Automated DataSources Management
Automate datasources operations by combining multiple Version 2 of the GoFormz Rest API. endpoints. Agents can datasources_get and then datasources_get in a single workflow.
Call GET /v2/datasources to datasources_get, then verify the result
AI Agent Integration via Jentic
AI agents discover and call Version 2 of the GoFormz Rest API. endpoints through Jentic without managing credentials directly. An agent searches for the required operation by intent, receives the matching endpoint schema, and executes the call with Jentic-managed authentication. This eliminates the need to read API documentation or handle basic tokens manually.
Search Jentic for 'datasources_post', load the operation schema, and execute with Jentic-managed credentials
36 endpoints — version 2 of the goformz rest api.
METHOD
PATH
DESCRIPTION
/v2/datasources
DataSources_Post
/v2/datasources
DataSources_Get
/v2/datasources/{id}
DataSources_Get
/v2/datasources/{id}
DataSources_Patch
/v2/datasources/{id}
DataSources_Delete
/v2/datasources/{dataSourceId}/rows
DataSources_PostRow
/v2/datasources/{dataSourceId}/rows
DataSources_GetRows
/v2/datasources/{dataSourceId}/rows/batch
DataSources_PostRows
/v2/datasources
DataSources_Post
/v2/datasources
DataSources_Get
/v2/datasources/{id}
DataSources_Get
/v2/datasources/{id}
DataSources_Patch
/v2/datasources/{id}
DataSources_Delete
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the GoFormz REST API by hand means setting up basic HTTP auth against api.goformz.com and coding each data source and row operation yourself. Through Jentic you install once, import the GoFormz REST API from the API Directory, store the credentials once, and your agent calls it.
Permission scoping
GoFormz puts the data source id in the URL path (/v2/datasources/{id}, /v2/datasources/{dataSourceId}/rows), so a rule can pin your agent to one data source. You choose the operations it may call, so destructive ones like deleting a data source are not included unless you add them.
Credential isolation
Your GoFormz basic auth credentials are stored once, encrypted, by your own Jentic One instance and injected at execution time. They never enter the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'create a data source' or 'add rows to a data source', and Jentic returns the matching GoFormz operation with its input schema so the agent calls the right endpoint without browsing the reference docs.
Alternatives and complements available in the Jentic catalogue.
Github
Alternative developer tools API
Choose Github when you need a different approach to developer tools operations
Specific to using Version 2 of the GoFormz Rest API. API through Jentic.
What authentication does the Version 2 of the GoFormz Rest API. use?
The Version 2 of the GoFormz Rest API. uses HTTP Basic authentication with username and password. Through Jentic, these credentials are stored encrypted in your Jentic One instance and injected at execution time, so raw secrets never enter the agent context.
Can I datasources_post with the Version 2 of the GoFormz Rest API.?
Yes. Use the POST /v2/datasources endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Version 2 of the GoFormz Rest API.?
Rate limits are not specified in the OpenAPI spec. Check the vendor documentation for current limits. Through Jentic, rate limiting is handled automatically with retry logic built into the execution layer.
How do I datasources_post through Jentic?
Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'datasources_post'. Jentic returns the matching Version 2 of the GoFormz Rest API. operation with its input schema. Load the schema and execute the call - credentials are injected automatically.
How many endpoints does the Version 2 of the GoFormz Rest API. have?
The Version 2 of the GoFormz Rest API. exposes 36 endpoints covering datasources, exports, files operations.
/v2/datasources/{dataSourceId}/rows
DataSources_PostRow
/v2/datasources/{dataSourceId}/rows
DataSources_GetRows
/v2/datasources/{dataSourceId}/rows/batch
DataSources_PostRows