For Agents
Verify income, retrieve employment and identity records, and read transactions and liabilities through user-permissioned account linking under HTTP basic auth.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Smile 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 Smile API.
Create users and drive the Smile Link account-linking flow via session payloads
Fetch normalised employment and identity records on a linked account
Retrieve income, transactions, contributions, and liabilities on a per-user basis
List and inspect supported data providers for filter UIs
GET STARTED
Use for: I need to create a Smile user and request a linking session, Retrieve the latest income for user usr_123, Get the employment record for a linked account, List all transactions for account acc_456
Not supported: Does not handle KYC document checks, credit-bureau lookups, or payment disbursement — use for user-permissioned employment and income data retrieval only.
This is the trimmed, developer-docs-aligned cut of the Smile API surface, focused on the core employment and income verification primitives an integrator typically needs. It exposes 30 endpoints covering users, providers, accounts, employments, identities, incomes, transactions, documents, contributions, liabilities, and webhooks. It is the right starting point for fintech, lending, and HR-tech teams that want a leaner integration surface than the full v1.14 spec while still receiving normalised, user-permissioned payroll data.
Trigger an account export and disable monitoring when a user closes their account
Subscribe to webhooks for linkage and refresh lifecycle events
Patterns agents use Smile API for, with concrete tasks.
★ Lender income verification
Digital lenders ask the applicant to link their payroll provider through Smile Link, then pull income and employment records to underwrite the loan. This trimmed surface gives the underwriting service exactly the endpoints it needs without the full webhooks-and-consent administrative footprint.
Create user, request session payload, then once linked fetch the last 6 months of incomes for risk scoring
Liability snapshot for credit decisioning
Credit teams pull a borrower's liabilities — contributions, recurring deductions, and outstanding obligations — alongside income to compute affordability. The /liabilities and /contributions endpoints expose this in normalised form across providers, removing the need to parse provider-specific schemas.
List liabilities and contributions for user usr_123 and compute monthly committed outflows
Document retrieval for compliance
Onboarding flows need source documents like payslips for KYC and audit trails. The /documents endpoint returns paged document records linked to a user, and the per-document GET retrieves metadata and download references for downstream archival.
List documents for user usr_123, filter to payslips from the last 3 months, and stage them in compliance storage
AI agent for end-user data download
An AI agent connected through Jentic accepts a user's request to export their data, calls the export endpoint on each linked account, and returns the resulting URLs. Jentic injects the basic-auth credential so the agent never holds the raw secret.
For user usr_123, list accounts and call POST /accounts/{id}/export on each, returning the download URLs
30 endpoints — this is the trimmed, developer-docs-aligned cut of the smile api surface, focused on the core employment and income verification primitives an integrator typically needs.
METHOD
PATH
DESCRIPTION
/users
Create a Smile user
/users/{id}/payload
Get session payload for Smile Link
/providers
List supported data providers
/incomes
List income records
/employments
List employment records
/transactions
List transaction records
/accounts/{id}/export
Trigger account data export
/users
Create a Smile user
/users/{id}/payload
Get session payload for Smile Link
/providers
List supported data providers
/incomes
List income records
/employments
List employment records
Three things that make agents converge on Jentic-routed access.
Credential isolation
Smile client id and secret are stored encrypted in the Jentic vault. Agents receive a scoped reference and the basic-auth header is built per request without exposing the raw secret.
Intent-based discovery
Agents search by intent such as 'verify a user's income' and Jentic returns the matching Smile operation along with its input schema.
Time to first call
Direct Smile integration: 2-3 days for the user, account, and record retrieval flows. Through Jentic: under an hour to search, load, and execute.
Alternatives and complements available in the Jentic catalogue.
Specific to using Smile API through Jentic.
What authentication does the Smile API use?
Smile uses HTTP basic authentication with your client id as the username and client secret as the password. Through Jentic the credentials are vaulted and the basic-auth header is constructed per request so the raw secret never enters the prompt.
Can I fetch a user's transactions through the API?
Yes. GET /transactions returns paged transaction records for a user across their linked accounts, and GET /transactions/{id} retrieves a single record. The same listing pattern applies to /incomes, /employments, /identities, /documents, /contributions, and /liabilities.
What are the rate limits for the Smile API?
The OpenAPI spec does not encode explicit rate limits. Practical guidance is to subscribe to webhooks for change-driven flows rather than polling /accounts or /incomes in tight loops, and to back off exponentially on any 429 response.
How do I trigger an account data export through Jentic?
Search Jentic for 'export smile account', load the POST /accounts/{id}/export schema, and execute with the account id. Jentic injects the basic-auth header automatically and returns the export URL.
What is the difference between this surface and the v1.14 surface at sandbox.smileapi.io?
This 30-endpoint surface is the developer-docs-aligned cut focused on retrieval and core lifecycle. The 103-endpoint v1.14 surface adds consent-template management, invites, tasks, and admin-tier endpoints — useful when you operate the platform end-to-end rather than only consuming verification data.
Is the Smile API free?
Smile offers a sandbox environment for development; production access is metered and requires a commercial agreement. Check getsmileapi.com for current tiers and reach the team via the contact details listed in the API documentation.
/transactions
List transaction records
/accounts/{id}/export
Trigger account data export