ONE PLATFORM · MANY APIS

APIs for builders who ship.

Apexon is a multi-product API platform. One account, one consistent contract — the same auth model, error schema, and conventions across every product, starting with FinMarkets for market data.

Get API key Read docs Free tier · no card
terminal
# One key. The whole FinMarkets suite.
curl https://api.apexon.dev/v1/stock/NVDA/quote \
  -H "X-API-Key: $APEXON_KEY"

curl https://api.apexon.dev/v1/screener/predefined/day_gainers \
  -H "X-API-Key: $APEXON_KEY"
BUILT FOR
Indie SaaSTrading toolsResearch appsInternal dashboards

The catalog

Vertical API suites that share one auth model, one error schema, and one set of conventions. Subscribe to what you need.

MARKET DATA Available

FinMarkets

Quotes, historical charts, options chains, screeners, market news, and earnings calendars — one suite for anything that touches a ticker.

Read the FinMarkets docs →
GET /v1/stock/{symbol}/quote GET /v1/stock/{symbol}/options POST /v1/screener
COMMERCE DATA Available

CatalogAIO

Amazon product data as clean JSON — search, product details, buy-box offers, reviews, bestsellers, and suggestions across 22 Amazon storefronts, each priced in its local currency.

Read the CatalogAIO docs →
GET /v1/search GET /v1/product/{asin} GET /v1/product/{asin}/offers
SPORTS DATA Coming soon

LineSnap

Near-real-time multi-sport live scores and in-play board odds. Poll the REST routes or hold an SSE stream that sends deltas after the first frame.

Read the LineSnap docs →
GET /v1/live GET /v1/odds GET /v1/stream
MUSIC DATAComing soon

Music

Track metadata, charts, and artist analytics for music apps and playlist tools.

GET /v1/music/track/metadata GET /v1/music/charts/top GET /v1/music/artist/stats
WEB TOOLSComing soon

Tools

The utility belt: validation, QR generation, and HTML-to-PDF rendering.

GET /v1/tools/validate/email GET /v1/tools/qr/generate POST /v1/tools/pdf/render
GEOComing soon

Geo

Geocoding, timezones, and IP intelligence for location-aware products.

GET /v1/geo/geocode GET /v1/geo/timezone GET /v1/geo/ip/lookup

From zero to first call

01

Subscribe

Pick a product and plan — direct on apexon.dev or through the marketplace you already use.

02

Grab your key

Each product issues its own key, passed the same way — X-API-Key — so integrating a second one is copy-paste.

03

Call the API

Each product has its own host and clean /v1 endpoints — predictable JSON, stable errors, rate-limit headers.

04

Scale your plan

Move tiers as traffic grows. No re-integration, no new keys, no migration weekend.

DEVELOPER EXPERIENCE

Boring in the best way

Every product speaks the same dialect. Call our clean /v1 surface directly, or use the marketplace path aliases if you subscribed on RapidAPI — same engine, same conventions.

  • OpenAPI 3.1 specs for every product — generate clients, mock servers, tests.
  • Stable error schema — machine-readable codes, never HTML error pages.
  • Rate-limit headersX-RateLimit-* on every response, no surprises at the quota edge.
  • Smart caching — every response tells you whether it was a cache hit via X-Cache, so you know exactly what you got.
GET /v1/stock/NVDA/quote · 200 OK
{
  "quoteResponse": {
    "result": [{
      "symbol": "NVDA",
      "regularMarketPrice": 128.42,
      "regularMarketChangePercent": 1.8,
      "marketState": "REGULAR",
      
    }],
    "error": null
  }
}

# headers
X-RateLimit-Remaining: 9871
X-Cache: HIT
GET /v1/product/B0BTYCRJSS?domain=amazon.de · 200 OK
{
  "success": true,
  "data": {
    "asin": "B0BTYCRJSS",
    "domain": "amazon.de",
    "title": "…",
    "price": { "raw": "29,99 €", "value": 29.99, "currency": "EUR" },
    
  }
}

Pricing, per product

Every product is subscribed, keyed, and metered on its own — pick the one you're pricing. Same price direct or through a marketplace.

BASIC
$0/mo
500 requests / day 5 requests / sec

Kick the tires. Full API surface, community support.

Start free
ULTRA
$19.99/mo
250,000 requests / mo 20 requests / sec

Production apps with real users. Priority support.

Choose Ultra
MEGA
$79.99/mo
2,000,000 requests / mo 25 requests / sec

High-volume workloads. Priority support + SLA talk.

Choose Mega

Quotas reset on your billing date. Overage billed per 1k requests on paid tiers. Cancel anytime.

Your language, three lines

finmarkets screener
curl "https://api.apexon.dev/v1/screener/predefined/day_gainers?count=10" \
  -H "X-API-Key: $APEXON_KEY"

Straight answers

How fast are responses?

Hot paths like quotes are cached, and cache hits skip the upstream round-trip entirely. Every response carries an X-Cache header, so you can see exactly what you got — and we'll publish measured latency numbers rather than quote a marketing figure.

How fresh is the data?

Freshness varies by endpoint and is documented per route. FinMarkets quotes are refreshed on short intervals from upstream sources on a best-effort basis — the X-Cache header tells you whether a response came from cache, and per-route cache windows are listed in the docs.

Are you affiliated with Yahoo or the exchanges?

No. Apexon is an independent company and is not affiliated with Yahoo or any exchange or upstream data brand. Nothing we serve is investment advice.

What uptime do you commit to?

We run redundant infrastructure and publish live uptime on our status page. Availability is best-effort on all self-serve tiers; if you need contractual guarantees, email us about volume plans.

Should I subscribe on RapidAPI or direct?

Same engine, same data, same prices. Direct gives you the clean /v1 surface and consolidated billing across products; the marketplace path aliases are handy if your billing already lives there. You can switch later without code changes beyond the base URL.

First call in under five minutes.

Free tier, no card, no sales call. Grab a key and hit the quote endpoint before your coffee cools.