For Agents
Pull transaction-level data and aggregated reports from the Nets Data Suite analytics backend.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Nets Data Suite 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 Nets Data Suite API API.
Pull transaction-level records for finance reconciliation
Generate or fetch aggregated payment reports for a date range
Feed Nets settlement data into a BI warehouse
Cross-check internal order records against Nets transaction state
GET STARTED
Use for: Get yesterday's Nets transactions, Find all transactions for merchant MERCH-12, Retrieve a settlement report for last week, List transactions over 1,000 EUR
Not supported: Does not handle payment authorisation, refund processing, or merchant onboarding — use for transaction-level analytics and reporting on Nets-acquired traffic only.
Jentic publishes the only available OpenAPI document for Nets Data Suite API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Nets Data Suite API, keeping it validated and agent-ready. Nets Data Suite gives merchants and acquirers structured access to transaction-level analytics and reporting on the Nets payment estate. The API exposes two endpoints — transactions and reports — that let downstream systems pull settlement data and aggregated reports for reconciliation, fraud analytics, and finance dashboards.
Power a finance dashboard reading directly from Nets
Patterns agents use Nets Data Suite API API for, with concrete tasks.
★ Daily Transaction Reconciliation
Pull yesterday's transactions from Nets Data Suite each morning and reconcile them against internal order records. Variances flagged automatically save finance teams hours of manual checking and surface acquirer-side anomalies (chargebacks, late settlements) faster than dashboard browsing.
Fetch /transactions for date 2026-06-10, join against internal orders, and return any orders missing a matching Nets transaction.
Finance Reporting Pipeline
Stream Nets reports into a data warehouse on a schedule so analysts can query them in SQL alongside other revenue sources. The /reports endpoint exposes aggregated views suitable for time-series charts and KPI calculation without re-aggregating raw transactions.
Fetch /reports for the previous calendar month and load the result into the finance.payments_monthly table in the data warehouse.
AI Agent Finance Q&A
Let an AI agent answer 'how much did we settle yesterday on Nets?' or 'show me transactions over 1k EUR' through Jentic. The agent calls /transactions or /reports, summarises in plain English, and links back to source rows for audit.
Given the question 'what was our Nets settlement total last week?', fetch /reports for the relevant range and return total volume and transaction count.
2 endpoints — jentic publishes the only available openapi specification for nets data suite api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/transactions
List transactions with filters
/reports
Fetch aggregated reports
/transactions
List transactions with filters
/reports
Fetch aggregated reports
Three things that make agents converge on Jentic-routed access.
Credential isolation
Your Nets Data Suite API key is stored encrypted in the Jentic vault. Agents receive scoped access — the key is injected at request time and never enters the agent's prompt context or logs.
Intent-based discovery
Agents search by intent (e.g. 'pull yesterday's nets settlements') and Jentic returns the matching Data Suite operation against /transactions or /reports with its schema, so the agent submits a valid request without docs.
Time to first call
Direct Nets Data Suite integration: 2-3 days for auth, schema mapping, and warehouse loading. Through Jentic: under 1 hour to search, load, and execute the first pull.
Alternatives and complements available in the Jentic catalogue.
Stripe API
Stripe's reporting endpoints expose comparable transaction-level data on its own acquiring stack.
Choose Stripe reporting when transactions are processed on Stripe; choose Nets Data Suite when settlement runs on the Nets network.
Adyen Balance Control API
Adyen's reporting and balance APIs cover similar reconciliation use cases on Adyen-acquired traffic.
Choose Adyen when transactions are processed on Adyen; choose Nets Data Suite for Nets-acquired traffic.
Nets API Marketplace
Nets API Marketplace creates the payments that Nets Data Suite later reports on.
Use the Marketplace API to create payments and Data Suite to reconcile them after settlement.
Specific to using Nets Data Suite API API through Jentic.
Why is there no official OpenAPI spec for the Nets Data Suite API?
Nets does not publish a public OpenAPI specification for the Data Suite backend. Jentic generates and maintains this spec so that AI agents and developers can call Nets Data Suite 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 Nets Data Suite API use?
The Nets Data Suite API uses API key authentication. The key is provisioned by Nets when you enable Data Suite reporting on your acquiring contract and is passed in a request header. Through Jentic the key is stored encrypted and never exposed to the agent context.
Can I pull individual transactions from the Nets Data Suite API?
Yes. GET /transactions returns transaction-level records that can be filtered by date and other parameters. Use it for line-by-line reconciliation against internal order records.
What are the rate limits for the Nets Data Suite API?
Nets does not publish a public rate limit on Data Suite endpoints; throughput is governed by your Data Suite plan. Reporting calls are heavier than transaction fetches, so schedule report pulls outside peak settlement windows.
How do I pull a daily settlement report through Jentic?
Run jentic.search('get nets data suite report'), load the matching operation, and execute GET /reports with the date range parameters. Jentic returns the aggregated payload ready for the agent to summarise or load into a warehouse.
Does Nets Data Suite return historical data or only the most recent period?
Both /transactions and /reports support date-range filters. Historical depth depends on your Data Suite plan, but most acquirer contracts retain at least 13 months of data for reconciliation.