GUIDE · 5 MINUTES

Getting started

Sign in, run a satellite lookup, save a NORAD to your watchlist, and read your first signed forensic dossier — all without leaving the browser.

1. Sign in

Go to debrisguard.deepfieldlabs.dev and click Sign In. You have three options:

Tip Google and email accounts get the same Watcher tier. They're separate identities in our system (different Cognito sub), so your quota and watchlist are per-account.

2. Your first lookup

The simplest thing you can do is look up a satellite by its NORAD ID.

Try the International Space Station — NORAD 25544. In the dashboard, type 25544 in the search box and press Enter. You'll see:

ISS (ZARYA)         orbit_class: LEO       altitude: 433 km
fused_score: 0.18   severity: info         alert: no
detectors_active: bstar_drift, catalog, manoeuvre

That's the API's enrichment block. The fused_score is on a 0–1 scale; anything ≥ 0.40 is flagged as an alert. ISS is nominal at 0.18.

What a lookup costs One lookup = one of your daily quota (Watcher: 10/day, Analyst: 5,000/day). The quota resets at 00:00 UTC.

3. Add a satellite to your watchlist

The Watcher tier lets you pin one NORAD; Analyst pins five. The dashboard's Watchlist panel filters the alert stream and the world map to your pinned satellites only.

  1. Click Watchlist in the left rail (or visit /watchlist.html).
  2. Enter a NORAD ID and click + Add.
  3. Back on the dashboard, click the ★ Watchlist only chip above the alert stream to filter.

If you hit the tier cap, the API returns HTTP 409 with a clear message:

{"error":"tier 'watcher' allows up to 1 watchlist items (currently 1)"}

4. Open a forensic dossier

Every alerted object in the daily report has a signed forensic dossier (an HTML page with the underlying JSON sidecar). Click an alert row in the alert stream — or click a red dot on the world map — to open it.

The dossier shows:

Why dossiers matter Court-ready evidence. Insurance underwriters, regulators, and lawyers can re-verify a year-old dossier and confirm it was generated by us, on the day it was claimed, from the published TLE catalog.

5. When to upgrade

Click your profile (top-right) → View tiersSubscribe. Card is charged via Stripe; tier flips within ~30 seconds of payment.

6. Use the CLI from your terminal

Every dashboard action has a curl equivalent. For ad-hoc terminal work, grab a short-lived access token from the dashboard:

  1. Profile (top-right) → CLI accessCopy access token.
  2. Paste into your shell:
export DG_TOKEN='<paste-here>'
curl -H "Authorization: Bearer $DG_TOKEN" \
  https://api.debrisguard.deepfieldlabs.dev/v1/objects/25544

The access token lasts ~60 minutes. For scheduled scripts (CI, GitHub Actions, backend services), generate an API key instead — it lives until you revoke it. Profile → API keys → + New key.

Full API reference: DebrisGuard API guide →

7. Get help

Next: Dashboard tour →