Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the PreciseFP 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.
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%2Fprecisefp.com%2Fprecisefp" | shStep 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%2Fprecisefp.com%2Fprecisefp" | 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 PreciseFP API.
Create and manage client and prospect accounts with co-client support
Send form engagements to clients using configurable templates
Retrieve submitted form data and download completed PDFs
Track client accounts through configurable pipeline stages
Register webhook subscriptions for real-time event notifications
GET STARTED
Manage PDF-based engagement workflows with template selection
Filter engagements by status, account, or template for reporting
Patterns agents use PreciseFP API for, with concrete tasks.
★ Client Onboarding Automation
Automate the financial advisor client onboarding process by creating accounts, assigning them to pipeline stages, and sending data-gathering forms via PreciseFP. The API creates form engagements from templates that collect client financial information, risk tolerance, and personal details. Advisors receive completed data without manual follow-up.
Create a new prospect account via POST /accounts with type 'prospect', then create a form engagement via POST /form-engagements using template ID 1 linked to the new account
Pipeline Stage Management
Track client progress through advisory workflow stages by moving accounts between pipeline stages. The API allows programmatic transitions as clients complete onboarding milestones, enabling CRM integrations that keep pipeline data synchronized across platforms without manual updates.
List available pipeline stages via GET /pipeline-stages, then move account 42 to the 'Documents Received' stage via PUT /accounts/42/pipeline-stage with the target stage ID
Engagement Data Extraction
Extract completed client data from form engagements for import into financial planning software, CRMs, or portfolio management tools. The API returns structured field-value pairs from submitted forms, enabling advisors to populate downstream systems without re-keying client information.
Close form engagement 123 via POST /form-engagements/123/close, then retrieve the submitted data via GET /form-engagements/123/data and map fields to CRM contact properties
AI Agent Financial Data Collection via Jentic
Enable AI agents to trigger client data collection workflows through Jentic by searching for PreciseFP operations, loading schemas, and executing calls. Agents can create accounts, send forms, and retrieve responses on behalf of financial advisors without managing bearer tokens directly.
Search Jentic for 'send data gathering form to financial client', load the PreciseFP form engagement creation schema, and execute POST /form-engagements with the selected template and account
27 endpoints — jentic publishes the only available openapi specification for precisefp api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/accounts
List client and prospect accounts with filtering
/accounts
Create a new client or prospect account
/accounts/{accountId}/pipeline-stage
Move account to a pipeline stage
/form-engagements
Create a form engagement from template
/form-engagements/{engagementId}/data
Get submitted form data
/form-engagements/{engagementId}/pdf
Download engagement as PDF
/templates
List available form templates
/webhooks
Register a webhook subscription
/accounts
List client and prospect accounts with filtering
/accounts
Create a new client or prospect account
/accounts/{accountId}/pipeline-stage
Move account to a pipeline stage
/form-engagements
Create a form engagement from template
/form-engagements/{engagementId}/data
Get submitted form data
/form-engagements/{engagementId}/pdf
Download engagement as PDF
/templates
List available form templates
/webhooks
Register a webhook subscription
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the PreciseFP API by hand means putting your bearer token in the Authorization header against app.precisefp.com/api/v3 and coordinating account, form-engagement, and webhook calls yourself. Through Jentic you install once, import the PreciseFP API from the API Directory, store the bearer token once, and your agent calls it.
Permission scoping
PreciseFP puts the account and engagement ids in the URL path (/accounts/{accountId}, /form-engagements/{engagementId}), so a rule can pin your agent to one account: it can create and read that account's form engagements and nothing else. You choose the operations it may call, so registering webhooks or moving pipeline stages is not included unless you add it.
Credential isolation
Your PreciseFP bearer token is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'send a data-gathering form to a client' or 'download a completed engagement PDF', and Jentic returns the matching PreciseFP operation with its input schema so the agent calls the right endpoint without browsing the reference docs.
Alternatives and complements available in the Jentic catalogue.
Specific to using PreciseFP API through Jentic.
Why is there no official OpenAPI spec for PreciseFP API?
PreciseFP does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call PreciseFP 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 PreciseFP API use?
The PreciseFP API uses bearer token authentication. Include the token in the Authorization header as 'Bearer <token>'. Contact PreciseFP support to obtain API access credentials. Through Jentic, tokens are stored encrypted and agents receive scoped access without handling raw credentials.
Can I retrieve submitted form data from the PreciseFP API?
Yes. After a form engagement is completed or closed, use GET /form-engagements/{engagementId}/data to retrieve all submitted field values. Each item includes a dataset ID, field title, and field value. You may need to close the engagement first via POST /form-engagements/{engagementId}/close before data retrieval is available.
What are the rate limits for the PreciseFP API?
PreciseFP applies rate limiting based on your subscription tier. The API returns pagination with a maximum of 200 results per page via the limit parameter. Contact PreciseFP support for specific rate limit details for your plan.
How do I send a data-gathering form to a client through Jentic?
Install the Jentic SDK with pip install jentic, then search for 'send data gathering form to client'. Jentic returns the PreciseFP POST /form-engagements operation with its schema. Provide the template_id and account_id to send a form engagement to the target client.
Does the PreciseFP API support webhooks?
Yes. Use POST /webhooks to register a webhook subscription that receives real-time notifications when events occur, such as form completion. Use GET /webhooks to list existing subscriptions and DELETE /webhooks/{webhookId} to remove them.
Can I limit what my agent is allowed to do with the PreciseFP API?
Yes. Jentic One runs self-hosted on your own infrastructure, so your rules decide which PreciseFP operations and credentials the agent may use. Because PreciseFP puts the account and engagement IDs in the URL path, such as /accounts/{accountId} and /form-engagements/{engagementId}, you can pin the agent to a single account and let it only create and read that account's form engagements. Operations like registering webhooks via POST /webhooks or moving accounts between pipeline stages via PUT /accounts/{accountId}/pipeline-stage stay off limits unless you explicitly add them.
Know of an official OpenAPI document? Contribute it →
For Agents
Manage financial advisor client accounts, send data-gathering forms, retrieve completed engagement data, and track pipeline stages for client onboarding workflows.
Use for: I need to create a new client account in PreciseFP, I want to send a data-gathering form to a prospect, Retrieve completed form engagement data for a client, Move an account to the next pipeline stage
Not supported: Does not handle financial calculations, portfolio management, or compliance reporting -- use for client data collection and onboarding workflows only.
Jentic publishes the only available OpenAPI specification for PreciseFP API, keeping it validated and agent-ready. The PreciseFP API enables financial advisors to programmatically manage client accounts, send data-gathering forms, track pipeline stages, and retrieve completed engagement data. It supports form and PDF engagements with template-based workflows, webhook subscriptions for real-time notifications, and PDF export of completed client submissions across 27 endpoints.
This API is usable in Jentic One now. Its AI-readiness score against Jentic's framework shows where it stands today and where improvements would make it even easier for agents to use.
Base layer of spec validity and structural soundness.
Aggregated quality score from linter diagnostics, weighted by severity.
Percentage of `$ref` references that resolve successfully.
Checks whether the API description parses successfully and conforms to its declared specification (e.g., OpenAPI).
Structural correctness score based on schema issues using logarithmic dampening.
Clarity, completeness, and ingestion readiness for developers and tooling.
How richly the API is illustrated with examples.
Percentage of examples that conform to their schemas.
Percentage of operations with complete response definitions (success, client error, server error).
Health of API ingestion, bundling, and resolution within Jentic pipelines.
Semantic breadth, depth, and agent comprehension for AI systems.
Coverage of descriptions across API elements.
Coverage of RFC 9457 Problem Details for error responses.
Coverage, uniqueness, and casing consistency of operationIds for AI inference.
Coverage of summaries across operations/tags/info.
Functional utility, complexity comfort, and AI orchestration readiness.
Agent comfort level based on API operational and structural complexity.
Trust, risk posture, and security compliance.
Average quality of security schemes based on authentication method strength (weakest link for OAuth2).
Findability, semantic richness, and reasoning readiness.
Clarity and depth of descriptions across API elements.
Score it yourself
Every API in the directory is allowlisted, so you can re-score it with no key required.
npx @jentic/api-scorecard-cli score <openapi-url>