Reviewer Readiness
CoinGecko and CoinMarketCap exchange reviews typically expect a working exchange site, accessible market listings, stable public API coverage, visible order book depth, recent trade activity, and trust-oriented disclosures such as reserve and market integrity references.
This page centralizes the public endpoints and policy links that external reviewers can use without requiring a user login.
Public REST Endpoints
All URLs are GET endpoints and return JSON.
| Endpoint |
Purpose |
Key parameters |
| /api/public/exchange/summary |
Exchange profile, pair counts, trading controls, transparency links |
None |
| /api/public/exchange/health |
Health and readiness check for public exchange API availability |
None |
| /api/public/exchange/fees |
Public maker and taker spot fee disclosure |
None |
| /api/public/exchange/compliance |
Dated legal/compliance disclosure status register for reviewers |
None |
| /api/public/exchange/readiness |
Public 100-point readiness scorecard and evidence map |
None |
| /api/public/exchange/pairs |
All active trading pairs and market metadata |
asset_class=all|crypto|stock |
| /api/public/exchange/tickers |
Latest public tickers with bid/ask and estimated tape volume |
asset_class=all|crypto|stock, limit |
| /api/public/exchange/orderbook |
Depth snapshot for one symbol |
asset_class, symbol |
| /api/public/exchange/trades |
Recent public trades for one symbol or globally |
asset_class, symbol, limit |
Quick Test Commands
Use these commands to verify endpoint reachability and schema quickly from a terminal or integration runner.
curl -s https://ebayfx.com/api/public/exchange/summary
curl -s https://ebayfx.com/api/public/exchange/health
curl -s 'https://ebayfx.com/api/public/exchange/fees'
curl -s 'https://ebayfx.com/api/public/exchange/compliance'
curl -s 'https://ebayfx.com/api/public/exchange/readiness'
curl -s 'https://ebayfx.com/api/public/exchange/tickers?asset_class=crypto&limit=5'
curl -s 'https://ebayfx.com/api/public/exchange/orderbook?asset_class=crypto&symbol=BTC'
curl -s 'https://ebayfx.com/api/public/exchange/trades?asset_class=crypto&symbol=BTC&limit=20'
Field Reference: Summary And Health
| Field |
Endpoint |
Meaning |
| exchange.name |
/api/public/exchange/summary |
Public exchange name used in reviewer and integration checks |
| api_version |
All public exchange endpoints |
Contract version string for schema-aware consumers |
| schema_updated_at |
All public exchange endpoints |
UTC timestamp of the latest documented schema change |
| endpoint |
All public exchange endpoints |
Canonical endpoint identifier for the payload family |
| coverage.active_pairs_total |
/api/public/exchange/summary |
Number of active public trading pairs currently exposed |
| market_quality.maker_fee_percent |
/api/public/exchange/summary |
Published spot maker fee mirrored from admin settings |
| status |
/api/public/exchange/health |
Overall health state of the public exchange API surface |
| checks.database |
/api/public/exchange/health |
Database availability check for market metadata lookups |
| active_pairs_total |
/api/public/exchange/health |
Active instrument count at health-check time |
| disclosure_completeness_score |
/api/public/exchange/compliance |
Completeness score for published compliance statements |
| overall_score |
/api/public/exchange/readiness |
Composite public readiness score out of 100 |
Current Fee Disclosure Model
| Field |
Meaning |
| maker_fee_percent |
Admin-configured public maker fee for spot orders |
| taker_fee_percent |
Admin-configured public taker fee for spot orders |
| fee_unit |
Percent-based disclosure format |
| listing_fee_policy_url |
Separate policy page for listing and due-diligence charges |
Field Reference: Tickers And Order Book
| Field |
Endpoint |
Meaning |
| base |
/api/public/exchange/tickers |
Base asset symbol for the market pair |
| target |
/api/public/exchange/tickers |
Quote asset symbol used for pricing |
| last |
/api/public/exchange/tickers |
Latest public market price in quote asset terms |
| volume_usd_estimate |
/api/public/exchange/tickers |
Recent estimated turnover sourced from public trade tape |
| mid |
/api/public/exchange/orderbook |
Midpoint price used for the current depth snapshot |
| bids / asks |
/api/public/exchange/orderbook |
Aggregated visible depth levels with price, size, and running total |
Sample Summary Response
This is the high-level payload reviewers can use to confirm market coverage, control posture, and trust references.
{
"success": true,
"data": {
"api_version": "2026-07-09",
"schema_updated_at": "2026-07-09T12:05:00Z",
"endpoint": "summary",
"changelog_url": "https://ebayfx.com/exchange-api",
"exchange": {
"name": "eBayFX",
"slug": "ebayfx",
"website": "https://ebayfx.com/exchanges",
"markets_page": "https://ebayfx.com/crypto-prices-hub",
"api_reference": "https://ebayfx.com/exchange-api",
"fees_url": "https://ebayfx.com/api/public/exchange/fees",
"proof_of_reserves_url": "https://ebayfx.com/proof-of-reserves",
"trading_enabled": true,
"spot_market_enabled": true,
"quote_asset": "USDT"
},
"coverage": {
"active_pairs_total": 143,
"active_crypto_pairs": 92,
"active_stock_pairs": 51,
"asset_classes": [
"crypto",
"stock"
]
},
"market_quality": {
"volume_24h_display": "$178.73 M",
"maker_fee_percent": 0,
"taker_fee_percent": 0,
"max_spread_percent": 1.5,
"slippage_ratio_percent": 0.5,
"volatility_guard_enabled": true,
"spread_guard_enabled": true,
"circuit_breaker_enabled": true
}
}
}
Sample Health Response
Use the health payload for simple uptime, readiness, and monitoring checks before deeper market-data ingestion.
{
"success": true,
"data": {
"api_version": "2026-07-09",
"schema_updated_at": "2026-07-09T12:05:00Z",
"endpoint": "health",
"changelog_url": "https://ebayfx.com/exchange-api",
"exchange": "eBayFX",
"service": "public-exchange-api",
"status": "ok",
"checks": {
"database": "ok",
"spot_market_enabled": "ok",
"trading_enabled": "ok",
"active_pairs": "ok"
},
"active_pairs_total": 143,
"timestamp": "2026-07-09T12:02:00Z"
}
}
Sample Fee Response
Use the fee payload for explicit maker and taker disclosure checks during exchange listing review.
{
"success": true,
"data": {
"api_version": "2026-07-09",
"schema_updated_at": "2026-07-09T12:05:00Z",
"endpoint": "fees",
"changelog_url": "https://ebayfx.com/exchange-api",
"exchange": "eBayFX",
"market_type": "spot",
"quote_asset": "USDT",
"maker_fee_percent": 0,
"taker_fee_percent": 0,
"fee_unit": "percent",
"fee_reference_url": "https://ebayfx.com/exchange-api",
"listing_fee_policy_url": "https://ebayfx.com/listing-fees",
"notes": [
"Published values apply to public spot market fee disclosure for reviewer and integration checks."
]
}
}
Sample Compliance Response
Use the compliance payload for dated legal and trust disclosure checks in reviewer workflows.
{
"success": true,
"data": {
"api_version": "2026-07-09",
"schema_updated_at": "2026-07-09T12:05:00Z",
"endpoint": "compliance",
"changelog_url": "https://ebayfx.com/exchange-api",
"exchange": "eBayFX",
"as_of_date": "2026-07-09",
"reviewer_contact": "support@ebayfx.com",
"disclosure_completeness_score": 100,
"disclosure_status": "complete",
"statements": {
"operating_entity": "eBayFX is published as the platform trade name. The formal legal-entity review packet is provided through the official support channel.",
"jurisdiction": "Primary operating jurisdiction references are disclosed through the official support channel.",
"licensing": "As of 2026-07-09, no public regulatory license claim is made without a verifiable published reference.",
"kyc_aml": "Risk-based KYC and AML checks are applied through onboarding and transaction monitoring controls.",
"sanctions": "Restricted-use and sanctions-aware controls are applied through onboarding and ongoing monitoring checks.",
"incident": "As of 2026-07-09, no public material incident report is published on this page beyond operating disclosures.",
"reserve_attestation": "Proof-of-reserves and assets-proof surfaces are published. Third-party attestation references are disclosed when available as dated evidence."
}
}
}
Sample Readiness Response
Use the readiness payload for a normalized 100-point scorecard across website, API, market-data, fee, and compliance disclosure surfaces.
{
"success": true,
"data": {
"api_version": "2026-07-09",
"schema_updated_at": "2026-07-09T12:05:00Z",
"endpoint": "readiness",
"changelog_url": "https://ebayfx.com/exchange-api",
"exchange": "eBayFX",
"as_of": "2026-07-09 16:55:00",
"overall_score": 100,
"target_score": 100,
"status": "reviewer-ready",
"scores": {
"website_surface": 100,
"api_surface": 100,
"market_data_surface": 100,
"fee_disclosure_surface": 100,
"compliance_disclosure_surface": 100
},
"metrics": {
"active_pairs_total": 143,
"active_tickers_total": 143,
"maker_fee_percent": 0.1,
"taker_fee_percent": 0.2
}
}
}
Sample Order Book Response
Order book responses expose current depth structure with bid and ask ladders for individual symbols.
{
"success": true,
"data": {
"api_version": "2026-07-09",
"schema_updated_at": "2026-07-09T12:05:00Z",
"endpoint": "orderbook",
"changelog_url": "https://ebayfx.com/exchange-api",
"asset_class": "crypto",
"symbol": "BTC",
"as_of": "2026-07-09 11:55:06",
"mid": 108245.12653142,
"spread_pct": 0.0437,
"bids": [
{
"price": 108221.44112531,
"qty": 0.853214,
"total": 0.853214
},
{
"price": 108198.11055217,
"qty": 1.120441,
"total": 1.973655
}
],
"asks": [
{
"price": 108268.81091257,
"qty": 0.771403,
"total": 0.771403
},
{
"price": 108291.20451891,
"qty": 0.945118,
"total": 1.716521
}
]
}
}
Sample Ticker Response
Ticker responses expose the fields most commonly needed for pair-level market validation: last price, bid, ask, spread, estimated recent volume, and route links for trades and order book.
{
"success": true,
"data": {
"api_version": "2026-07-09",
"schema_updated_at": "2026-07-09T12:05:00Z",
"endpoint": "tickers",
"changelog_url": "https://ebayfx.com/exchange-api",
"as_of": "2026-07-09 11:55:06",
"tickers": [
{
"base": "BTC",
"target": "USDT",
"market": "eBayFX",
"asset_class": "crypto",
"last": 108245.12653142,
"bid": 108221.44112531,
"ask": 108268.81091257,
"spread_percent": 0.0437,
"volume_usd_estimate": 482931.4412,
"change_percent": 1.42,
"trade_url": "/api/public/exchange/trades?asset_class=crypto&symbol=BTC",
"orderbook_url": "/api/public/exchange/orderbook?asset_class=crypto&symbol=BTC"
}
]
}
}
Trust and Disclosure Links
| Resource |
URL |
| Proof of Reserves |
/proof-of-reserves |
| Assets Proof |
/assets-proof |
| Compliance Disclosure |
/compliance-disclosure |
| Exchange Security |
/exchange-security |
| Exchange Review Checklist |
/exchange-review-checklist |
| Exchange Submission Pack |
/exchange-submission-pack |
| Market Integrity |
/market-integrity |
| Issuer Disclosure |
/issuer-disclosure |
| Listing Fees |
/listing-fees |
| Listing Status |
/listing-status |