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 / AI/ML / Affinda API
Affinda API logo

Affinda API

★ Only Publicly Available OpenAPI DocumentAI/MLMl Inferencebearer140 EndpointsREST

For Agents

Parse resumes, invoices, and other documents, manage extracted data, and run resume and job-description search across 140 Affinda v3 endpoints.

Use for: Upload a resume PDF and get back parsed candidate fields, Search the resume index for senior software engineers in Berlin, Match a job description against indexed resumes, Get the JSON schema for a custom document type

Not supported: Does not handle e-signature, document storage as a primary file system, or candidate outreach — use for document parsing, validation, and resume/job search only.

Jentic publishes the only available OpenAPI specification for Affinda API, keeping it validated and agent-ready. Affinda is a document-AI platform that extracts structured data from resumes, invoices, receipts, IDs, and other document types and supports recruiter-facing resume search, job-description search, and skill-and-occupation taxonomies. Version 3 of the API exposes 140 endpoints covering document upload and parsing, workspaces and document types, validation results, mapping data sources, tags and annotations, webhook subscriptions, and dedicated resume and job-description search engines. Authentication uses a bearer token issued from the Affinda dashboard.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Affinda API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Affinda 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 Affinda API.

Upload documents to Affinda and retrieve structured extraction results

Manage workspaces, document types, and per-type JSON schemas

Run resume search with filters, embeddings, and match scoring

Search job descriptions and match them against indexed resumes

Maintain mapping data sources to normalise values across documents

Manage tags, annotations, and validation results on parsed documents

Subscribe to resthook webhooks to receive parsed-document notifications

Use Cases

Patterns agents use Affinda API for, with concrete tasks.

★ Resume Parsing for Recruiting Workflows

Replace manual resume entry with structured extraction. POST /v3/documents uploads a resume and Affinda returns parsed fields — name, contact, work history, education, skills — using an extraction schema you control via /v3/document_types. Combined with the resume_search endpoints, recruiters can index parsed resumes and rank them against requirements without leaving their ATS.

Call POST /v3/documents with a resume file and document_type=resume and return the parsed name, email, and most recent role

Resume and Job-Description Search

Build a recruiter-facing search engine on top of parsed documents. POST /v3/resume_search ranks candidates against a query, /v3/resume_search/match scores a specific resume against a job, /v3/job_description_search runs the inverse, and /resume_search/suggestion_skill and /suggestion_job_title surface taxonomy-aware hints. Useful for ATS vendors and talent platforms that want production-grade matching without training their own embeddings.

Call POST /v3/resume_search with skills=['python','aws'] and location='Berlin' and return the top 20 ranked candidates with match scores

Invoice and Receipt Extraction

Extract structured line items, totals, taxes, and vendor data from invoices and receipts using the same /v3/documents endpoint with the appropriate document_type. The /v3/validation_results endpoints let an operator confirm or correct extracted fields, and /v3/document_types/{identifier}/json_schema returns the schema being applied so finance systems can map fields one-for-one.

Call POST /v3/documents with an invoice PDF, then call GET /v3/validation_results?document={id} to retrieve the extracted line items

AI Agent Document Pipeline

Give an AI agent a single document-AI tool that handles parsing, search, and tagging. Through Jentic, the agent searches by intent for the right Affinda v3 operation, loads the schema, and executes with the bearer token isolated in the vault. The agent can chain extraction, validation, and downstream CRM updates without bespoke integration code.

Search Jentic for 'parse a resume document', load the /v3/documents schema, and execute with the file payload and document_type=resume

Key Endpoints

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

METHOD

PATH

DESCRIPTION

POST

/v3/documents

Upload a document for parsing

GET

/v3/documents/{identifier}

Retrieve a parsed document

POST

/v3/resume_search

Search the resume index against a query

GET

/v3/resume_search/match

Score a resume against a job description

POST

/v3/job_description_search

Search job descriptions against indexed resumes

GET

/v3/document_types/{identifier}/json_schema

Return the JSON schema applied for a document type

POST

/v3/resthook_subscriptions

Create a webhook subscription for document events

POST

/v3/documents

Upload a document for parsing

GET

/v3/documents/{identifier}

Retrieve a parsed document

POST

/v3/resume_search

Search the resume index against a query

GET

/v3/resume_search/match

Score a resume against a job description

POST

/v3/job_description_search

Search job descriptions against indexed resumes

GET

/v3/document_types/{identifier}/json_schema

Return the JSON schema applied for a document type

POST

/v3/resthook_subscriptions

Create a webhook subscription for document events

Why Jentic?

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

Credential management

Credential isolation

Your Affinda bearer token is stored encrypted in the Jentic vault and applied as the Authorization header at execution time, so agents never see the raw token.

Intent-based discovery

Intent-based discovery

Agents search by intent (e.g. 'parse a resume document') and Jentic returns the matching v3 operation with its multipart or JSON schema, so the agent picks /v3/documents over /v3/resume_search correctly.

Time to first call

Time to first call

Direct Affinda integration: 2-5 days to wire auth, region routing, multipart uploads, document-type management, and webhooks. Through Jentic: under 2 hours — search, load schema, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Mindee

→

Document parsing API focused on invoices, receipts, IDs, and forms

Choose Mindee when only document extraction is needed; choose Affinda when extraction must be paired with resume and job-description search

Alternative

Rossum

→

AP-focused document AI for invoice extraction and validation

Pick Rossum for AP-team-focused invoice automation with annotation UIs; pick Affinda for broader document types and recruiting search

Alternative

Veryfi

→

Receipt and invoice OCR with mobile capture SDKs

Use Veryfi for mobile-first receipt capture; use Affinda for resume parsing and search workflows

Complementary

Lever

→

ATS that consumes parsed candidate data from document parsers

Use Lever as the ATS destination after parsing resumes through Affinda

FAQs

Specific to using Affinda API through Jentic.

Why is there no official OpenAPI spec for the Affinda API?

Affinda publishes interactive docs but does not distribute a downloadable OpenAPI 3 specification. Jentic generates and maintains this spec so that AI agents and developers can call Affinda API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.

What authentication does the Affinda API use?

Affinda uses an HTTP bearer token; pass Authorization: Bearer <token> on every request with a token issued from the Affinda dashboard. Through Jentic the token is stored in the vault and injected at execution time.

Which regions does the Affinda API serve?

Affinda runs three regional instances — AUS/Global at https://api.affinda.com, US at https://api.us1.affinda.com, and EU at https://api.eu1.affinda.com. Use the URL that matches the region your account was provisioned in to keep documents inside that data boundary.

Can I parse resumes and invoices with the same Affinda API?

Yes. POST /v3/documents handles every document type — the document_type parameter selects the extraction schema, and /v3/document_types lists the schemas available to your account. The same endpoint returns resumes, invoices, receipts, IDs, or any custom type.

What are the rate limits for the Affinda API?

Affinda applies per-tier credit and concurrency limits but does not declare specific numbers in the spec. Check your plan in the Affinda dashboard and watch for HTTP 429 responses; Jentic surfaces them so agents can back off.

How do I run a resume search through Jentic?

Run pip install jentic, search Jentic with 'search resumes by skills and location', load the /v3/resume_search schema, and execute with the criteria in the request body. Jentic injects the bearer token at execution time.

GET STARTED

Start building with Affinda API

Explore with Jentic
View OpenAPI Document