/api/v1/brokersReturns the full list of reviewed forex and CFD brokers worldwide with public-safe fields (affiliate URLs are stripped). No region filter is applied — EU, UK, APAC and offshore entities are all included.
Query parameters
limitMaximum number of brokers to return. Default 100, max 500.categoryFilter by category slug (e.g. ecn, low-spread, beginners, scalping, mt4, mt5, day-trading).minScoreOnly return brokers whose overall score is at least this value (e.g. 9).
curl "https://fx-brokers.info/api/v1/brokers?limit=1&minScore=9"const res = await fetch('https://fx-brokers.info/api/v1/brokers?limit=1&minScore=9');
const { data, meta } = await res.json();
console.log(data[0].name, data[0].scores.overall, meta.total);Example response
{
"data": [
{
"name": "Pepperstone",
"slug": "pepperstone",
"logo": "/broker-logos/pepperstone.png",
"founded": 2010,
"hq": "Melbourne, Australia",
"website": "pepperstone.com",
"scores": {
"overall": 9.4,
"fees": 9.4,
"platforms": 9.3,
"regulation": 9.5,
"support": 9,
"education": 8,
"instruments": 8.8,
"execution": 9.5
},
"regulators": [
{
"name": "BaFin",
"country": "Germany",
"license": "151148"
},
{
"name": "CySEC",
"country": "Cyprus",
"license": "388/20"
},
{
"name": "FCA",
"country": "UK",
"license": "684312"
},
{
"name": "ASIC",
"country": "Australia",
"license": "414530"
}
],
"trading": {
"minDeposit": 0,
"minDepositCurrency": "EUR",
"maxLeverageRetail": "Up to 1:30",
"maxLeveragePro": "500:1",
"spreadEURUSD": "0.0 pips (Razor), 0.69 pips (Standard)",
"commission": "$3.50 per lot per side (Razor), None (Standard)",
"swapFree": true
},
"platforms": [
"MetaTrader 4",
"MetaTrader 5",
"cTrader",
"TradingView"
],
"accountTypes": [
"Standard",
"Razor"
],
"depositMethods": [
"Bank Transfer",
"Credit/Debit Card",
"PayPal",
"Skrill",
"Neteller"
],
"withdrawalFee": "Free",
"pros": [
"CySEC-regulated EU entity, backed by BaFin, FCA and ASIC group licences",
"No minimum deposit requirement",
"Excellent platform variety including TradingView",
"Award-winning customer support",
"Tight raw spreads from 0.0 pips"
],
"cons": [
"Product range narrower than some competitors",
"No proprietary platform",
"Educational content could be more structured",
"Inactivity fee after 12 months"
],
"euSpecific": {
"esmaCompliant": true,
"negativeBalanceProtection": true,
"compensationScheme": "ICF (Investor Compensation Fund) up to EUR 20,000",
"segregatedFunds": true
},
"description": "Pepperstone serves EU clients through its CySEC-regulated entity (part of a group also licensed by BaFin, the FCA and ASIC), offering razor-sharp spreads, zero minimum deposit, and excellent execution across MT4, MT5, cTrader, and TradingView.",
"url": "https://fx-brokers.info/brokers/pepperstone"
}
],
"meta": {
"total": 6,
"returned": 1,
"limit": 1,
"filters": {
"category": null,
"minScore": 9
},
"generatedAt": "2026-06-27T12:00:00.000Z"
}
}