Compute the check digit
API · /securitiesid-api
Securities ID API
Validate the world's securities identifiers and compute their check digits — entirely locally. The validate endpoint checks an ISIN (the 12-character International Securities Identification Number), a CUSIP (the 9-character North-American identifier) or a SEDOL (the 7-character UK/Ireland identifier), auto-detecting which one you passed, and verifies it with the correct algorithm for each: the Luhn-over-letter-expansion scheme for ISIN, the doubling mod-10 scheme for CUSIP and the weighted mod-10 scheme for SEDOL. It returns whether the identifier is valid, the parsed parts (for an ISIN, the two-letter country prefix and the nine-character national number) and the expected check digit so you can see exactly why something failed. The checkdigit endpoint computes the trailing check digit for an identifier body, so you can complete or generate a valid code. Everything runs locally and deterministically, so it is instant and private — no market-data lookups, no third-party calls. Ideal for fintech and trading systems, reference-data and securities-master pipelines, reconciliation, data validation and import tooling, and compliance checks. Pure local computation — no key, no third-party service, instant. Live, nothing stored. 3 endpoints. This validates an identifier's structure and check digit; it does not look up the underlying security or its market data.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 196 ms
- Server probes · 24h
- Subscribers
- 3,710
- active
- Total calls
- 66
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 2,435 calls / month
- 2 requests / second
- Hard cap (429 above quota, no overage)
- 2,435 calls/month
- 2 req/sec
- ISIN + CUSIP + SEDOL
- No credit card
Starter
€3.95 /month
- 11,950 calls / month
- 8 requests / second
- Hard cap (429 above quota, no overage)
- 11.95k calls/month
- 8 req/sec
- Validate + check-digit
- Email support
Pro
€23.85 /month
- 170,500 calls / month
- 20 requests / second
- Hard cap (429 above quota, no overage)
- 170.5k calls/month
- 20 req/sec
- Securities-master / reconciliation pipelines
- Priority support
Mega
€61.85 /month
- 895,000 calls / month
- 50 requests / second
- Hard cap (429 above quota, no overage)
- 895k calls/month
- 50 req/sec
- Platform scale
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
NASDAQ Listings API
The directory of every security listed on the NASDAQ stock market as an API — the reference a brokerage, stock screener or ticker-validation tool needs to confirm a symbol is NASDAQ-listed and see what kind of instrument it is. For each of 5,400+ securities the API returns its ticker symbol, the full security name and a normalized security type (common stock, ETF / fund, warrant, unit, right, preferred, note or depositary receipt) derived from the listing. Look a ticker up, search by symbol or company name, filter by security type, or list them all with a per-type breakdown. This is the NASDAQ listing directory — distinct from sp500-api (S&P 500 index membership) and finance-api (live quotes). Served from memory — always fast.
api.oanor.com/nasdaq-api
Currency Converter API
Live foreign-exchange conversion across 160+ world currencies — the plain, developer-friendly converter. Get the latest rates for any base currency, convert an amount between any two currencies, read the rate (and inverse) for a single pair, or list every supported currency. Rates are read live from an open exchange-rate source that aggregates a broad set of feeds and covers far more currencies than ECB-only data — including emerging-market and exotic currencies such as the Nigerian naira, Indian rupee or Vietnamese dong. This is the everyday convert / latest-rates utility a checkout, invoice, pricing page or travel app needs — distinct from the FX analytics APIs in the catalogue (historical date ranges, pip and position-size calculators, triangular-arbitrage path maths, currency indices), which compute on rates rather than simply converting them.
api.oanor.com/currencyconverter-api
Trade Setup & R:R Planner API
Live trade-planning analytics built on the geometry of a setup, the numbers a trader checks before pulling the trigger, computed on demand from the entry, stop and target you pass in — no key, no cache, nothing stored. The plan endpoint turns an entry, stop-loss and target into the risk and reward per unit, the reward-to-risk ratio and the break-even win rate — the minimum win rate that makes the trade profitable — and, if you supply an account size and a risk percent, the position size, risk amount and reward amount. The targets endpoint projects target prices at chosen R-multiples of the stop distance, so you can ladder out at 1R, 2R and 3R. The expectancy endpoint turns a reward-to-risk ratio and a win rate into the expected value per trade in R and the profit factor, telling you whether an edge is positive. This is a trade-geometry planner, fundamentally different from account-based position sizers, forward Monte-Carlo simulators and backward trade-journal analyzers: it reasons from the entry, stop and target. Works for any market — forex, stocks, crypto or futures — and for long or short. Computed locally and deterministically, so it is instant and private. Ideal for trade journals, risk checklists, broker tools and trading dashboards. Live, nothing stored. 3 compute endpoints. For Kelly position sizing use a trading-risk API; for a full outcome distribution use a strategy simulator.
api.oanor.com/tradesetup-api
Risk of Ruin API
Live risk-of-ruin and drawdown-survival analytics that traders run to size risk so a losing streak cannot wipe them out, computed on demand from the edge you pass in — no key, no cache, nothing stored. The ruin endpoint returns the probability of ever losing your capital given a win rate, a reward-to-risk payoff and the risk taken per trade, solved analytically from the gambler's-ruin equation rather than simulated — it also reports the expectancy in R, the capital units at risk and the single-unit ruin root behind the answer. The drawdown endpoint returns the probability of ever hitting each of several drawdown levels and the gain needed to recover from them. The recovery endpoint returns the loss-and-gain asymmetry — the percent gain required to climb back from any drawdown, the reason a 50 percent loss needs a 100 percent gain — and, if you pass net profit and max drawdown, the recovery factor. This is an analytic risk engine, fundamentally different from Monte-Carlo simulators and price-series drawdown feeds: it turns a win rate, payoff and risk fraction into the closed-form math of survival, instantly. Win rate accepts a fraction or a percentage; payoff is reward-to-risk; negative expectancy makes ruin certain. Computed locally and deterministically, so it is instant and private. Ideal for position sizing, money-management rules, prop-firm risk limits and trading dashboards. Live, nothing stored. 3 compute endpoints. For a full Monte-Carlo outcome distribution use a strategy-simulator API.
api.oanor.com/riskofruin-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Securities ID API?
What's the rate limit for Securities ID API?
How much does Securities ID API cost?
Can I cancel my subscription anytime?
Is Securities ID API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/securitiesid-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/securitiesid-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/securitiesid-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/securitiesid-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.