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 / Finance / Allianz Trade API
Allianz Trade API logo

Allianz Trade API

Agent-ready OpenAPI document · curated by JenticFinanceBankingoauth29 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

Search buyers, pull buyer risk scores, request and inspect trade credit covers, file claims, and read portfolio exposure for an Allianz Trade-insured book.

Use for: I need to check the credit risk of a new customer before invoicing, Search for a buyer by company name in the Allianz Trade directory, Request a credit cover for a major new customer, List all open covers in our portfolio

Not supported: Does not handle policy issuance, premium billing, or non-credit insurance lines - use for buyer risk lookup, cover requests, claims, and portfolio exposure only.

Jentic publishes the only available OpenAPI specification for Allianz Trade API, keeping it validated and agent-ready. Allianz Trade (formerly Euler Hermes) is a global trade credit insurer, and the API exposes buyer search, buyer risk lookup, cover requests, claims filing, and portfolio exposure reporting. Authentication uses OAuth 2.0 client credentials, suitable for system-to-system integration in finance and treasury workflows. The endpoint set is focused on the credit-cover lifecycle rather than general policy administration.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Allianz Trade API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Allianz Trade 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%2Fallianz-trade.com%2Fallianz-trade" | 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%2Fallianz-trade.com%2Fallianz-trade" | 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 Allianz Trade API.

Search the Allianz Trade buyer database by name or identifier

Pull a buyer risk score by buyer ID for credit decisions

Request a new trade credit cover for a buyer

List existing covers and inspect a single cover by coverId

File a new claim against an existing cover

Track an open claim by claimId and read its status

Read aggregate portfolio exposure for risk monitoring

Use Cases

Patterns agents use Allianz Trade API for, with concrete tasks.

★ Pre-invoice credit check

Finance teams pull a buyer risk score before extending payment terms to a new customer. The agent calls GET /buyers/search to find the buyer, then GET /buyers/{buyerId}/risk to retrieve the risk grade. The flow takes seconds and prevents extending uninsured credit to deteriorating buyers.

Search for buyer 'ACME Industrial GmbH' via GET /buyers/search, take the top match, then call GET /buyers/{buyerId}/risk and return the risk grade.

Cover request workflow

When a sales deal exceeds an internal threshold, the agent files a cover request via POST /covers and tracks the decision via GET /covers/{coverId}. This automates the back-and-forth between sales operations and the credit insurer, removing email-based requests from the cover lifecycle.

Submit a cover request for buyer ID B-9912 and amount EUR 250,000 via POST /covers, then poll GET /covers/{coverId} until the decision status is final.

Claim filing and tracking

When an invoice goes unpaid past terms and is covered, the agent files a claim via POST /claims with the cover and invoice references, then monitors progress via GET /claims/{claimId}. This consolidates claims handling into the same system that originates the underlying cover request.

File a claim against cover ID C-4421 for invoice INV-7733 totalling EUR 18,500 via POST /claims, then store the returned claimId.

AI agent receivables monitoring

An AI agent in a treasury workflow can read portfolio exposure on a daily cadence, pull risk updates for top buyers, and flag deteriorating positions. Through Jentic the agent searches by intent and the OAuth client credentials never enter the prompt context. This turns Allianz Trade into a programmable risk feed rather than a portal.

Use Jentic to search 'get portfolio exposure', call GET /portfolio/exposure, and post the top 10 highest-exposure buyers to a Slack treasury channel.

Key Endpoints

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

METHOD

PATH

DESCRIPTION

GET

/buyers/search

Search buyers by name or identifier

GET

/buyers/{buyerId}/risk

Get buyer risk score

POST

/covers

Request a new credit cover

GET

/covers

List existing covers

GET

/covers/{coverId}

Get cover details

POST

/claims

File a new claim

GET

/claims/{claimId}

Get claim status

GET

/portfolio/exposure

Read portfolio exposure

GET

/buyers/search

Search buyers by name or identifier

GET

/buyers/{buyerId}/risk

Get buyer risk score

POST

/covers

Request a new credit cover

GET

/covers

List existing covers

GET

/covers/{coverId}

Get cover details

POST

/claims

File a new claim

GET

/claims/{claimId}

Get claim status

GET

/portfolio/exposure

Read portfolio exposure

Why Jentic?

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

Setup

Setup

Wiring the Allianz Trade API by hand means running its OAuth2 token exchange, refreshing access tokens against api.allianz-trade.com, and encoding buyer, cover, and claim calls yourself. Through Jentic you install once, import the Allianz Trade API from the API Directory, store the OAuth2 credentials once, and your agent calls it.

Permission scoping

Permission scoping

The Allianz Trade API puts the buyer, cover, and claim ids in the URL path (/buyers/{buyerId}/risk, /covers/{coverId}, /claims/{claimId}), so a rule can pin your agent to one buyer or cover. You choose the operations it may call, so submitting cover requests or filing claims is not included unless you add them.

Credential management

Credential isolation

Your Allianz Trade OAuth2 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

Intent-based discovery

Agents search Jentic by intent such as 'look up buyer credit risk' or 'check portfolio exposure', and Jentic returns the matching Allianz Trade 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.

Complementary

Plaid

→

Plaid provides bank account and transaction data that complements credit risk decisions

Use Plaid when buyer banking signals are needed in addition to Allianz Trade's credit grade

Complementary

Stripe

Stripe handles the actual payment collection on insured invoices

Use Stripe when an invoice covered by Allianz Trade also needs an online payment surface

Complementary

Mollie

→

Mollie handles European payment collection alongside trade credit

Use Mollie in European workflows where Allianz Trade insures the credit and Mollie collects the payment

FAQs

Specific to using Allianz Trade API through Jentic.

Why is there no official OpenAPI spec for Allianz Trade API?

Allianz Trade does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Allianz Trade 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 Allianz Trade API use?

OAuth 2.0 client credentials, with the token endpoint at https://api.allianz-trade.com/oauth/token. Through Jentic, the client ID and secret are stored in the encrypted vault and the token exchange runs inside the execution layer.

Can I pull a buyer risk score before extending credit?

Yes. GET /buyers/search returns matching buyers, and GET /buyers/{buyerId}/risk returns the risk grade. Together they form the standard pre-invoice credit check flow.

How do I request a cover via the Allianz Trade API through Jentic?

Run pip install jentic, search 'request a credit cover from Allianz Trade', load the input schema for POST /covers, and execute with the buyer ID and requested amount. Poll GET /covers/{coverId} for the decision.

Can I file an insurance claim through this API?

Yes. POST /claims files a claim against an existing cover. Track progress via GET /claims/{claimId} and list claims via GET /claims to reconcile open positions.

Does the Allianz Trade API expose portfolio exposure?

Yes. GET /portfolio/exposure returns aggregate exposure across the insured book, suitable for daily treasury reporting and concentration checks.

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

Yes. Because you run Jentic One yourself, your own rules decide which operations and credentials the agent may use. The buyer, cover, and claim IDs sit in the URL path (/buyers/{buyerId}/risk, /covers/{coverId}, /claims/{claimId}), so a rule can pin the agent to a single buyer or cover. You also choose which operations it may call, so write actions like submitting a cover request via POST /covers or filing a claim via POST /claims are excluded unless you grant them, leaving the agent with read-only buyer risk and portfolio exposure lookups.

GET STARTED

Start building with Allianz Trade API

Explore with Jentic One
View OpenAPI Document