Skip to content

Command line

iGaming Finder CLI

Search operators, check domain verdicts, and pull decision-maker contacts — without leaving your terminal. JSON output, free previews before paid searches, composes with jq.

Install

Early access. Request access to get your API key.

npm install -g @igamingfinder/cli
igamingfinder config set-key client_xxx
igamingfinder domains search --verdict blocklisted --geo pl

What you can do

Pipe-friendly JSON

Every data command takes `--json` and switches to JSON automatically when piped. jq, awk, and your analyst tooling just work.

Free previews

`companies preview` and `licenses preview` return the match count and cost estimate for 0 credits — see the bill before you run the search.

Domain verdicts

A trust verdict for one domain (`domains resolve`), or every blocklisted domain in a country (`domains search --verdict --geo --since`).

Scriptable auth

API key via env var, config file, or `--token` flag. No interactive prompts — safe for CI and cron.

Blocklist changes

Which domains were blocklisted or left the blocklist since a date: `domains search --since / --until / --dropped-before` keeps screening lists current.

Status & quotas

Inspect your plan and credit balance — granted, used, reserved — from `igamingfinder account`.

Prospect lists

List and open your prospect lists for free, then download the CSV when a list is ready. Request new lists on the website.

Example session

$ igamingfinder domains resolve roobet.com

  roobet.com  licensed
  licensed_by: curacao, anjouan

$ igamingfinder prospect-lists list --status ready
$ igamingfinder prospect-lists download igfpl_example -o prospect-list.csv
Saved to prospect-list.csv

$ igamingfinder companies search --jurisdiction mga --json | jq -r '.hits[] | .primary_domain.domain // empty'

The CLI reads and downloads prospect lists. Request new lists on the website; the CLI does not send messages.

Ready to script?

Full reference, command catalogue, and recipes in the docs.

Read CLI docs →