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 / Aletheia Financial API
Aletheia Financial API logo

Aletheiaapi Aletheia Financial API

Agent-ready OpenAPI document · curated by JenticFinanceBankingapiKey4 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

Look up real-time stock data and crypto quotes, and check API consumption from a focused four-endpoint financial data API.

Use for: I need to get the current price of a stock ticker, Look up a real-time crypto quote for a given symbol, Check how many API calls I have used this period, Verify the Aletheia API version my workflow is hitting

Not supported: Does not handle order placement, brokerage account access, or historical market data - use for real-time stock and crypto quote lookups only.

This page describes a curated, agent-optimized Jentic OpenAPI specification for the Aletheia Financial API, kept validated and agent-ready. Aletheia also authors its own Swagger definition, published as a certified Microsoft Power Platform connector, which describes a wider set of SEC filing and earnings-call operations but omits the consumption and version reads covered here. Aletheia provides real-time stock market and cryptocurrency data through a small, focused REST surface. The API exposes a stock data endpoint, a crypto quote endpoint, an account consumption endpoint for tracking quota usage, and a version probe. Authentication uses an API key passed in the 'key' header on every request.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Aletheia Financial API to your agent

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

Retrieve real-time stock data for a given ticker symbol with /StockData

Fetch a current crypto quote for a symbol via /Crypto

Check current API consumption against the account quota with /v2/consumption

Probe the API version with /version for environment health checks

Embed market data into agent workflows without parsing ticker websites

Use Cases

Patterns agents use Aletheia Financial API for, with concrete tasks.

★ Real-time stock watchlist for an internal tool

An ops team builds an internal page that shows live prices for a list of tracked tickers by calling /StockData for each symbol on a short refresh interval. The minimal surface area means the integration is low-effort: a single GET with the ticker as a parameter and an API key header is enough to render a watchlist.

GET /StockData for each ticker in the watchlist and render the resulting price and change values in the dashboard

Crypto quote lookup before a trade alert

A trading assistant agent receives a 'check BTC price' message and calls GET /Crypto with the BTC symbol to fetch the latest quote, then formats and posts the result to the user. Because the endpoint is read-only, the agent never needs trading credentials - only a market data API key.

GET /Crypto with symbol=BTC and post the formatted price and 24h change back to the user channel

API quota awareness for batch jobs

A back-office batch job runs through hundreds of tickers nightly. Before the run, it calls GET /v2/consumption to confirm there is enough quota left in the period; if not, it pages an operator instead of silently failing partway through. This keeps batch reliability high without a separate quota tracker.

GET /v2/consumption before starting the batch and abort if remaining quota is below the projected request count

Agent-driven price lookup through Jentic

A Jentic agent answers questions like 'what's the price of NVDA right now?' by calling /StockData with the ticker and returning the latest price. Because Aletheia is small and focused, the agent does not have to choose between dozens of operations - Jentic surfaces the single matching endpoint.

Search Jentic for 'real-time stock price for a ticker', execute GET /StockData with the requested symbol, and return the price field

Key Endpoints

4 endpoints — this page describes a curated, agent-optimized jentic openapi specification for the aletheia financial api, kept validated and agent-ready.

METHOD

PATH

DESCRIPTION

GET

/StockData

Retrieve real-time stock data

GET

/Crypto

Retrieve a real-time crypto quote

GET

/v2/consumption

Check current API consumption

GET

/version

Get the API version

GET

/StockData

Retrieve real-time stock data

GET

/Crypto

Retrieve a real-time crypto quote

GET

/v2/consumption

Check current API consumption

GET

/version

Get the API version

Why Jentic?

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

Setup

Setup

Wiring the Aletheia Financial API by hand means placing its API key on each request to api.aletheiaapi.com and handling the quote and consumption reads yourself. Through Jentic you install once, import the Aletheia Financial API from the API Directory, store the API key once, and your agent calls it.

Permission scoping

Permission scoping

The Aletheia Financial API is read-only quote lookup and carries its target as a query parameter, not a path resource, so limit the agent to the operations it needs, such as fetching stock data or crypto quotes. You choose the operations it may call, so the consumption or version reads are not included unless you add them.

Credential management

Credential isolation

Your Aletheia API key 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

Intent-based discovery

Agents search Jentic by intent such as 'get a real-time stock quote' or 'look up a crypto price', and Jentic returns the matching Aletheia 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.

Alternative

CoinGecko API

→

Use CoinGecko for broader crypto market data including historical series and market caps

Choose CoinGecko when the agent needs historical crypto data; choose Aletheia for a unified stock plus crypto quote lookup

Alternative

Alpha Vantage API

→

Use Alpha Vantage for broader stock and FX market data including indicators and historical series

Choose Alpha Vantage when historical and technical indicator data are needed; choose Aletheia for a small, focused real-time stock plus crypto lookup

Complementary

OpenAI API

→

Pair with Aletheia when an agent needs to summarise market data into a written report

Use OpenAI alongside Aletheia when transforming raw quotes into a narrative briefing

FAQs

Specific to using Aletheia Financial API through Jentic.

Which OpenAPI specification does this Aletheia Financial API page describe?

A curated, agent-optimized Jentic specification covering four Aletheia operations, validated against the live API. Aletheia also authors its own Swagger 2.0 definition, published as a certified Microsoft Power Platform connector in Microsoft's connector reference repo at `https://raw.githubusercontent.com/microsoft/PowerPlatformConnectors/dev/certified-connectors/Aletheia/apiDefinition.swagger.json`, which describes 20 operations across SEC filings, insider trades and earnings calls but omits the consumption and version reads this page covers. Jentic maintains the narrower OpenAPI 3.0.3 variant so agents match the real-time quote and quota operations without loading the full filings surface. Get started with Jentic One, the self-hosted execution layer.

What authentication does the Aletheia Financial API use?

Aletheia uses an API key passed in the 'key' header on every request. Jentic stores the key encrypted in its credential vault and injects it as the header at execution time, so the raw key never enters the agent's prompt context.

Can I get a real-time stock price with the Aletheia API?

Yes. Call GET /StockData with the ticker symbol as a query parameter and the 'key' header. The endpoint returns the latest price along with related stock data fields.

What are the rate limits for the Aletheia Financial API?

The OpenAPI spec does not declare per-endpoint rate limits. Aletheia enforces a quota per billing period; call GET /v2/consumption to check remaining quota before kicking off batch lookups.

How do I look up a crypto quote through Jentic?

Search Jentic for 'aletheia crypto quote', load the schema for GET /Crypto, and execute it with the symbol you want. Jentic returns the quote payload directly to the agent without exposing the API key.

Does Aletheia provide historical price data?

The endpoints exposed in this spec are real-time only - /StockData and /Crypto return current values. For historical price series, pair Aletheia with a complementary historical market-data provider.

Can I limit what my agent is allowed to do with the Aletheia Financial API?

Yes. Jentic One runs self-hosted on your own infrastructure, so your rules decide which Aletheia operations and credentials the agent can use. Because the Aletheia Financial API is read-only quote lookup and passes its target as a query parameter rather than a path resource, you can restrict the agent to just the calls it needs, such as GET /StockData for stock prices or GET /Crypto for crypto quotes. You choose the operations it may call, so the /v2/consumption and /version reads stay off limits unless you add them.

GET STARTED

Start building with Aletheia Financial API

Explore with Jentic One
View OpenAPI Document