iGaming Finder

Overview

The GET /domains endpoint accepts filters as query parameters. All filters are optional and can be combined.

bash
curl -H "X-API-Key: YOUR_API_KEY" \
  "https://api.igamingfinder.com/api/v1/igaming/domains?filters[jurisdiction]=MGA&filters[payment_category]=crypto&filters[has_affiliate]=true"

Available Filters

jurisdiction

Filter by license jurisdiction.

Value Jurisdiction
mga Malta Gaming Authority
ukgc UK Gambling Commission
curacao Curacao eGaming
anjouan Anjouan (Comoros)
bash
filters[jurisdiction]=mga

payment_category

Filter by accepted payment method category.

Value Description
card Visa, Mastercard, etc.
crypto Bitcoin, Ethereum, USDT, etc.
ewallet Skrill, Neteller, ecoPayz, etc.
bank_transfer Wire transfers
open_banking Trustly, instant bank pay
local_apm Region-specific methods (Pix, UPI, etc.)
bash
filters[payment_category]=crypto

game_provider

Filter domains that feature a specific game provider. Use the normalized provider name.

bash
filters[game_provider]=evolution
filters[game_provider]=pragmatic-play

exclude_provider

Exclude domains that feature a specific provider. Useful for competitive analysis.

bash
filters[exclude_provider]=netent

exclude_payment

Exclude domains that accept a specific payment category.

bash
filters[exclude_payment]=crypto

has_affiliate

Only return domains with detected affiliate programs.

bash
filters[has_affiliate]=true

geo_hint

Filter by geographic targeting.

bash
filters[geo_hint]=BR

enriched_after

Only return domains enriched after a given timestamp. Useful for incremental syncs.

bash
filters[enriched_after]=2026-05-01T00:00:00Z
$ help --topic=warning
enriched_after must be a valid ISO 8601 timestamp. Invalid formats return 400.

Pagination

Parameter Default Max Description
page 1 Page number
per_page 50 500 Results per page
bash
curl -H "X-API-Key: YOUR_API_KEY" \
  "https://api.igamingfinder.com/api/v1/igaming/domains?page=2&per_page=100"

The response includes total, page, and per_page for pagination:

json
{
  "data": {
    "domains": [...],
    "total": 1420,
    "page": 2,
    "per_page": 100
  }
}

Combining Filters

Filters are AND-combined. This query finds MGA-licensed operators that accept crypto and feature Evolution games:

bash
curl -H "X-API-Key: YOUR_API_KEY" \
  "https://api.igamingfinder.com/api/v1/igaming/domains?filters[jurisdiction]=MGA&filters[payment_category]=crypto&filters[game_provider]=evolution"