For Agents
Inspect Apideck Unify's connector catalogue: list connectors, see which unified APIs each implements, read documentation, and fetch the schema for any resource.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Connector 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.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | 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 Connector API API.
List the connectors Apideck Unify supports along with logo, status, and supported unified APIs
Read the unified APIs (CRM, ATS, Accounting, etc.) and which connectors expose each one
Inspect the resource list for a connector or unified API to see what is supported
Fetch the documentation Markdown for a specific connector
GET STARTED
Use for: List all connectors Apideck supports, Find connectors that implement the CRM unified API, Get the resource schema for the contact object on the HubSpot connector, Read the documentation for the Salesforce connector
Not supported: Does not perform business operations on connected systems - use for inspecting the Apideck Unify connector catalogue, schemas, and coverage only.
The Apideck Connector API is the meta-API that describes the integrations Apideck Unify supports. It exposes the list of connectors (Salesforce, HubSpot, Xero, Greenhouse, Slack, etc.), the unified APIs each connector implements (CRM, ATS, Accounting, and so on), the documentation pages, and the schema and example payload for any resource. Builders use it to render in-app integration catalogues, check coverage before they prompt a customer to authorise, and inspect the schema for an operation at runtime.
Read the JSON schema for any resource on a specific connector
Read example payloads for a resource on a specific connector
Patterns agents use Connector API API for, with concrete tasks.
★ In-App Integration Catalogue
Render a live integration catalogue inside an application without hard-coding the connector list. /connector/connectors returns logos, names, statuses, and supported unified APIs, so the in-app picker shows whatever Apideck currently supports, including new connectors added since the build. Common pattern for SaaS apps that want to advertise depth of integration without a content-update release for each new connector.
GET /connector/connectors and render each connector with logo, name, and the unified APIs it implements
Pre-Auth Coverage Check
Before prompting a customer to authorise a connector, check whether the connector implements the resources you actually need. /connector/apis/{id}/resources/{resource_id}/coverage returns the connector list that supports a resource, so an app can warn the customer that, for example, NetSuite supports Invoices but not Aged Debtors before they grant access.
GET /connector/apis/accounting/resources/aged-debtors/coverage to see which accounting connectors support the Aged Debtors report
Runtime Schema Inspection
Before serializing a request body, fetch the live schema for the resource and connector pair. /connector/connectors/{id}/resources/{resource_id}/unified_api/{api_id}/schema returns the JSON schema, and /example returns a sample payload so a code generator or LLM tool can validate input shape against the actual connector definition rather than a stale local copy.
GET /connector/connectors/hubspot/resources/contact/unified_api/crm/schema to fetch the live HubSpot contact schema
AI Agent Capability Discovery
Give an AI agent a tool to ask 'which connectors can do X?' before it picks a unified API. Through Jentic, the agent searches for an intent like 'list crm connectors' and gets the matching Connector API operation. The agent uses the response to recommend the right connector to the user before authorisation.
Search Jentic for 'list connectors that support crm', load the /connector/apis/{id} schema with id=crm, and execute to return the supporting connector list
10 endpoints — the apideck connector api is the meta-api that describes the integrations apideck unify supports.
METHOD
PATH
DESCRIPTION
/connector/connectors
List all connectors Apideck supports
/connector/connectors/{id}
Read a single connector by id
/connector/connectors/{id}/docs/{doc_id}
Read the documentation page for a connector
/connector/connectors/{id}/resources/{resource_id}/unified_api/{api_id}/schema
Fetch the JSON schema for a resource on a connector
/connector/connectors/{id}/resources/{resource_id}/unified_api/{api_id}/example
Fetch an example payload for a resource on a connector
/connector/apis
List Apideck unified APIs
/connector/apis/{id}/resources/{resource_id}/coverage
Show connector coverage for a resource of a unified API
/connector/connectors
List all connectors Apideck supports
/connector/connectors/{id}
Read a single connector by id
/connector/connectors/{id}/docs/{doc_id}
Read the documentation page for a connector
/connector/connectors/{id}/resources/{resource_id}/unified_api/{api_id}/schema
Fetch the JSON schema for a resource on a connector
/connector/connectors/{id}/resources/{resource_id}/unified_api/{api_id}/example
Fetch an example payload for a resource on a connector
Three things that make agents converge on Jentic-routed access.
Credential isolation
Apideck Authorization bearer and x-apideck-app-id values are stored encrypted in the Jentic vault and injected at execution time. The Connector API does not require per-customer Apideck Vault tokens since it returns metadata, not customer data.
Intent-based discovery
Agents search by intent (for example 'list apideck connectors' or 'fetch resource schema') and Jentic returns the matching Connector API operation with its input schema. The meta-API itself is shaped for discovery, and Jentic surfaces it in seconds.
Time to first call
Direct Apideck Connector integration: a few hours to wire the two required headers and parse responses. Through Jentic: under 30 minutes - search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Apideck CRM API
Apideck CRM unified API consumed via the connectors discovered through this meta-API
Pair with Apideck CRM after the agent has used the Connector API to list CRM-supporting connectors and the user has selected one
Apideck Accounting API
Apideck Accounting unified API consumed via the connectors listed by this meta-API
Pair with Apideck Accounting after the agent has confirmed the customer's accounting connector supports the resources the workflow needs
Apideck ATS API
Apideck ATS unified API consumed via the connectors listed by this meta-API
Pair with Apideck ATS after the agent has used the Connector API to confirm the candidate's target ATS is supported
Specific to using Connector API API through Jentic.
What authentication does the Apideck Connector API use?
Apideck requires Authorization with a bearer API key and x-apideck-app-id with your Unify application id. The x-apideck-consumer-id header is required by most Apideck calls but is not needed for the Connector meta-API since it describes integrations, not customer data. Through Jentic all values are stored encrypted in the vault and injected at execution time.
Which integrations are listed by the Apideck Connector API?
Every connector that Apideck Unify supports across CRM, ATS, Accounting, HRIS, Customer Support, Ecommerce, File Storage, Issue Tracking, Lead, POS, SMS, and Webhook unified APIs. GET /connector/connectors returns the live list with logo URL, status (live, beta, deprecated), and the unified APIs each connector implements.
Can I fetch the schema for a connector resource at runtime?
Yes. GET /connector/connectors/{id}/resources/{resource_id}/unified_api/{api_id}/schema returns the JSON schema for that resource on that connector. Pair it with the matching /example endpoint to get a sample payload for validation or LLM prompt context.
What are the rate limits for the Apideck Connector API?
The Connector meta-API enforces standard Apideck Unify rate limits and returns HTTP 429 on throttling. The endpoints are read-only and cacheable, so most apps cache responses for an hour to reduce request volume.
How do I check connector coverage through Jentic?
Search Jentic for 'check apideck connector coverage', load the /connector/apis/{id}/resources/{resource_id}/coverage schema, and execute with the unified API id (crm, ats, accounting, etc.) and the resource id to see the supporting connector list.
Is the Apideck Connector API free?
The Connector meta-API is included with any Apideck Unify plan, including the free tier. See https://www.apideck.com/pricing for the current tiers and per-consumer pricing for the data-plane unified APIs.
/connector/apis
List Apideck unified APIs
/connector/apis/{id}/resources/{resource_id}/coverage
Show connector coverage for a resource of a unified API