Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/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. All rights reserved.
APIs / Developer Tools / Apideck / Connector API
Connector API logo

Apideck Connector API

Browse all Apideck APIs
✓ Official Vendor SpecDeveloper ToolsMonitoring ObservabilityapiKey10 EndpointsREST

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.

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.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Connector API to your agent

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.

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://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# 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 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 Connector 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

Read the JSON schema for any resource on a specific connector

Read example payloads for a resource on a specific connector

Use Cases

Patterns agents use Connector 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

Key Endpoints

10 endpoints — the apideck connector api is the meta-api that describes the integrations apideck unify supports.

METHOD

PATH

DESCRIPTION

GET

/connector/connectors

List all connectors Apideck supports

GET

/connector/connectors/{id}

Read a single connector by id

GET

/connector/connectors/{id}/docs/{doc_id}

Read the documentation page for a connector

GET

/connector/connectors/{id}/resources/{resource_id}/unified_api/{api_id}/schema

Fetch the JSON schema for a resource on a connector

GET

/connector/connectors/{id}/resources/{resource_id}/unified_api/{api_id}/example

Fetch an example payload for a resource on a connector

GET

/connector/apis

List Apideck unified APIs

GET

/connector/apis/{id}/resources/{resource_id}/coverage

Show connector coverage for a resource of a unified API

GET

/connector/connectors

List all connectors Apideck supports

GET

/connector/connectors/{id}

Read a single connector by id

GET

/connector/connectors/{id}/docs/{doc_id}

Read the documentation page for a connector

GET

/connector/connectors/{id}/resources/{resource_id}/unified_api/{api_id}/schema

Fetch the JSON schema for a resource on a connector

GET

/connector/connectors/{id}/resources/{resource_id}/unified_api/{api_id}/example

Fetch an example payload for a resource on a connector

GET

/connector/apis

List Apideck unified APIs

GET

/connector/apis/{id}/resources/{resource_id}/coverage

Show connector coverage for a resource of a unified API

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

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

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

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.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

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

Complementary

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

Complementary

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

FAQs

Specific to using Connector 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.

GET STARTED

Start building with Connector API

Explore with Jentic
View OpenAPI Document