SPB Git forge
15commits 1branches 0releases
29.7 MBsize
maindefault branch
10 days agolast push
TypeScript 36.3% Python 31.8% Go 18% JavaScript 9.8% Shell 1.9% SQL 1.4% CSS 0.5%

perf: boost no longer bumps the config version (probes re-downloaded 22k targets every cycle), cached /config payload, direct JSON responses for heavy endpoints

Simon-Pierre Boucher committed 11 days ago (Sep 13, 2026) parent 8162818

8 changed files +5,720 −32

modified apps/api/src/internetpressure/api/admin.py +6 −3
@@ -109,11 +109,14 @@ class TargetIn(BaseModel):
109 109 enabled: bool = True
110 110
111 111
112 @router.get("/targets")
113 async def admin_targets(_: str = Depends(require_admin)) -> dict[str, Any]:
112 +@router.get("/targets", response_model=None)
113 +async def admin_targets(_: str = Depends(require_admin)): # type: ignore[no-untyped-def]
114 + from fastapi.responses import Response
115 +
114 116 from ..registry import list_targets
117 + from ..util import dumps
115 118
116 return {"targets": await list_targets()}
119 + return Response(dumps({"targets": await list_targets()}), media_type="application/json")
117 120
118 121
119 122 @router.post("/targets", status_code=201)
modified apps/api/src/internetpressure/api/public.py +10 −5
@@ -320,8 +320,8 @@ async def _observed(target_ids: list[str], hours: int) -> dict[str, Any]:
320 320 return r or {}
321 321
322 322
323 @router.get("/services")
324 async def services() -> dict[str, Any]:
323 +@router.get("/services", response_model=None)
324 +async def services() -> Response:
325 325 live = await _live("services") or []
326 326 targets = await list_targets(enabled_only=True)
327 327 out = []
@@ -331,7 +331,9 @@ async def services() -> dict[str, Any]:
331 331 out.append({**{k: s.get(k) for k in ("slug", "name", "category", "pressure", "level", "level_label", "targets", "affected_regions", "importance")},
332 332 "observed_availability_24h": r3(obs.get("availability")) if obs.get("n") else None,
333 333 "vendor_status": s.get("vendor_status")})
334 return {"ts": iso(utcnow()), "services": out}
334 + from ..util import dumps
335 +
336 + return Response(dumps({"ts": iso(utcnow()), "services": out}), media_type="application/json")
335 337
336 338
337 339 @router.get("/service/{slug}")
@@ -430,7 +432,7 @@ async def _targets_summary(targets: list[dict[str, Any]]) -> list[dict[str, Any]
430 432 return out
431 433
432 434
433 @router.get("/targets")
435 +@router.get("/targets", response_model=None)
434 436 async def targets(category: str | None = None, q: str | None = None, country: str | None = None, tier: int | None = None,
435 437 limit: int = Query(300, ge=1, le=3000), offset: int = Query(0, ge=0)) -> dict[str, Any]:
436 438 ts = await list_targets(enabled_only=True)
@@ -446,7 +448,10 @@ async def targets(category: str | None = None, q: str | None = None, country: st
446 448 total = len(ts)
447 449 cats = sorted({t["category"] for t in await list_targets(enabled_only=True)})
448 450 page = ts[offset: offset + limit]
449 return {"total": total, "limit": limit, "offset": offset, "categories": cats, "targets": await _targets_summary(page)}
451 + from ..util import dumps
452 +
453 + return Response(dumps({"total": total, "limit": limit, "offset": offset, "categories": cats, "targets": await _targets_summary(page)}),
454 + media_type="application/json")
450 455
451 456
452 457 @router.get("/target/{target_id}")
modified apps/api/src/internetpressure/engine/loop.py +13 −13
@@ -301,27 +301,27 @@ class Engine:
301 301 return 0
302 302
303 303 async def _boost(self, ctx: Ctx, sigs) -> None: # type: ignore[no-untyped-def]
304 + """Sampling boost for stressed targets (≥ 2 probes at stress ≥ 0.5). Sticky for `boost_seconds`, recomputed at
305 + most once a minute, delivered to probes inside every batch response — never through a config-version bump."""
306 + if time.time() - getattr(self, "_boost_at", 0.0) < 60:
307 + return
308 + self._boost_at = time.time()
304 309 sch = ctx.cfg.scheduler
305 310 stressed: dict[str, set[str]] = {}
306 311 for s in sigs:
307 312 if s.pair.stress >= 0.5 and s.tags.probe_id != "*":
308 313 stressed.setdefault(s.tags.target_id, set()).add(s.tags.probe_id)
309 boosted = sorted(t for t, ps in stressed.items() if len(ps) >= 2)[:40]
314 + new_ids = {t for t, ps in stressed.items() if len(ps) >= 2}
310 315 cur = await rds.get_json("ip:boost") or {}
316 + until_cur = parse_ts(cur.get("until")) if cur else None
317 + keep = set(cur.get("targets") or []) if (until_cur and until_cur > utcnow()) else set()
318 + boosted = sorted(keep | new_ids)[:60]
311 319 if boosted:
312 320 until = utcnow() + __import__("datetime").timedelta(seconds=int(sch.get("boost_seconds", 900)))
313 new = {"targets": boosted, "factor": float(sch.get("boost_factor", 0.5)), "until": iso(until)}
314 if set(cur.get("targets") or []) != set(boosted):
315 await rds.set_json("ip:boost", new, ex=int(sch.get("boost_seconds", 900)) + 60)
316 await bump_config_version()
317 else:
318 await rds.set_json("ip:boost", new, ex=int(sch.get("boost_seconds", 900)) + 60)
319 elif cur:
320 # let it expire naturally, but drop the list if it was set by us and nothing is stressed anymore
321 until = parse_ts(cur.get("until"))
322 if until and until < utcnow():
323 await rds.r().delete("ip:boost")
324 await bump_config_version()
321 + await rds.set_json("ip:boost", {"targets": boosted, "factor": float(sch.get("boost_factor", 0.5)), "until": iso(until)},
322 + ex=int(sch.get("boost_seconds", 900)) + 60)
323 + elif cur and until_cur and until_cur < utcnow():
324 + await rds.r().delete("ip:boost")
325 325
326 326 async def _publish(self, now, health, gp, regions_out, countries_out, services_out, asns_out, fronts, incidents,
327 327 routing: RoutingResult, g: ScopeScore, scopes, sigs, published_events, corr_active, allowed) -> None: # type: ignore[no-untyped-def]
modified apps/api/src/internetpressure/ingest/router.py +21 −7
@@ -101,11 +101,16 @@ async def _schedule() -> dict[str, Any]:
101 101 }
102 102
103 103
104 @router.get("/config")
105 async def probe_config(request: Request) -> dict[str, Any]:
106 p = await _authenticate(request, b"")
104 +_targets_cache: tuple[str, list[dict[str, Any]]] | None = None # (config_version, payload)
105 +
106 +
107 +async def _targets_payload(version: str) -> list[dict[str, Any]]:
108 + """The target list is identical for every probe and only changes with the config version: build it once."""
109 + global _targets_cache
110 + if _targets_cache and _targets_cache[0] == version:
111 + return _targets_cache[1]
107 112 targets = await list_targets(enabled_only=True)
108 out_targets = [
113 + out = [
109 114 {
110 115 "target_id": t["target_id"], "name": t["name"], "hostname": t["hostname"], "url": t["url"], "ip": t["ip"],
111 116 "port": t["port"], "category": t["category"], "provider": t["provider"], "service_id": t["service_id"],
@@ -114,14 +119,23 @@ async def probe_config(request: Request) -> dict[str, Any]:
114 119 }
115 120 for t in targets
116 121 ]
117 return {
122 + _targets_cache = (version, out)
123 + return out
124 +
125 +
126 +@router.get("/config", response_model=None)
127 +async def probe_config(request: Request) -> Response:
128 + p = await _authenticate(request, b"")
129 + version = await config_version()
130 + body = {
118 131 "server_time": iso(utcnow()),
119 "config_version": await config_version(),
132 + "config_version": version,
120 133 "probe": {k: p[k] for k in ("probe_id", "name", "region", "country", "city", "provider", "asn", "lat", "lon", "enabled")},
121 134 "schedule": await _schedule(),
122 135 "resolvers": RESOLVERS,
123 "targets": out_targets,
136 + "targets": await _targets_payload(version),
124 137 }
138 + return Response(dumps(body), media_type="application/json")
125 139
126 140
127 141 def _m_row(probe_id: str, m: Any) -> dict[str, Any] | None:
modified apps/api/src/internetpressure/registry.py +3 −4
@@ -201,11 +201,10 @@ async def save_config_override(value: dict[str, Any], actor: str = "admin") -> P
201 201
202 202 async def compute_config_version() -> str:
203 203 row = await pg.fetchrow("SELECT count(*) AS n, max(updated_at) AS m FROM targets")
204 boost = await rds.get_json("ip:boost") or {}
205 204 cfgrow = await pg.fetchrow("SELECT updated_at FROM config WHERE key='pressure'")
206 h = hashlib.sha1(
207 f"{row['n']}|{row['m']}|{dumps_str(boost)}|{cfgrow['updated_at'] if cfgrow else ''}".encode()
208 ).hexdigest()[:8]
205 + # NB: the sampling boost is deliberately NOT part of the version — probes receive it in every batch response,
206 + # a version bump would make all of them re-download the whole target list.
207 + h = hashlib.sha1(f"{row['n']}|{row['m']}|{cfgrow['updated_at'] if cfgrow else ''}".encode()).hexdigest()[:8]
209 208 return f"{utcnow().strftime('%Y%m%dT%H%M%SZ')}-{h}"
210 209
211 210
added data/seed/services-fragments/developer.yaml +333 −0
@@ -0,0 +1,333 @@
1 +# Services fragment — developer platforms, SaaS, AI and security providers with a machine-readable public status page.
2 +# Every connector verified 2026-09-13 with curl (Statuspage `/api/v2/summary.json` → page + status.indicator; status.io `/1.0/status/<id>`
3 +# → result.status_overall). Providers on custom / Instatus / incident.io / Hund pages (PagerDuty, Notion, JetBrains, DocuSign, DeepSeek,
4 +# OpenRouter, Auth0, Algolia, Adobe, Cisco, CrowdStrike, Bitwarden, Mailchimp, Intercom, Zendesk, Zoho, Calendly, Modal, Cursor, …) are omitted.
5 +services:
6 + # ───────── ai (49)
7 + - { slug: wandb, name: "Weights & Biases", category: ai, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.wandb.com/api/v2/summary.json" } }
8 + - { slug: comet, name: Comet ML, category: ai, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.comet.com/api/v2/summary.json" } }
9 + - { slug: pinecone, name: Pinecone, category: ai, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.pinecone.io/api/v2/summary.json" } }
10 + - { slug: zilliz, name: Zilliz, category: ai, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.zilliz.com/api/v2/summary.json" } }
11 + - { slug: turbopuffer, name: turbopuffer, category: ai, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.turbopuffer.com/api/v2/summary.json" } }
12 + - { slug: tavily, name: Tavily, category: ai, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.tavily.com/api/v2/summary.json" } }
13 + - { slug: moonshot, name: Moonshot AI, category: ai, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.moonshot.cn/api/v2/summary.json" } }
14 + - { slug: perplexity, name: Perplexity, category: ai, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.perplexity.com/api/v2/summary.json" } }
15 + - { slug: stability, name: Stability AI, category: ai, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.stability.ai/api/v2/summary.json" } }
16 + - { slug: runway, name: Runway, category: ai, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.runwayml.com/api/v2/summary.json" } }
17 + - { slug: heygen, name: HeyGen, category: ai, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.heygen.com/api/v2/summary.json" } }
18 + - { slug: synthesia, name: Synthesia, category: ai, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.synthesia.io/api/v2/summary.json" } }
19 + - { slug: d-id, name: D-ID, category: ai, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.d-id.com/api/v2/summary.json" } }
20 + - { slug: descript, name: Descript, category: ai, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.descript.com/api/v2/summary.json" } }
21 + - { slug: cartesia, name: Cartesia, category: ai, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.cartesia.ai/api/v2/summary.json" } }
22 + - { slug: deepgram, name: Deepgram, category: ai, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.deepgram.com/api/v2/summary.json" } }
23 + - { slug: assemblyai, name: AssemblyAI, category: ai, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.assemblyai.com/api/v2/summary.json" } }
24 + - { slug: speechmatics, name: Speechmatics, category: ai, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.speechmatics.com/api/v2/summary.json" } }
25 + - { slug: retell, name: Retell AI, category: ai, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.retellai.com/api/v2/summary.json" } }
26 + - { slug: bland, name: Bland AI, category: ai, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.bland.ai/api/v2/summary.json" } }
27 + - { slug: hume, name: Hume AI, category: ai, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.hume.ai/api/v2/summary.json" } }
28 + - { slug: poe, name: Poe, category: ai, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.poe.com/api/v2/summary.json" } }
29 + - { slug: groq, name: Groq, category: ai, asns: [], importance: 3, status: { kind: statuspage, url: "https://groqstatus.com/api/v2/summary.json" } }
30 + - { slug: cerebras, name: Cerebras, category: ai, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.cerebras.ai/api/v2/summary.json" } }
31 + - { slug: sambanova, name: SambaNova, category: ai, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.sambanova.ai/api/v2/summary.json" } }
32 + - { slug: fireworks, name: Fireworks AI, category: ai, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.fireworks.ai/api/v2/summary.json" } }
33 + - { slug: baseten, name: Baseten, category: ai, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.baseten.co/api/v2/summary.json" } }
34 + - { slug: lambda-labs, name: Lambda, category: ai, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.lambdalabs.com/api/v2/summary.json" } }
35 + - { slug: coreweave, name: CoreWeave, category: ai, asns: [], importance: 3, status: { kind: statusio, url: "https://status.coreweave.com/1.0/status/5e126e998f2f032e1f8f0f4b" } }
36 + - { slug: paperspace, name: Paperspace, category: ai, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.paperspace.com/api/v2/summary.json" } }
37 + - { slug: nebius, name: Nebius, category: ai, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.nebius.com/api/v2/summary.json" } }
38 + - { slug: crusoe, name: Crusoe, category: ai, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.crusoecloud.com/api/v2/summary.json" } }
39 + - { slug: braintrust, name: Braintrust, category: ai, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.braintrust.dev/api/v2/summary.json" } }
40 + - { slug: langfuse, name: Langfuse, category: ai, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.langfuse.com/api/v2/summary.json" } }
41 + - { slug: crewai, name: CrewAI, category: ai, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.crewai.com/api/v2/summary.json" } }
42 + - { slug: botpress, name: Botpress, category: ai, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.botpress.com/api/v2/summary.json" } }
43 + - { slug: voiceflow, name: Voiceflow, category: ai, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.voiceflow.com/api/v2/summary.json" } }
44 + - { slug: cursor, name: Cursor, category: ai, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.cursor.com/api/v2/summary.json" } }
45 + - { slug: windsurf, name: Windsurf, category: ai, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.windsurf.com/api/v2/summary.json" } }
46 + - { slug: tabnine, name: Tabnine, category: ai, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.tabnine.com/api/v2/summary.json" } }
47 + - { slug: ampcode, name: Amp, category: ai, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.ampcode.com/api/v2/summary.json" } }
48 + - { slug: lovable, name: Lovable, category: ai, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.lovable.dev/api/v2/summary.json" } }
49 + - { slug: bolt, name: Bolt.new, category: ai, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.bolt.new/api/v2/summary.json" } }
50 + - { slug: devin, name: "Devin (Cognition)", category: ai, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.devin.ai/api/v2/summary.json" } }
51 + - { slug: manus, name: Manus, category: ai, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.manus.im/api/v2/summary.json" } }
52 + - { slug: augment, name: Augment Code, category: ai, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.augmentcode.com/api/v2/summary.json" } }
53 + - { slug: qodo, name: Qodo, category: ai, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.qodo.ai/api/v2/summary.json" } }
54 + - { slug: otter, name: Otter.ai, category: ai, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.otter.ai/api/v2/summary.json" } }
55 + - { slug: nvidia-ngc, name: NVIDIA NGC, category: ai, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.ngc.nvidia.com/api/v2/summary.json" } }
56 + # ───────── cloud (13)
57 + - { slug: storj, name: Storj, category: cloud, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.storj.io/api/v2/summary.json" } }
58 + - { slug: tigris, name: Tigris, category: cloud, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.tigrisdata.com/api/v2/summary.json" } }
59 + - { slug: latitude, name: Latitude.sh, category: cloud, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.latitude.sh/api/v2/summary.json" } }
60 + - { slug: outscale, name: Outscale, category: cloud, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.outscale.com/api/v2/summary.json" } }
61 + - { slug: sync, name: Sync.com, category: cloud, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.sync.com/api/v2/summary.json" } }
62 + - { slug: egnyte, name: Egnyte, category: cloud, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.egnyte.com/api/v2/summary.json" } }
63 + - { slug: sharefile, name: ShareFile, category: cloud, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.sharefile.com/api/v2/summary.json" } }
64 + - { slug: jottacloud, name: Jottacloud, category: cloud, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.jottacloud.com/api/v2/summary.json" } }
65 + - { slug: tresorit, name: Tresorit, category: cloud, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.tresorit.com/api/v2/summary.json" } }
66 + - { slug: carbonite, name: Carbonite, category: cloud, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.carbonite.com/api/v2/summary.json" } }
67 + - { slug: crashplan, name: CrashPlan, category: cloud, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.crashplan.com/api/v2/summary.json" } }
68 + - { slug: rubrik, name: Rubrik, category: cloud, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.rubrik.com/api/v2/summary.json" } }
69 + - { slug: cohesity, name: Cohesity, category: cloud, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.cohesity.com/api/v2/summary.json" } }
70 + # ───────── commerce (9)
71 + - { slug: chargebee, name: Chargebee, category: commerce, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.chargebee.com/api/v2/summary.json" } }
72 + - { slug: recurly, name: Recurly, category: commerce, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.recurly.com/api/v2/summary.json" } }
73 + - { slug: zuora, name: Zuora, category: commerce, asns: [], importance: 2, status: { kind: statuspage, url: "https://trust.zuora.com/api/v2/summary.json" } }
74 + - { slug: fastspring, name: FastSpring, category: commerce, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.fastspring.com/api/v2/summary.json" } }
75 + - { slug: commercetools, name: commercetools, category: commerce, asns: [], importance: 2, status: { kind: statusio, url: "https://status.commercetools.com/1.0/status/56e4295370fe4ece420002bb" } }
76 + - { slug: recharge, name: Recharge, category: commerce, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.rechargepayments.com/api/v2/summary.json" } }
77 + - { slug: yotpo, name: Yotpo, category: commerce, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.yotpo.com/api/v2/summary.json" } }
78 + - { slug: shipbob, name: ShipBob, category: commerce, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.shipbob.com/api/v2/summary.json" } }
79 + - { slug: taxjar, name: TaxJar, category: commerce, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.taxjar.com/api/v2/summary.json" } }
80 + # ───────── developer (185)
81 + - { slug: travis-ci, name: Travis CI, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://www.traviscistatus.com/api/v2/summary.json" } }
82 + - { slug: buildkite, name: Buildkite, category: developer, asns: [], importance: 3, status: { kind: statuspage, url: "https://www.buildkitestatus.com/api/v2/summary.json" } }
83 + - { slug: bitrise, name: Bitrise, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.bitrise.io/api/v2/summary.json" } }
84 + - { slug: semaphoreci, name: Semaphore CI, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.semaphoreci.com/api/v2/summary.json" } }
85 + - { slug: harness, name: Harness, category: developer, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.harness.io/api/v2/summary.json" } }
86 + - { slug: octopus, name: Octopus Deploy, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.octopus.com/api/v2/summary.json" } }
87 + - { slug: codefresh, name: Codefresh, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.codefresh.io/api/v2/summary.json" } }
88 + - { slug: codecov, name: Codecov, category: developer, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.codecov.com/api/v2/summary.json" } }
89 + - { slug: coveralls, name: Coveralls, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.coveralls.io/api/v2/summary.json" } }
90 + - { slug: codeclimate, name: Code Climate, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.codeclimate.com/api/v2/summary.json" } }
91 + - { slug: snyk, name: Snyk, category: developer, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.snyk.io/api/v2/summary.json" } }
92 + - { slug: mend, name: Mend.io, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.mend.io/api/v2/summary.json" } }
93 + - { slug: gitguardian, name: GitGuardian, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.gitguardian.com/api/v2/summary.json" } }
94 + - { slug: semgrep, name: Semgrep, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.semgrep.dev/api/v2/summary.json" } }
95 + - { slug: pulumi, name: Pulumi, category: developer, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.pulumi.com/api/v2/summary.json" } }
96 + - { slug: expo, name: Expo, category: developer, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.expo.dev/api/v2/summary.json" } }
97 + - { slug: browserstack, name: BrowserStack, category: developer, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.browserstack.com/api/v2/summary.json" } }
98 + - { slug: saucelabs, name: Sauce Labs, category: developer, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.saucelabs.com/api/v2/summary.json" } }
99 + - { slug: applitools, name: Applitools, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.applitools.com/api/v2/summary.json" } }
100 + - { slug: percy, name: Percy, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.percy.io/api/v2/summary.json" } }
101 + - { slug: stoplight, name: Stoplight, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.stoplight.io/api/v2/summary.json" } }
102 + - { slug: readme, name: ReadMe, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://www.readmestatus.com/api/v2/summary.json" } }
103 + - { slug: gitbook, name: GitBook, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://www.gitbookstatus.com/api/v2/summary.json" } }
104 + - { slug: mintlify, name: Mintlify, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.mintlify.com/api/v2/summary.json" } }
105 + - { slug: depot, name: Depot, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.depot.dev/api/v2/summary.json" } }
106 + - { slug: kong, name: Kong, category: developer, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.konghq.com/api/v2/summary.json" } }
107 + - { slug: mergify, name: Mergify, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.mergify.com/api/v2/summary.json" } }
108 + - { slug: sourcegraph, name: Sourcegraph, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://sourcegraphstatus.com/api/v2/summary.json" } }
109 + - { slug: gitpod, name: Gitpod, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://www.gitpodstatus.com/api/v2/summary.json" } }
110 + - { slug: datacamp, name: DataCamp, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.datacamp.com/api/v2/summary.json" } }
111 + - { slug: gemfury, name: Gemfury, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.gemfury.com/api/v2/summary.json" } }
112 + - { slug: rollbar, name: Rollbar, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.rollbar.com/api/v2/summary.json" } }
113 + - { slug: bugsnag, name: Bugsnag, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.bugsnag.com/api/v2/summary.json" } }
114 + - { slug: honeybadger, name: Honeybadger, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.honeybadger.io/api/v2/summary.json" } }
115 + - { slug: airbrake, name: Airbrake, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.airbrake.io/api/v2/summary.json" } }
116 + - { slug: scoutapm, name: Scout APM, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.scoutapm.com/api/v2/summary.json" } }
117 + - { slug: dynatrace, name: Dynatrace, category: developer, asns: [], importance: 3, status: { kind: statusio, url: "https://api.status.io/1.0/status/546d8cb6af8407b6730000cb" } }
118 + - { slug: lightstep, name: Lightstep, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.lightstep.com/api/v2/summary.json" } }
119 + - { slug: loggly, name: Loggly, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.loggly.com/api/v2/summary.json" } }
120 + - { slug: sumologic, name: Sumo Logic, category: developer, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.sumologic.com/api/v2/summary.json" } }
121 + - { slug: axiom, name: Axiom, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.axiom.co/api/v2/summary.json" } }
122 + - { slug: cribl, name: Cribl, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.cribl.cloud/api/v2/summary.json" } }
123 + - { slug: logzio, name: Logz.io, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.logz.io/api/v2/summary.json" } }
124 + - { slug: coralogix, name: Coralogix, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.coralogix.com/api/v2/summary.json" } }
125 + - { slug: mezmo, name: Mezmo, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.mezmo.com/api/v2/summary.json" } }
126 + - { slug: logrocket, name: LogRocket, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.logrocket.com/api/v2/summary.json" } }
127 + - { slug: opsgenie, name: Opsgenie, category: developer, asns: [], importance: 3, status: { kind: statuspage, url: "https://opsgenie.status.atlassian.com/api/v2/summary.json" } }
128 + - { slug: xmatters, name: xMatters, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.xmatters.com/api/v2/summary.json" } }
129 + - { slug: lumigo, name: Lumigo, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.lumigo.io/api/v2/summary.json" } }
130 + - { slug: observeinc, name: Observe, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.observeinc.com/api/v2/summary.json" } }
131 + - { slug: netdata, name: Netdata, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.netdata.cloud/api/v2/summary.json" } }
132 + - { slug: auvik, name: Auvik, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.auvik.com/api/v2/summary.json" } }
133 + - { slug: logicmonitor, name: LogicMonitor, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.logicmonitor.com/api/v2/summary.json" } }
134 + - { slug: ninjaone, name: NinjaOne, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.ninjaone.com/api/v2/summary.json" } }
135 + - { slug: connectwise, name: ConnectWise, category: developer, asns: [], importance: 2, status: { kind: statusio, url: "https://status.connectwise.com/1.0/status/619cf82551fec9053d612f09" } }
136 + - { slug: atera, name: Atera, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.atera.com/api/v2/summary.json" } }
137 + - { slug: bigpanda, name: BigPanda, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.bigpanda.io/api/v2/summary.json" } }
138 + - { slug: deadmanssnitch, name: "Dead Man's Snitch", category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.deadmanssnitch.com/api/v2/summary.json" } }
139 + - { slug: hetrixtools, name: HetrixTools, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.hetrixtools.com/api/v2/summary.json" } }
140 + - { slug: planetscale, name: PlanetScale, category: developer, asns: [], importance: 3, status: { kind: statuspage, url: "https://www.planetscalestatus.com/api/v2/summary.json" } }
141 + - { slug: cockroach, name: CockroachDB, category: developer, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.cockroachlabs.cloud/api/v2/summary.json" } }
142 + - { slug: prisma, name: Prisma, category: developer, asns: [], importance: 3, status: { kind: statuspage, url: "https://www.prisma-status.com/api/v2/summary.json" } }
143 + - { slug: convex, name: Convex, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.convex.dev/api/v2/summary.json" } }
144 + - { slug: directus, name: Directus, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.directus.cloud/api/v2/summary.json" } }
145 + - { slug: hygraph, name: Hygraph, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.hygraph.com/api/v2/summary.json" } }
146 + - { slug: prismic, name: Prismic, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.prismic.io/api/v2/summary.json" } }
147 + - { slug: bubble, name: Bubble, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.bubble.io/api/v2/summary.json" } }
148 + - { slug: retool, name: Retool, category: developer, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.retool.com/api/v2/summary.json" } }
149 + - { slug: coda, name: Coda, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.coda.io/api/v2/summary.json" } }
150 + - { slug: make, name: Make, category: developer, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.make.com/api/v2/summary.json" } }
151 + - { slug: pipedream, name: Pipedream, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.pipedream.com/api/v2/summary.json" } }
152 + - { slug: workato, name: Workato, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.workato.com/api/v2/summary.json" } }
153 + - { slug: tray, name: Tray.ai, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.tray.io/api/v2/summary.json" } }
154 + - { slug: celigo, name: Celigo, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.celigo.com/api/v2/summary.json" } }
155 + - { slug: boomi, name: Boomi, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.boomi.com/api/v2/summary.json" } }
156 + - { slug: temporal, name: Temporal, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.temporal.io/api/v2/summary.json" } }
157 + - { slug: inngest, name: Inngest, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.inngest.com/api/v2/summary.json" } }
158 + - { slug: sevalla, name: Sevalla, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.sevalla.com/api/v2/summary.json" } }
159 + - { slug: aiven, name: Aiven, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.aiven.io/api/v2/summary.json" } }
160 + - { slug: clickhouse, name: ClickHouse, category: developer, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.clickhouse.com/api/v2/summary.json" } }
161 + - { slug: singlestore, name: SingleStore, category: developer, asns: [], importance: 2, status: { kind: statusio, url: "https://status.singlestore.com/1.0/status/5f75344c593ae004ba02aaa6" } }
162 + - { slug: tinybird, name: Tinybird, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.tinybird.co/api/v2/summary.json" } }
163 + - { slug: materialize, name: Materialize, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.materialize.com/api/v2/summary.json" } }
164 + - { slug: firebolt, name: Firebolt, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.firebolt.io/api/v2/summary.json" } }
165 + - { slug: influxdata, name: InfluxData, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.influxdata.com/api/v2/summary.json" } }
166 + - { slug: couchbase, name: Couchbase, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.couchbase.com/api/v2/summary.json" } }
167 + - { slug: neo4j, name: Neo4j, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.neo4j.io/api/v2/summary.json" } }
168 + - { slug: bloomreach, name: Bloomreach, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.bloomreach.com/api/v2/summary.json" } }
169 + - { slug: redpanda, name: Redpanda, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.redpanda.com/api/v2/summary.json" } }
170 + - { slug: cloudamqp, name: CloudAMQP, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.cloudamqp.com/api/v2/summary.json" } }
171 + - { slug: dbt, name: dbt Labs, category: developer, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.getdbt.com/api/v2/summary.json" } }
172 + - { slug: census, name: Census, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.getcensus.com/api/v2/summary.json" } }
173 + - { slug: rudderstack, name: RudderStack, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.rudderstack.com/api/v2/summary.json" } }
174 + - { slug: tealium, name: Tealium, category: developer, asns: [], importance: 2, status: { kind: statusio, url: "https://status.tealium.com/1.0/status/56216ec56de34e1e5900016f" } }
175 + - { slug: stitch, name: Stitch, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.stitchdata.com/api/v2/summary.json" } }
176 + - { slug: matillion, name: Matillion, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.matillion.com/api/v2/summary.json" } }
177 + - { slug: metabase, name: Metabase, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.metabase.com/api/v2/summary.json" } }
178 + - { slug: mode, name: Mode Analytics, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.modeanalytics.com/api/v2/summary.json" } }
179 + - { slug: hex, name: Hex, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.hex.tech/api/v2/summary.json" } }
180 + - { slug: sigma, name: Sigma Computing, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.sigmacomputing.com/api/v2/summary.json" } }
181 + - { slug: preset, name: Preset, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.preset.io/api/v2/summary.json" } }
182 + - { slug: astronomer, name: Astronomer, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.astronomer.io/api/v2/summary.json" } }
183 + - { slug: prefect, name: Prefect, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.prefect.io/api/v2/summary.json" } }
184 + - { slug: umbraco, name: Umbraco, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.umbraco.io/api/v2/summary.json" } }
185 + - { slug: contentstack, name: Contentstack, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.contentstack.com/api/v2/summary.json" } }
186 + - { slug: kontent, name: Kontent.ai, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.kontent.ai/api/v2/summary.json" } }
187 + - { slug: buttercms, name: ButterCMS, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.buttercms.com/api/v2/summary.json" } }
188 + - { slug: builderio, name: Builder.io, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.builder.io/api/v2/summary.json" } }
189 + - { slug: duda, name: Duda, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.duda.co/api/v2/summary.json" } }
190 + - { slug: uploadcare, name: Uploadcare, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.uploadcare.com/api/v2/summary.json" } }
191 + - { slug: filestack, name: Filestack, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.filestack.com/api/v2/summary.json" } }
192 + - { slug: clerk, name: Clerk, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.clerk.com/api/v2/summary.json" } }
193 + - { slug: fusionauth, name: FusionAuth, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.fusionauth.io/api/v2/summary.json" } }
194 + - { slug: zitadel, name: Zitadel, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.zitadel.com/api/v2/summary.json" } }
195 + - { slug: workos, name: WorkOS, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.workos.com/api/v2/summary.json" } }
196 + - { slug: frontegg, name: Frontegg, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.frontegg.com/api/v2/summary.json" } }
197 + - { slug: yubico, name: Yubico, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.yubico.com/api/v2/summary.json" } }
198 + - { slug: dashlane, name: Dashlane, category: developer, asns: [], importance: 2, status: { kind: statusio, url: "https://status.dashlane.com/1.0/status/5aabcb89fccc4b04d3774443" } }
199 + - { slug: keeper, name: Keeper Security, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://statuspage.keeper.io/api/v2/summary.json" } }
200 + - { slug: veracode, name: Veracode, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.veracode.com/api/v2/summary.json" } }
201 + - { slug: contrast, name: Contrast Security, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.contrastsecurity.com/api/v2/summary.json" } }
202 + - { slug: censys, name: Censys, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.censys.io/api/v2/summary.json" } }
203 + - { slug: greynoise, name: GreyNoise, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.greynoise.io/api/v2/summary.json" } }
204 + - { slug: cesium, name: Cesium, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.cesium.com/api/v2/summary.json" } }
205 + - { slug: radar, name: Radar, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.radar.com/api/v2/summary.json" } }
206 + - { slug: smarty, name: Smarty, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.smarty.com/api/v2/summary.json" } }
207 + - { slug: cos, name: "Center for Open Science (OSF)", category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.cos.io/api/v2/summary.json" } }
208 + - { slug: apify, name: Apify, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.apify.com/api/v2/summary.json" } }
209 + - { slug: browserbase, name: Browserbase, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.browserbase.com/api/v2/summary.json" } }
210 + - { slug: serpapi, name: SerpApi, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.serpapi.com/api/v2/summary.json" } }
211 + - { slug: warp, name: Warp, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.warp.dev/api/v2/summary.json" } }
212 + - { slug: semanticscholar, name: Semantic Scholar, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.semanticscholar.org/api/v2/summary.json" } }
213 + - { slug: grammarly, name: Grammarly, category: developer, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.grammarly.com/api/v2/summary.json" } }
214 + - { slug: linear, name: Linear, category: developer, asns: [], importance: 3, status: { kind: statuspage, url: "https://linearstatus.com/api/v2/summary.json" } }
215 + - { slug: smartsheet, name: Smartsheet, category: developer, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.smartsheet.com/api/v2/summary.json" } }
216 + - { slug: lucid, name: Lucid Software, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.lucid.co/api/v2/summary.json" } }
217 + - { slug: autodesk, name: Autodesk, category: developer, asns: [], importance: 3, status: { kind: statuspage, url: "https://health.autodesk.com/api/v2/summary.json" } }
218 + - { slug: frameio, name: Frame.io, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.frame.io/api/v2/summary.json" } }
219 + - { slug: bentley, name: Bentley Systems, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.bentley.com/api/v2/summary.json" } }
220 + - { slug: onshape, name: Onshape, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.onshape.com/api/v2/summary.json" } }
221 + - { slug: ptc, name: PTC, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.ptc.com/api/v2/summary.json" } }
222 + - { slug: mendix, name: Mendix, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.mendix.com/api/v2/summary.json" } }
223 + - { slug: altium, name: Altium, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.altium.com/api/v2/summary.json" } }
224 + - { slug: blackduck, name: Black Duck, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.blackduck.com/api/v2/summary.json" } }
225 + - { slug: pandadoc, name: PandaDoc, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.pandadoc.com/api/v2/summary.json" } }
226 + - { slug: hellosign, name: Dropbox Sign, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.hellosign.com/api/v2/summary.json" } }
227 + - { slug: signnow, name: signNow, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.signnow.com/api/v2/summary.json" } }
228 + - { slug: airslate, name: airSlate, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.airslate.com/api/v2/summary.json" } }
229 + - { slug: pdffiller, name: pdfFiller, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.pdffiller.com/api/v2/summary.json" } }
230 + - { slug: signeasy, name: Signeasy, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.signeasy.com/api/v2/summary.json" } }
231 + - { slug: signable, name: Signable, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.signable.co.uk/api/v2/summary.json" } }
232 + - { slug: nitro, name: Nitro, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.gonitro.com/api/v2/summary.json" } }
233 + - { slug: clearbit, name: Clearbit, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.clearbit.com/api/v2/summary.json" } }
234 + - { slug: quip, name: Quip, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.quip.com/api/v2/summary.json" } }
235 + - { slug: helpscout, name: Help Scout, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.helpscout.com/api/v2/summary.json" } }
236 + - { slug: gorgias, name: Gorgias, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.gorgias.com/api/v2/summary.json" } }
237 + - { slug: kustomer, name: Kustomer, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.kustomer.com/api/v2/summary.json" } }
238 + - { slug: heap, name: Heap, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.heap.io/api/v2/summary.json" } }
239 + - { slug: hotjar, name: Hotjar, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.hotjar.com/api/v2/summary.json" } }
240 + - { slug: fullstory, name: FullStory, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.fullstory.com/api/v2/summary.json" } }
241 + - { slug: pendo, name: Pendo, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.pendo.io/api/v2/summary.json" } }
242 + - { slug: appcues, name: Appcues, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.appcues.com/api/v2/summary.json" } }
243 + - { slug: walkme, name: WalkMe, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.walkme.com/api/v2/summary.json" } }
244 + - { slug: optimizely, name: Optimizely, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.optimizely.com/api/v2/summary.json" } }
245 + - { slug: statsig, name: Statsig, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.statsig.com/api/v2/summary.json" } }
246 + - { slug: flagsmith, name: Flagsmith, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.flagsmith.com/api/v2/summary.json" } }
247 + - { slug: devcycle, name: DevCycle, category: developer, asns: [], importance: 1, status: { kind: statusio, url: "https://api.status.io/1.0/status/6a28108059348e05f706f393" } }
248 + - { slug: typeform, name: Typeform, category: developer, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.typeform.com/api/v2/summary.json" } }
249 + - { slug: surveymonkey, name: SurveyMonkey, category: developer, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.surveymonkey.com/api/v2/summary.json" } }
250 + - { slug: qualtrics, name: Qualtrics, category: developer, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.qualtrics.com/api/v2/summary.json" } }
251 + - { slug: jotform, name: Jotform, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.jotform.com/api/v2/summary.json" } }
252 + - { slug: bamboohr, name: BambooHR, category: developer, asns: [], importance: 2, status: { kind: statusio, url: "https://status.bamboohr.com/1.0/status/54f0de009d6f51e7140002b7" } }
253 + - { slug: greenhouse, name: Greenhouse, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.greenhouse.io/api/v2/summary.json" } }
254 + - { slug: lever, name: Lever, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.lever.co/api/v2/summary.json" } }
255 + - { slug: ashby, name: Ashby, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.ashbyhq.com/api/v2/summary.json" } }
256 + - { slug: personio, name: Personio, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.personio.de/api/v2/summary.json" } }
257 + - { slug: lattice, name: Lattice, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.lattice.com/api/v2/summary.json" } }
258 + - { slug: blackboard, name: Blackboard, category: developer, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.blackboard.com/api/v2/summary.json" } }
259 + - { slug: codility, name: Codility, category: developer, asns: [], importance: 1, status: { kind: statusio, url: "https://status.codility.com/1.0/status/602b8b3348af2205ab890df0" } }
260 + - { slug: codesignal, name: CodeSignal, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.codesignal.com/api/v2/summary.json" } }
261 + - { slug: maze, name: Maze, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.maze.co/api/v2/summary.json" } }
262 + - { slug: usertesting, name: UserTesting, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.usertesting.com/api/v2/summary.json" } }
263 + - { slug: productboard, name: Productboard, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.productboard.com/api/v2/summary.json" } }
264 + - { slug: aha, name: "Aha!", category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.aha.io/api/v2/summary.json" } }
265 + - { slug: shortcut, name: Shortcut, category: developer, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.shortcut.com/api/v2/summary.json" } }
266 + # ───────── finance (2)
267 + - { slug: navan, name: Navan, category: finance, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.navan.com/api/v2/summary.json" } }
268 + - { slug: carta, name: Carta, category: finance, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.carta.com/api/v2/summary.json" } }
269 + # ───────── infrastructure (25)
270 + - { slug: sentinelone, name: SentinelOne, category: infrastructure, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.sentinelone.com/api/v2/summary.json" } }
271 + - { slug: eset, name: ESET, category: infrastructure, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.eset.com/api/v2/summary.json" } }
272 + - { slug: umbrella, name: Cisco Umbrella, category: infrastructure, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.umbrella.com/api/v2/summary.json" } }
273 + - { slug: jamf, name: Jamf, category: infrastructure, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.jamf.com/api/v2/summary.json" } }
274 + - { slug: kandji, name: Kandji, category: infrastructure, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.kandji.io/api/v2/summary.json" } }
275 + - { slug: addigy, name: Addigy, category: infrastructure, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.addigy.com/api/v2/summary.json" } }
276 + - { slug: omnissa, name: Omnissa Workspace ONE, category: infrastructure, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.workspaceone.com/api/v2/summary.json" } }
277 + - { slug: tenable, name: Tenable, category: infrastructure, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.tenable.com/api/v2/summary.json" } }
278 + - { slug: qualys, name: Qualys, category: infrastructure, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.qualys.com/api/v2/summary.json" } }
279 + - { slug: wiz, name: Wiz, category: infrastructure, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.wiz.io/api/v2/summary.json" } }
280 + - { slug: aquasec, name: Aqua Security, category: infrastructure, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.aquasec.com/api/v2/summary.json" } }
281 + - { slug: upwind, name: Upwind, category: infrastructure, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.upwind.io/api/v2/summary.json" } }
282 + - { slug: traceable, name: Traceable, category: infrastructure, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.traceable.ai/api/v2/summary.json" } }
283 + - { slug: wallarm, name: Wallarm, category: infrastructure, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.wallarm.com/api/v2/summary.json" } }
284 + - { slug: path, name: Path Network, category: infrastructure, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.path.net/api/v2/summary.json" } }
285 + - { slug: recordedfuture, name: Recorded Future, category: infrastructure, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.recordedfuture.com/api/v2/summary.json" } }
286 + - { slug: zerofox, name: ZeroFox, category: infrastructure, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.zerofox.com/api/v2/summary.json" } }
287 + - { slug: anomali, name: Anomali, category: infrastructure, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.anomali.com/api/v2/summary.json" } }
288 + - { slug: valimail, name: Valimail, category: infrastructure, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.valimail.com/api/v2/summary.json" } }
289 + - { slug: abnormal, name: Abnormal Security, category: infrastructure, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.abnormalsecurity.com/api/v2/summary.json" } }
290 + - { slug: webroot, name: Webroot, category: infrastructure, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.webroot.com/api/v2/summary.json" } }
291 + - { slug: f-secure, name: F-Secure, category: infrastructure, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.f-secure.com/api/v2/summary.json" } }
292 + - { slug: withsecure, name: WithSecure, category: infrastructure, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.withsecure.com/api/v2/summary.json" } }
293 + - { slug: spycloud, name: SpyCloud, category: infrastructure, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.spycloud.com/api/v2/summary.json" } }
294 + - { slug: openvpn, name: OpenVPN, category: infrastructure, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.openvpn.com/api/v2/summary.json" } }
295 + # ───────── messaging (33)
296 + - { slug: resend, name: Resend, category: messaging, asns: [], importance: 2, status: { kind: statuspage, url: "https://resend-status.com/api/v2/summary.json" } }
297 + - { slug: sparkpost, name: SparkPost, category: messaging, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.sparkpost.com/api/v2/summary.json" } }
298 + - { slug: bird, name: Bird, category: messaging, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.bird.com/api/v2/summary.json" } }
299 + - { slug: mailjet, name: Mailjet, category: messaging, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.mailjet.com/api/v2/summary.json" } }
300 + - { slug: plivo, name: Plivo, category: messaging, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.plivo.com/api/v2/summary.json" } }
301 + - { slug: infobip, name: Infobip, category: messaging, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.infobip.com/api/v2/summary.json" } }
302 + - { slug: onesignal, name: OneSignal, category: messaging, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.onesignal.com/api/v2/summary.json" } }
303 + - { slug: courier, name: Courier, category: messaging, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.courier.com/api/v2/summary.json" } }
304 + - { slug: knock, name: Knock, category: messaging, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.knock.app/api/v2/summary.json" } }
305 + - { slug: getstream, name: Stream, category: messaging, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.getstream.io/api/v2/summary.json" } }
306 + - { slug: daily, name: Daily, category: messaging, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.daily.co/api/v2/summary.json" } }
307 + - { slug: 100ms, name: 100ms, category: messaging, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.100ms.live/api/v2/summary.json" } }
308 + - { slug: livekit, name: LiveKit, category: messaging, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.livekit.io/api/v2/summary.json" } }
309 + - { slug: apivideo, name: api.video, category: messaging, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.api.video/api/v2/summary.json" } }
310 + - { slug: startmail, name: StartMail, category: messaging, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.startmail.com/api/v2/summary.json" } }
311 + - { slug: aircall, name: Aircall, category: messaging, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.aircall.io/api/v2/summary.json" } }
312 + - { slug: dialpad, name: Dialpad, category: messaging, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.dialpad.com/api/v2/summary.json" } }
313 + - { slug: talkdesk, name: Talkdesk, category: messaging, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.talkdesk.com/api/v2/summary.json" } }
314 + - { slug: genesys, name: Genesys Cloud, category: messaging, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.mypurecloud.com/api/v2/summary.json" } }
315 + - { slug: constantcontact, name: Constant Contact, category: messaging, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.constantcontact.com/api/v2/summary.json" } }
316 + - { slug: klaviyo, name: Klaviyo, category: messaging, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.klaviyo.com/api/v2/summary.json" } }
317 + - { slug: braze, name: Braze, category: messaging, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.braze.com/api/v2/summary.json" } }
318 + - { slug: iterable, name: Iterable, category: messaging, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.iterable.com/api/v2/summary.json" } }
319 + - { slug: attentive, name: Attentive, category: messaging, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.attentivemobile.com/api/v2/summary.json" } }
320 + - { slug: postscript, name: Postscript, category: messaging, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.postscript.io/api/v2/summary.json" } }
321 + - { slug: activecampaign, name: ActiveCampaign, category: messaging, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.activecampaign.com/api/v2/summary.json" } }
322 + - { slug: mailerlite, name: MailerLite, category: messaging, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.mailerlite.com/api/v2/summary.json" } }
323 + - { slug: getresponse, name: GetResponse, category: messaging, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.getresponse.com/api/v2/summary.json" } }
324 + - { slug: aweber, name: AWeber, category: messaging, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.aweber.com/api/v2/summary.json" } }
325 + - { slug: drip, name: Drip, category: messaging, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.drip.com/api/v2/summary.json" } }
326 + - { slug: omnisend, name: Omnisend, category: messaging, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.omnisend.com/api/v2/summary.json" } }
327 + - { slug: kit, name: "Kit (ConvertKit)", category: messaging, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.kit.com/api/v2/summary.json" } }
328 + - { slug: superhuman, name: Superhuman, category: messaging, asns: [], importance: 1, status: { kind: statuspage, url: "https://status.superhuman.com/api/v2/summary.json" } }
329 + # ───────── social (1)
330 + - { slug: substack, name: Substack, category: social, asns: [], importance: 3, status: { kind: statuspage, url: "https://substack.statuspage.io/api/v2/summary.json" } }
331 + # ───────── streaming (2)
332 + - { slug: vimeo, name: Vimeo, category: streaming, asns: [], importance: 3, status: { kind: statuspage, url: "https://status.vimeo.com/api/v2/summary.json" } }
333 + - { slug: jwplayer, name: JW Player, category: streaming, asns: [], importance: 2, status: { kind: statuspage, url: "https://status.jwplayer.com/api/v2/summary.json" } }
added data/targets/fragments/developer.yaml +5333 −0
@@ -0,0 +1,5333 @@
1 +# InternetPressure target fragment — developer platforms, SaaS, AI and security.
2 +# Generated 2026-09-13; every host verified (dig +short non-empty AND curl 2xx/3xx/4xx with the InternetPressureProbe UA; DNS failures,
3 +# timeouts and 5xx after one retry were dropped). Same schema/defaults as targets.yaml; tier 2 = registries/APIs the world builds on,
4 +# tier 3 = imp ≥ 4, tier 4 = the rest; `[http, dns]` only for high-importance registries/APIs. No login pages, no per-tenant hosts.
5 +
6 +targets:
7 + # ───────── Package registries, mirrors & language ecosystems (368)
8 + - { id: pkg-yarn, name: "Yarn", host: yarnpkg.com, cat: developer, provider: yarn, cc: US, imp: 4, tier: 3, checks: [http, dns] }
9 + - { id: pkg-yarn-classic, name: "Yarn classic", host: classic.yarnpkg.com, cat: developer, provider: yarn, cc: US, imp: 4, tier: 3, checks: [http, dns] }
10 + - { id: pkg-npmmirror, name: "npmmirror (China)", host: npmmirror.com, cat: developer, provider: alibaba, svc: alibaba, cc: CN, imp: 4, tier: 3, checks: [http, dns] }
11 + - { id: pkg-npmmirror-registry, name: "npmmirror (China) registry", host: registry.npmmirror.com, url: "https://registry.npmmirror.com/react", cat: developer, provider: alibaba, svc: alibaba, cc: CN, imp: 4, tier: 3, checks: [http, dns] }
12 + - { id: pkg-esm-sh, name: "esm.sh", host: esm.sh, url: "https://esm.sh/react", cat: developer, provider: esm-sh, cc: null, imp: 3, tier: 4, checks: [http] }
13 + - { id: pkg-skypack-cdn, name: "Skypack CDN", host: cdn.skypack.dev, url: "https://cdn.skypack.dev/react", cat: developer, provider: skypack, cc: US, imp: 2, tier: 4, checks: [http] }
14 + - { id: pkg-skypack, name: "Skypack", host: www.skypack.dev, cat: developer, provider: skypack, cc: US, imp: 2, tier: 4, checks: [http] }
15 + - { id: pkg-unpkg, name: "unpkg", host: unpkg.com, url: "https://unpkg.com/react/package.json", cat: developer, provider: unpkg, cc: null, imp: 4, tier: 2, checks: [http, dns] }
16 + - { id: pkg-jsdelivr-data-data, name: "jsDelivr data API data", host: data.jsdelivr.com, url: "https://data.jsdelivr.com/v1/packages/npm/react", cat: developer, provider: jsdelivr, cc: null, imp: 3, tier: 4, checks: [http] }
17 + - { id: pkg-jsdelivr-data, name: "jsDelivr data API", host: www.jsdelivr.com, cat: developer, provider: jsdelivr, cc: null, imp: 3, tier: 4, checks: [http] }
18 + - { id: pkg-pypi-json-json, name: "PyPI JSON API json", host: pypi.org, url: "https://pypi.org/pypi/requests/json", cat: developer, provider: psf, svc: pypi, cc: US, imp: 5, tier: 2, checks: [http, dns] }
19 + - { id: pkg-test-pypi-test, name: "Test PyPI test", host: test.pypi.org, url: "https://test.pypi.org/simple/", cat: developer, provider: psf, svc: pypi, cc: US, imp: 3, tier: 4, checks: [http] }
20 + - { id: pkg-pypi-stats, name: "PyPI Stats", host: pypistats.org, cat: developer, provider: psf, svc: pypi, cc: US, imp: 2, tier: 4, checks: [http] }
21 + - { id: pkg-pypi-status-status, name: "PyPI status status page", host: status.python.org, cat: developer, provider: psf, svc: pypi, cc: US, imp: 3, tier: 4, checks: [http] }
22 + - { id: pkg-pythonhosted, name: "Python Hosted docs", host: pythonhosted.org, cat: developer, provider: psf, svc: pypi, cc: US, imp: 2, tier: 4, checks: [http] }
23 + - { id: pkg-anaconda, name: "Anaconda", host: www.anaconda.com, cat: developer, provider: anaconda, cc: US, imp: 4, tier: 3, checks: [http, dns] }
24 + - { id: pkg-anaconda-docs, name: "Anaconda docs", host: docs.anaconda.com, cat: developer, provider: anaconda, cc: US, imp: 4, tier: 3, checks: [http, dns] }
25 + - { id: pkg-conda-forge, name: "conda-forge", host: conda-forge.org, cat: developer, provider: conda-forge, cc: US, imp: 3, tier: 4, checks: [http] }
26 + - { id: pkg-pytorch-index-index, name: "PyTorch wheel index index", host: download.pytorch.org, url: "https://download.pytorch.org/whl/cpu/torch/", cat: developer, provider: pytorch, cc: US, imp: 4, tier: 3, checks: [http, dns] }
27 + - { id: pkg-crates-index-index, name: "crates.io sparse index index", host: index.crates.io, url: "https://index.crates.io/config.json", cat: developer, provider: rust-foundation, svc: crates, cc: US, imp: 4, tier: 2, checks: [http, dns] }
28 + - { id: pkg-crates-index-static, name: "crates.io sparse index static assets", host: static.crates.io, url: "https://static.crates.io/crates/serde/serde-1.0.0.crate", cat: developer, provider: rust-foundation, svc: crates, cc: US, imp: 4, tier: 2, checks: [http, dns] }
29 + - { id: pkg-rust-lang, name: "Rust", host: www.rust-lang.org, cat: developer, provider: rust-foundation, svc: crates, cc: US, imp: 4, tier: 3, checks: [http, dns] }
30 + - { id: pkg-rust-lang-doc, name: "Rust docs", host: doc.rust-lang.org, cat: developer, provider: rust-foundation, svc: crates, cc: US, imp: 4, tier: 3, checks: [http, dns] }
31 + - { id: pkg-rust-lang-forge, name: "Rust forge", host: forge.rust-lang.org, cat: developer, provider: rust-foundation, svc: crates, cc: US, imp: 4, tier: 3, checks: [http, dns] }
32 + - { id: pkg-rust-lang-rustup, name: "Rust rustup", host: rustup.rs, cat: developer, provider: rust-foundation, svc: crates, cc: US, imp: 4, tier: 3, checks: [http, dns] }
33 + - { id: pkg-rust-lang-sh, name: "Rust sh", host: sh.rustup.rs, cat: developer, provider: rust-foundation, svc: crates, cc: US, imp: 4, tier: 3, checks: [http, dns] }
34 + - { id: pkg-rust-lang-blog, name: "Rust blog", host: blog.rust-lang.org, cat: developer, provider: rust-foundation, svc: crates, cc: US, imp: 4, tier: 3, checks: [http, dns] }
35 + - { id: pkg-lib-rs, name: "lib.rs", host: lib.rs, cat: developer, provider: lib-rs, cc: null, imp: 2, tier: 4, checks: [http] }
36 + - { id: pkg-go-dev-godoc, name: "Go godoc", host: pkg.go.dev, url: "https://pkg.go.dev/net/http", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
37 + - { id: pkg-go-dev, name: "Go", host: golang.org, cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
38 + - { id: pkg-go-dev-index, name: "Go index", host: index.golang.org, url: "https://index.golang.org/index?limit=1", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
39 + - { id: pkg-goproxy-cn, name: "Goproxy.cn", host: goproxy.cn, url: "https://goproxy.cn/golang.org/x/net/@latest", cat: developer, provider: qiniu, cc: CN, imp: 3, tier: 4, checks: [http] }
40 + - { id: pkg-goproxy-io, name: "goproxy.io", host: goproxy.io, cat: developer, provider: goproxy-io, cc: null, imp: 2, tier: 4, checks: [http] }
41 + - { id: pkg-maven-apache-repo, name: "Maven Central (Apache repo) repository", host: repo.maven.apache.org, url: "https://repo.maven.apache.org/maven2/org/apache/maven/maven/maven-metadata.xml", cat: developer, provider: apache, svc: maven, cc: US, imp: 5, tier: 2, checks: [http, dns] }
42 + - { id: pkg-maven-apache-maven, name: "Maven Central (Apache repo) maven", host: maven.apache.org, cat: developer, provider: apache, svc: maven, cc: US, imp: 5, tier: 3, checks: [http, dns] }
43 + - { id: pkg-maven-central-search-central, name: "Maven Central search central", host: central.sonatype.com, cat: developer, provider: sonatype, svc: sonatype, cc: US, imp: 4, tier: 3, checks: [http, dns] }
44 + - { id: pkg-maven-central-search-search, name: "Maven Central search search", host: search.maven.org, url: "https://search.maven.org/solrsearch/select?q=g:junit&rows=1", cat: developer, provider: sonatype, svc: sonatype, cc: US, imp: 4, tier: 3, checks: [http, dns] }
45 + - { id: pkg-maven-central-search-oss, name: "Maven Central search oss", host: oss.sonatype.org, cat: developer, provider: sonatype, svc: sonatype, cc: US, imp: 4, tier: 3, checks: [http, dns] }
46 + - { id: pkg-maven-central-search-s01, name: "Maven Central search s01", host: s01.oss.sonatype.org, cat: developer, provider: sonatype, svc: sonatype, cc: US, imp: 4, tier: 3, checks: [http, dns] }
47 + - { id: pkg-mvnrepository, name: "MVN Repository", host: mvnrepository.com, cat: developer, provider: mvnrepository, cc: null, imp: 3, tier: 4, checks: [http] }
48 + - { id: pkg-gradle, name: "Gradle", host: gradle.org, cat: developer, provider: gradle, svc: gradle, cc: US, imp: 4, tier: 3, checks: [http, dns] }
49 + - { id: pkg-gradle-docs, name: "Gradle docs", host: docs.gradle.org, cat: developer, provider: gradle, svc: gradle, cc: US, imp: 4, tier: 3, checks: [http, dns] }
50 + - { id: pkg-gradle-plugins, name: "Gradle plugins", host: plugins.gradle.org, url: "https://plugins.gradle.org/m2/", cat: developer, provider: gradle, svc: gradle, cc: US, imp: 4, tier: 3, checks: [http, dns] }
51 + - { id: pkg-gradle-repo, name: "Gradle repository", host: repo.gradle.org, cat: developer, provider: gradle, svc: gradle, cc: US, imp: 4, tier: 3, checks: [http, dns] }
52 + - { id: pkg-jitpack, name: "JitPack", host: jitpack.io, url: "https://jitpack.io/api/builds/com.github.jitpack/gradle-simple", cat: developer, provider: jitpack, cc: null, imp: 3, tier: 4, checks: [http] }
53 + - { id: pkg-google-maven-dl, name: "Google Maven repository downloads", host: dl.google.com, url: "https://dl.google.com/dl/android/maven2/master-index.xml", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
54 + - { id: pkg-google-maven-maven, name: "Google Maven repository maven", host: maven.google.com, url: "https://maven.google.com/web/index.html", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
55 + - { id: pkg-rubygems-index-index, name: "RubyGems compact index index", host: index.rubygems.org, url: "https://index.rubygems.org/versions", cat: developer, provider: ruby-central, svc: rubygems, cc: US, imp: 4, tier: 2, checks: [http, dns] }
56 + - { id: pkg-rubygems-index-api, name: "RubyGems compact index API", host: rubygems.org, url: "https://rubygems.org/api/v1/gems/rails.json", cat: developer, provider: ruby-central, svc: rubygems, cc: US, imp: 4, tier: 2, checks: [http, dns] }
57 + - { id: pkg-rubygems-index-guides, name: "RubyGems compact index guides", host: guides.rubygems.org, cat: developer, provider: ruby-central, svc: rubygems, cc: US, imp: 4, tier: 3, checks: [http, dns] }
58 + - { id: pkg-bundler, name: "Bundler", host: bundler.io, cat: developer, provider: ruby-central, svc: rubygems, cc: US, imp: 3, tier: 4, checks: [http] }
59 + - { id: pkg-packagist-repo-repo, name: "Packagist repo metadata repository", host: repo.packagist.org, url: "https://repo.packagist.org/p2/monolog/monolog.json", cat: developer, provider: packagist, cc: FR, imp: 4, tier: 2, checks: [http, dns] }
60 + - { id: pkg-packagist-repo-api, name: "Packagist repo metadata API", host: packagist.org, url: "https://packagist.org/packages/monolog/monolog.json", cat: developer, provider: packagist, cc: FR, imp: 4, tier: 2, checks: [http, dns] }
61 + - { id: pkg-getcomposer, name: "Composer", host: getcomposer.org, url: "https://getcomposer.org/versions", cat: developer, provider: packagist, cc: FR, imp: 4, tier: 3, checks: [http, dns] }
62 + - { id: pkg-hex-docs, name: "Hex.pm docs", host: hexdocs.pm, cat: developer, provider: hexpm, svc: hexpm, cc: US, imp: 3, tier: 4, checks: [http] }
63 + - { id: pkg-hex-status, name: "Hex.pm status page", host: status.hex.pm, cat: developer, provider: hexpm, svc: hexpm, cc: US, imp: 3, tier: 4, checks: [http] }
64 + - { id: pkg-cocoapods-trunk, name: "CocoaPods trunk", host: trunk.cocoapods.org, url: "https://trunk.cocoapods.org/api/v1/pods/Alamofire", cat: developer, provider: cocoapods, svc: cocoapods, cc: US, imp: 3, tier: 4, checks: [http] }
65 + - { id: pkg-cocoapods-status, name: "CocoaPods status page", host: status.cocoapods.org, cat: developer, provider: cocoapods, svc: cocoapods, cc: US, imp: 3, tier: 4, checks: [http] }
66 + - { id: pkg-swiftpackageindex, name: "Swift Package Index", host: swiftpackageindex.com, cat: developer, provider: swiftpackageindex, cc: GB, imp: 2, tier: 4, checks: [http] }
67 + - { id: pkg-pub-api-api, name: "pub.dev API API", host: pub.dev, url: "https://pub.dev/api/packages/http", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
68 + - { id: pkg-pub-api-storage, name: "pub.dev API storage", host: storage.googleapis.com, url: "https://storage.googleapis.com/pub-packages/packages/http-1.2.0.tar.gz", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
69 + - { id: pkg-dart, name: "Dart", host: dart.dev, cat: developer, provider: google, svc: google, cc: US, imp: 3, tier: 4, checks: [http] }
70 + - { id: pkg-dart-flutter, name: "Dart flutter", host: flutter.dev, cat: developer, provider: google, svc: google, cc: US, imp: 3, tier: 4, checks: [http] }
71 + - { id: pkg-dart-docs, name: "Dart docs", host: docs.flutter.dev, cat: developer, provider: google, svc: google, cc: US, imp: 3, tier: 4, checks: [http] }
72 + - { id: pkg-dart-storage, name: "Dart storage", host: storage.flutter-io.cn, cat: developer, provider: google, svc: google, cc: US, imp: 3, tier: 4, checks: [http] }
73 + - { id: pkg-cran-mirrors-cloud, name: "CRAN mirrors cloud", host: cloud.r-project.org, url: "https://cloud.r-project.org/src/contrib/PACKAGES", cat: developer, provider: r-foundation, cc: null, imp: 3, tier: 4, checks: [http] }
74 + - { id: pkg-cran-mirrors-rstudio, name: "CRAN mirrors rstudio", host: cran.rstudio.com, url: "https://cran.rstudio.com/src/contrib/PACKAGES", cat: developer, provider: r-foundation, cc: null, imp: 3, tier: 4, checks: [http] }
75 + - { id: pkg-cran-mirrors, name: "CRAN mirrors", host: www.r-project.org, cat: developer, provider: r-foundation, cc: null, imp: 3, tier: 4, checks: [http] }
76 + - { id: pkg-posit-packagemanager, name: "Posit Package Manager packagemanager", host: packagemanager.posit.co, url: "https://packagemanager.posit.co/cran/latest/src/contrib/PACKAGES", cat: developer, provider: posit, cc: US, imp: 3, tier: 4, checks: [http] }
77 + - { id: pkg-posit, name: "Posit Package Manager", host: posit.co, cat: developer, provider: posit, cc: US, imp: 3, tier: 4, checks: [http] }
78 + - { id: pkg-julia, name: "Julia", host: julialang.org, cat: developer, provider: julia, cc: US, imp: 3, tier: 4, checks: [http] }
79 + - { id: pkg-julia-pkg, name: "Julia packages", host: pkg.julialang.org, url: "https://pkg.julialang.org/registries", cat: developer, provider: julia, cc: US, imp: 3, tier: 4, checks: [http] }
80 + - { id: pkg-julia-docs, name: "Julia docs", host: docs.julialang.org, cat: developer, provider: julia, cc: US, imp: 3, tier: 4, checks: [http] }
81 + - { id: pkg-julia-juliahub, name: "Julia juliahub", host: juliahub.com, cat: developer, provider: julia, cc: US, imp: 3, tier: 4, checks: [http] }
82 + - { id: pkg-haskell, name: "Haskell", host: www.haskell.org, cat: developer, provider: haskell, cc: null, imp: 3, tier: 4, checks: [http] }
83 + - { id: pkg-haskell-stackage, name: "Haskell stackage", host: www.stackage.org, cat: developer, provider: haskell, cc: null, imp: 3, tier: 4, checks: [http] }
84 + - { id: pkg-haskell-hoogle, name: "Haskell hoogle", host: hoogle.haskell.org, cat: developer, provider: haskell, cc: null, imp: 3, tier: 4, checks: [http] }
85 + - { id: pkg-luarocks, name: "LuaRocks", host: luarocks.org, url: "https://luarocks.org/manifest", cat: developer, provider: luarocks, cc: BR, imp: 2, tier: 4, checks: [http] }
86 + - { id: pkg-opam-repo-ocaml, name: "OPAM repository OCaml", host: ocaml.org, cat: developer, provider: ocaml, cc: FR, imp: 2, tier: 4, checks: [http] }
87 + - { id: pkg-clojars-repo, name: "Clojars repository", host: repo.clojars.org, url: "https://repo.clojars.org/ring/ring/maven-metadata.xml", cat: developer, provider: clojars, cc: US, imp: 2, tier: 4, checks: [http] }
88 + - { id: pkg-clojure, name: "Clojure", host: clojure.org, cat: developer, provider: clojure, cc: US, imp: 2, tier: 4, checks: [http] }
89 + - { id: pkg-nuget-www, name: "NuGet", host: www.nuget.org, cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 4, tier: 3, checks: [http, dns] }
90 + - { id: pkg-nuget-www-api, name: "NuGet API", host: api.nuget.org, url: "https://api.nuget.org/v3/index.json", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 4, tier: 2, checks: [http, dns] }
91 + - { id: pkg-terraform-registry-api-api, name: "Terraform Registry API API", host: registry.terraform.io, url: "https://registry.terraform.io/v1/providers/hashicorp/aws", cat: developer, provider: hashicorp, svc: hashicorp, cc: US, imp: 4, tier: 3, checks: [http, dns] }
92 + - { id: pkg-opentofu, name: "OpenTofu", host: opentofu.org, cat: developer, provider: linux-foundation, cc: US, imp: 3, tier: 4, checks: [http] }
93 + - { id: pkg-opentofu-get, name: "OpenTofu installer", host: get.opentofu.org, cat: developer, provider: linux-foundation, cc: US, imp: 3, tier: 4, checks: [http] }
94 + - { id: pkg-ansible-galaxy-galaxy, name: "Ansible Galaxy galaxy", host: galaxy.ansible.com, url: "https://galaxy.ansible.com/api/", cat: developer, provider: redhat, svc: redhat, cc: US, imp: 3, tier: 4, checks: [http] }
95 + - { id: pkg-ansible-galaxy-docs, name: "Ansible Galaxy docs", host: docs.ansible.com, cat: developer, provider: redhat, svc: redhat, cc: US, imp: 3, tier: 4, checks: [http] }
96 + - { id: pkg-ansible-galaxy, name: "Ansible Galaxy", host: www.ansible.com, cat: developer, provider: redhat, svc: redhat, cc: US, imp: 3, tier: 4, checks: [http] }
97 + - { id: pkg-puppet-forge-forge, name: "Puppet Forge forge", host: forge.puppet.com, url: "https://forge.puppet.com/v3/modules/puppetlabs-stdlib", cat: developer, provider: perforce, cc: US, imp: 3, tier: 4, checks: [http] }
98 + - { id: pkg-puppet-forge, name: "Puppet Forge", host: www.puppet.com, cat: developer, provider: perforce, cc: US, imp: 3, tier: 4, checks: [http] }
99 + - { id: pkg-chef-supermarket-supermarket, name: "Chef Supermarket supermarket", host: supermarket.chef.io, url: "https://supermarket.chef.io/api/v1/cookbooks/apache2", cat: developer, provider: progress, cc: US, imp: 2, tier: 4, checks: [http] }
100 + - { id: pkg-chef-supermarket, name: "Chef Supermarket", host: www.chef.io, cat: developer, provider: progress, cc: US, imp: 2, tier: 4, checks: [http] }
101 + - { id: pkg-chef-supermarket-docs, name: "Chef Supermarket docs", host: docs.chef.io, cat: developer, provider: progress, cc: US, imp: 2, tier: 4, checks: [http] }
102 + - { id: pkg-artifacthub, name: "Artifact Hub", host: artifacthub.io, url: "https://artifacthub.io/api/v1/packages/helm/bitnami/nginx", cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
103 + - { id: pkg-helm, name: "Helm", host: helm.sh, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
104 + - { id: pkg-helm-get, name: "Helm installer", host: get.helm.sh, url: "https://get.helm.sh/helm-v3.14.0-linux-amd64.tar.gz.sha256", cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
105 + - { id: pkg-bitnami-charts-charts, name: "Bitnami charts charts", host: charts.bitnami.com, url: "https://charts.bitnami.com/bitnami/index.yaml", cat: developer, provider: broadcom, cc: US, imp: 3, tier: 4, checks: [http] }
106 + - { id: pkg-bitnami-charts, name: "Bitnami charts", host: bitnami.com, cat: developer, provider: broadcom, cc: US, imp: 3, tier: 4, checks: [http] }
107 + - { id: pkg-docker-hub-api-hubapi, name: "Docker Hub API hubapi", host: hub.docker.com, url: "https://hub.docker.com/v2/repositories/library/nginx/", cat: developer, provider: docker, svc: docker, cc: US, imp: 5, tier: 2, checks: [http, dns] }
108 + - { id: pkg-docker-hub-api-production, name: "Docker Hub API production", host: production.cloudflare.docker.com, cat: developer, provider: docker, svc: docker, cc: US, imp: 5, tier: 3, checks: [http, dns] }
109 + - { id: pkg-docker-hub-api-docs, name: "Docker Hub API docs", host: docs.docker.com, cat: developer, provider: docker, svc: docker, cc: US, imp: 5, tier: 3, checks: [http, dns] }
110 + - { id: pkg-docker-hub-api-desktop, name: "Docker Hub API desktop", host: desktop.docker.com, cat: developer, provider: docker, svc: docker, cc: US, imp: 5, tier: 3, checks: [http, dns] }
111 + - { id: pkg-docker-hub-api-status, name: "Docker Hub API status page", host: www.dockerstatus.com, cat: developer, provider: docker, svc: docker, cc: US, imp: 5, tier: 3, checks: [http, dns] }
112 + - { id: pkg-quay-api-api, name: "Quay.io API API", host: quay.io, url: "https://quay.io/api/v1/repository/prometheus/prometheus", cat: developer, provider: redhat, svc: redhat, cc: US, imp: 3, tier: 4, checks: [http] }
113 + - { id: pkg-quay-api-status, name: "Quay.io API status page", host: status.quay.io, cat: developer, provider: redhat, svc: redhat, cc: US, imp: 3, tier: 4, checks: [http] }
114 + - { id: pkg-redhat-registry-registry, name: "Red Hat container registry registry", host: registry.access.redhat.com, url: "https://registry.access.redhat.com/v2/", cat: developer, provider: redhat, svc: redhat, cc: US, imp: 3, tier: 4, checks: [http] }
115 + - { id: pkg-redhat-registry-catalog, name: "Red Hat container registry catalog", host: catalog.redhat.com, cat: developer, provider: redhat, svc: redhat, cc: US, imp: 3, tier: 4, checks: [http] }
116 + - { id: pkg-gcr-token-v2, name: "Google Container Registry v2", host: gcr.io, url: "https://gcr.io/v2/", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
117 + - { id: pkg-gcr-token-us, name: "Google Container Registry us", host: us-docker.pkg.dev, url: "https://us-docker.pkg.dev/v2/", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
118 + - { id: pkg-gcr-token-europe, name: "Google Container Registry europe", host: europe-docker.pkg.dev, url: "https://europe-docker.pkg.dev/v2/", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
119 + - { id: pkg-gcr-token-asia, name: "Google Container Registry asia", host: asia-docker.pkg.dev, url: "https://asia-docker.pkg.dev/v2/", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
120 + - { id: pkg-mcr-mcr, name: "Microsoft Container Registry mcr", host: mcr.microsoft.com, url: "https://mcr.microsoft.com/v2/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 4, tier: 2, checks: [http, dns] }
121 + - { id: pkg-registry-k8s-v2, name: "Kubernetes registry v2", host: registry.k8s.io, url: "https://registry.k8s.io/v2/", cat: developer, provider: cncf, cc: null, imp: 4, tier: 2, checks: [http, dns] }
122 + - { id: pkg-registry-k8s-dl, name: "Kubernetes registry downloads", host: dl.k8s.io, url: "https://dl.k8s.io/release/stable.txt", cat: developer, provider: cncf, cc: null, imp: 4, tier: 2, checks: [http, dns] }
123 + - { id: pkg-public-ecr-public, name: "Amazon ECR Public public", host: public.ecr.aws, url: "https://public.ecr.aws/v2/", cat: developer, provider: aws, svc: aws, cc: US, imp: 4, tier: 2, checks: [http, dns] }
124 + - { id: pkg-public-ecr-gallery, name: "Amazon ECR Public gallery", host: gallery.ecr.aws, cat: developer, provider: aws, svc: aws, cc: US, imp: 4, tier: 3, checks: [http, dns] }
125 + - { id: pkg-gitlab-registry-v2-v2, name: "GitLab container registry API v2", host: registry.gitlab.com, url: "https://registry.gitlab.com/v2/", cat: developer, provider: gitlab, svc: gitlab, cc: US, imp: 3, tier: 4, checks: [http] }
126 + - { id: pkg-gitlab-registry-v2-docs, name: "GitLab container registry API docs", host: docs.gitlab.com, cat: developer, provider: gitlab, svc: gitlab, cc: US, imp: 3, tier: 4, checks: [http] }
127 + - { id: pkg-gitlab-registry-v2-status, name: "GitLab container registry API status page", host: status.gitlab.com, cat: developer, provider: gitlab, svc: gitlab, cc: US, imp: 3, tier: 4, checks: [http] }
128 + - { id: pkg-ghcr-v2-v2, name: "GitHub Container Registry API v2", host: ghcr.io, url: "https://ghcr.io/v2/", cat: developer, provider: github, svc: github, cc: US, imp: 4, tier: 3, checks: [http, dns] }
129 + - { id: pkg-ghcr-v2-pkgs, name: "GitHub Container Registry API pkgs", host: github.com, url: "https://github.com/orgs/github/packages", cat: developer, provider: github, svc: github, cc: US, imp: 4, tier: 3, checks: [http, dns] }
130 + - { id: pkg-ghcr-v2-npm, name: "GitHub Container Registry API npm", host: npm.pkg.github.com, url: "https://npm.pkg.github.com/", cat: developer, provider: github, svc: github, cc: US, imp: 4, tier: 3, checks: [http, dns] }
131 + - { id: pkg-ghcr-v2-maven, name: "GitHub Container Registry API maven", host: maven.pkg.github.com, url: "https://maven.pkg.github.com/", cat: developer, provider: github, svc: github, cc: US, imp: 4, tier: 3, checks: [http, dns] }
132 + - { id: pkg-ghcr-v2-nuget, name: "GitHub Container Registry API nuget", host: nuget.pkg.github.com, url: "https://nuget.pkg.github.com/", cat: developer, provider: github, svc: github, cc: US, imp: 4, tier: 3, checks: [http, dns] }
133 + - { id: pkg-codeberg-pages-docs, name: "Codeberg docs", host: docs.codeberg.org, cat: developer, provider: codeberg, cc: DE, imp: 3, tier: 4, checks: [http] }
134 + - { id: pkg-sourcehut, name: "SourceHut", host: sr.ht, cat: developer, provider: sourcehut, cc: US, imp: 2, tier: 4, checks: [http] }
135 + - { id: pkg-sourcehut-meta, name: "SourceHut meta", host: meta.sr.ht, cat: developer, provider: sourcehut, cc: US, imp: 2, tier: 4, checks: [http] }
136 + - { id: pkg-sourcehut-lists, name: "SourceHut lists", host: lists.sr.ht, cat: developer, provider: sourcehut, cc: US, imp: 2, tier: 4, checks: [http] }
137 + - { id: pkg-sourcehut-builds, name: "SourceHut builds", host: builds.sr.ht, cat: developer, provider: sourcehut, cc: US, imp: 2, tier: 4, checks: [http] }
138 + - { id: pkg-sourcehut-man, name: "SourceHut man", host: man.sr.ht, cat: developer, provider: sourcehut, cc: US, imp: 2, tier: 4, checks: [http] }
139 + - { id: pkg-sourcehut-status, name: "SourceHut status page", host: status.sr.ht, cat: developer, provider: sourcehut, cc: US, imp: 2, tier: 4, checks: [http] }
140 + - { id: pkg-gitee-api-api, name: "Gitee API API", host: gitee.com, url: "https://gitee.com/api/v5/swagger", cat: developer, provider: gitee, cc: CN, imp: 3, tier: 4, checks: [http] }
141 + - { id: pkg-gitee-api-help, name: "Gitee API help centre", host: help.gitee.com, cat: developer, provider: gitee, cc: CN, imp: 3, tier: 4, checks: [http] }
142 + - { id: pkg-azure-devops-status, name: "Azure DevOps status page", host: status.dev.azure.com, url: "https://status.dev.azure.com/_apis/status/health", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 4, tier: 3, checks: [http, dns] }
143 + - { id: pkg-gitea-io-about, name: "Gitea about page", host: about.gitea.com, cat: developer, provider: gitea, cc: CN, imp: 2, tier: 4, checks: [http] }
144 + - { id: pkg-gitea-io-docs, name: "Gitea docs", host: docs.gitea.com, cat: developer, provider: gitea, cc: CN, imp: 2, tier: 4, checks: [http] }
145 + - { id: pkg-gitea-io-dl, name: "Gitea downloads", host: dl.gitea.com, cat: developer, provider: gitea, cc: CN, imp: 2, tier: 4, checks: [http] }
146 + - { id: pkg-forgejo, name: "Forgejo", host: forgejo.org, cat: developer, provider: forgejo, cc: null, imp: 2, tier: 4, checks: [http] }
147 + - { id: pkg-hf-cdn-cdn-lfs-us, name: "Hugging Face CDN hosts cdn lfs us", host: cdn-lfs-us-1.hf.co, cat: developer, provider: huggingface, svc: huggingface, cc: US, imp: 4, tier: 3, checks: [http, dns] }
148 + - { id: pkg-hf-cdn-cdn-lfs-eu, name: "Hugging Face CDN hosts cdn lfs eu", host: cdn-lfs-eu-1.hf.co, cat: developer, provider: huggingface, svc: huggingface, cc: US, imp: 4, tier: 3, checks: [http, dns] }
149 + - { id: pkg-hf-cdn-cas-bridge, name: "Hugging Face CDN hosts cas bridge", host: cas-bridge.xethub.hf.co, cat: developer, provider: huggingface, svc: huggingface, cc: US, imp: 4, tier: 3, checks: [http, dns] }
150 + - { id: pkg-hf-cdn-cas, name: "Hugging Face CDN hosts cas", host: cas-server.xethub.hf.co, cat: developer, provider: huggingface, svc: huggingface, cc: US, imp: 4, tier: 3, checks: [http, dns] }
151 + - { id: pkg-hf-cdn-api, name: "Hugging Face CDN hosts API", host: huggingface.co, url: "https://huggingface.co/api/models?limit=1", cat: developer, provider: huggingface, svc: huggingface, cc: US, imp: 4, tier: 2, checks: [http, dns] }
152 + - { id: pkg-hf-cdn-endpoints, name: "Hugging Face CDN hosts endpoints", host: endpoints.huggingface.co, cat: developer, provider: huggingface, svc: huggingface, cc: US, imp: 4, tier: 3, checks: [http, dns] }
153 + - { id: pkg-hf-cdn-router, name: "Hugging Face CDN hosts router", host: router.huggingface.co, cat: developer, provider: huggingface, svc: huggingface, cc: US, imp: 4, tier: 3, checks: [http, dns] }
154 + - { id: pkg-hf-cdn-discuss, name: "Hugging Face CDN hosts discussion forum", host: discuss.huggingface.co, cat: developer, provider: huggingface, svc: huggingface, cc: US, imp: 4, tier: 3, checks: [http, dns] }
155 + - { id: pkg-ollama-api-registry, name: "Ollama registry API registry", host: registry.ollama.ai, url: "https://registry.ollama.ai/v2/library/llama3/manifests/latest", cat: developer, provider: ollama, cc: US, imp: 4, tier: 2, checks: [http, dns] }
156 + - { id: pkg-civitai-api-api, name: "Civitai API API", host: civitai.com, url: "https://civitai.com/api/v1/models?limit=1", cat: developer, provider: civitai, cc: US, imp: 3, tier: 4, checks: [http] }
157 + - { id: pkg-civitai-api-image, name: "Civitai API images", host: image.civitai.com, cat: developer, provider: civitai, cc: US, imp: 3, tier: 4, checks: [http] }
158 + - { id: pkg-kaggle-api-api, name: "Kaggle API", host: www.kaggle.com, url: "https://www.kaggle.com/api/v1/datasets/list?page=1", cat: developer, provider: google, svc: google, cc: US, imp: 3, tier: 4, checks: [http] }
159 + - { id: pkg-kaggle-api-static, name: "Kaggle static assets", host: www.kaggleusercontent.com, cat: developer, provider: google, svc: google, cc: US, imp: 3, tier: 4, checks: [http] }
160 + - { id: pkg-roboflow, name: "Roboflow", host: roboflow.com, cat: developer, provider: roboflow, cc: US, imp: 3, tier: 4, checks: [http] }
161 + - { id: pkg-roboflow-universe, name: "Roboflow universe", host: universe.roboflow.com, cat: developer, provider: roboflow, cc: US, imp: 3, tier: 4, checks: [http] }
162 + - { id: pkg-roboflow-docs, name: "Roboflow docs", host: docs.roboflow.com, cat: developer, provider: roboflow, cc: US, imp: 3, tier: 4, checks: [http] }
163 + - { id: pkg-roboflow-api, name: "Roboflow API", host: api.roboflow.com, cat: developer, provider: roboflow, cc: US, imp: 3, tier: 4, checks: [http] }
164 + - { id: pkg-roboflow-app, name: "Roboflow app", host: app.roboflow.com, cat: developer, provider: roboflow, cc: US, imp: 3, tier: 4, checks: [http] }
165 + - { id: pkg-roboflow-status, name: "Roboflow status page", host: status.roboflow.com, cat: developer, provider: roboflow, cc: US, imp: 3, tier: 4, checks: [http] }
166 + - { id: pkg-wandb-api-api, name: "Weights & Biases API", host: api.wandb.ai, url: "https://api.wandb.ai/", cat: developer, provider: wandb, svc: wandb, cc: US, imp: 3, tier: 4, checks: [http] }
167 + - { id: pkg-wandb-api-docs, name: "Weights & Biases docs", host: docs.wandb.ai, cat: developer, provider: wandb, svc: wandb, cc: US, imp: 3, tier: 4, checks: [http] }
168 + - { id: pkg-wandb-api-status, name: "Weights & Biases status page", host: status.wandb.com, cat: developer, provider: wandb, svc: wandb, cc: US, imp: 3, tier: 4, checks: [http] }
169 + - { id: pkg-comet, name: "Comet ML", host: www.comet.com, cat: developer, provider: comet, svc: comet, cc: US, imp: 2, tier: 4, checks: [http] }
170 + - { id: pkg-comet-status, name: "Comet ML status page", host: status.comet.com, cat: developer, provider: comet, svc: comet, cc: US, imp: 2, tier: 4, checks: [http] }
171 + - { id: pkg-neptune-docs, name: "Neptune.ai docs", host: docs.neptune.ai, cat: developer, provider: neptune, cc: PL, imp: 2, tier: 4, checks: [http] }
172 + - { id: pkg-mlflow, name: "MLflow", host: mlflow.org, cat: developer, provider: databricks, svc: databricks, cc: US, imp: 3, tier: 4, checks: [http] }
173 + - { id: pkg-tfhub, name: "TensorFlow Hub / Kaggle Models", host: tfhub.dev, cat: developer, provider: google, svc: google, cc: US, imp: 3, tier: 4, checks: [http] }
174 + - { id: pkg-modelscope, name: "ModelScope", host: www.modelscope.cn, cat: developer, provider: alibaba, svc: alibaba, cc: CN, imp: 3, tier: 4, checks: [http] }
175 + - { id: pkg-modelscope-api, name: "ModelScope API", host: modelscope.cn, url: "https://modelscope.cn/api/v1/models?PageSize=1", cat: developer, provider: alibaba, svc: alibaba, cc: CN, imp: 3, tier: 4, checks: [http] }
176 + - { id: pkg-deb-mirrors-deb, name: "Debian/Ubuntu archives deb", host: deb.debian.org, url: "https://deb.debian.org/debian/dists/stable/Release", cat: developer, provider: debian, cc: null, imp: 4, tier: 2, checks: [http, dns] }
177 + - { id: pkg-deb-mirrors-ftp, name: "Debian/Ubuntu archives FTP mirror", host: ftp.debian.org, cat: developer, provider: debian, cc: null, imp: 4, tier: 3, checks: [http, dns] }
178 + - { id: pkg-deb-mirrors-archive, name: "Debian/Ubuntu archives archive", host: archive.ubuntu.com, url: "https://archive.ubuntu.com/ubuntu/dists/noble/Release", cat: developer, provider: debian, cc: null, imp: 4, tier: 3, checks: [http, dns] }
179 + - { id: pkg-deb-mirrors-cdimage, name: "Debian/Ubuntu archives cdimage", host: cdimage.debian.org, cat: developer, provider: debian, cc: null, imp: 4, tier: 3, checks: [http, dns] }
180 + - { id: pkg-deb-mirrors-esm, name: "Debian/Ubuntu archives esm", host: esm.ubuntu.com, cat: developer, provider: debian, cc: null, imp: 4, tier: 3, checks: [http, dns] }
181 + - { id: pkg-deb-mirrors-packages, name: "Debian/Ubuntu archives packages", host: packages.debian.org, cat: developer, provider: debian, cc: null, imp: 4, tier: 3, checks: [http, dns] }
182 + - { id: pkg-deb-mirrors-packages-ubuntu, name: "Debian/Ubuntu archives packages ubuntu", host: packages.ubuntu.com, cat: developer, provider: debian, cc: null, imp: 4, tier: 3, checks: [http, dns] }
183 + - { id: pkg-rpm-mirrors-rpmfusion, name: "RPM ecosystems rpmfusion", host: download1.rpmfusion.org, cat: developer, provider: fedora, cc: null, imp: 3, tier: 4, checks: [http] }
184 + - { id: pkg-rpm-mirrors-epel, name: "RPM ecosystems epel", host: dl.fedoraproject.org, url: "https://dl.fedoraproject.org/pub/epel/", cat: developer, provider: fedora, cc: null, imp: 3, tier: 4, checks: [http] }
185 + - { id: pkg-rpm-mirrors-copr, name: "RPM ecosystems copr", host: copr.fedorainfracloud.org, cat: developer, provider: fedora, cc: null, imp: 3, tier: 4, checks: [http] }
186 + - { id: pkg-rpm-mirrors-rpmfind, name: "RPM ecosystems rpmfind", host: rpmfind.net, cat: developer, provider: fedora, cc: null, imp: 3, tier: 4, checks: [http] }
187 + - { id: pkg-rpm-mirrors-pkgs, name: "RPM ecosystems pkgs", host: pkgs.org, cat: developer, provider: fedora, cc: null, imp: 3, tier: 4, checks: [http] }
188 + - { id: pkg-alpine-pkgs-pkgs, name: "Alpine Linux pkgs", host: pkgs.alpinelinux.org, cat: developer, provider: alpine, cc: null, imp: 3, tier: 4, checks: [http] }
189 + - { id: pkg-gentoo, name: "Gentoo", host: www.gentoo.org, cat: developer, provider: gentoo, cc: null, imp: 2, tier: 4, checks: [http] }
190 + - { id: pkg-gentoo-packages, name: "Gentoo packages", host: packages.gentoo.org, cat: developer, provider: gentoo, cc: null, imp: 2, tier: 4, checks: [http] }
191 + - { id: pkg-freebsd-pkg, name: "FreeBSD packages", host: pkg.freebsd.org, cat: developer, provider: freebsd-foundation, cc: US, imp: 3, tier: 4, checks: [http] }
192 + - { id: pkg-freebsd-docs, name: "FreeBSD docs", host: docs.freebsd.org, cat: developer, provider: freebsd-foundation, cc: US, imp: 3, tier: 4, checks: [http] }
193 + - { id: pkg-openbsd-ftp, name: "OpenBSD FTP mirror", host: ftp.openbsd.org, cat: developer, provider: openbsd, cc: CA, imp: 2, tier: 4, checks: [http] }
194 + - { id: pkg-netbsd, name: "NetBSD", host: www.netbsd.org, cat: developer, provider: netbsd, cc: US, imp: 2, tier: 4, checks: [http] }
195 + - { id: pkg-macports-ports, name: "MacPorts ports", host: ports.macports.org, cat: developer, provider: macports, cc: US, imp: 2, tier: 4, checks: [http] }
196 + - { id: pkg-homebrew-api-api, name: "Homebrew API API", host: formulae.brew.sh, url: "https://formulae.brew.sh/api/formula/wget.json", cat: developer, provider: homebrew, cc: US, imp: 4, tier: 3, checks: [http, dns] }
197 + - { id: pkg-homebrew-api-docs, name: "Homebrew API docs", host: docs.brew.sh, cat: developer, provider: homebrew, cc: US, imp: 4, tier: 3, checks: [http, dns] }
198 + - { id: pkg-winget-choco-docs, name: "winget / Chocolatey / Scoop choco docs", host: docs.chocolatey.org, cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 3, tier: 4, checks: [http] }
199 + - { id: pkg-vscode-marketplace-code, name: "VS Code Marketplace code", host: code.visualstudio.com, cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 4, tier: 3, checks: [http, dns] }
200 + - { id: pkg-vscode-marketplace-update, name: "VS Code Marketplace update", host: update.code.visualstudio.com, url: "https://update.code.visualstudio.com/api/update/darwin/stable/latest", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 4, tier: 3, checks: [http, dns] }
201 + - { id: pkg-vscode-marketplace-vscode-dev, name: "VS Code Marketplace vscode dev", host: vscode.dev, cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 4, tier: 3, checks: [http, dns] }
202 + - { id: pkg-chrome-webstore-clients2, name: "Chrome Web Store clients2", host: clients2.google.com, url: "https://clients2.google.com/service/update2/crx", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
203 + - { id: pkg-firefox-addons-api, name: "Firefox Add-ons (AMO) API", host: services.addons.mozilla.org, url: "https://services.addons.mozilla.org/api/v5/addons/search/?q=ublock", cat: developer, provider: mozilla, cc: US, imp: 3, tier: 4, checks: [http] }
204 + - { id: pkg-firefox-addons-download, name: "Firefox Add-ons (AMO) downloads", host: download.mozilla.org, url: "https://download.mozilla.org/?product=firefox-latest&os=osx&lang=en-US", cat: developer, provider: mozilla, cc: US, imp: 3, tier: 4, checks: [http] }
205 + - { id: pkg-apple-swift-pkgs-swiftpackageregistry, name: "Swift Package Registry / Apple swiftpackageregistry", host: swiftpackageregistry.com, cat: developer, provider: apple, svc: apple, cc: US, imp: 3, tier: 4, checks: [http] }
206 + - { id: pkg-apple-swift-pkgs-forums, name: "Swift Package Registry / Apple forum", host: forums.swift.org, cat: developer, provider: apple, svc: apple, cc: US, imp: 3, tier: 4, checks: [http] }
207 + - { id: pkg-apple-swift-pkgs-download, name: "Swift Package Registry / Apple downloads", host: download.swift.org, url: "https://download.swift.org/swift-5.10-release/xcode/swift-5.10-RELEASE/swift-5.10-RELEASE-osx.pkg.sig", cat: developer, provider: apple, svc: apple, cc: US, imp: 3, tier: 4, checks: [http] }
208 + - { id: pkg-unity-packages-packages, name: "Unity packages", host: packages.unity.com, url: "https://packages.unity.com/com.unity.mathematics", cat: developer, provider: unity, cc: US, imp: 3, tier: 4, checks: [http] }
209 + - { id: pkg-godot-docs, name: "Godot Engine docs", host: docs.godotengine.org, cat: developer, provider: godot, cc: null, imp: 2, tier: 4, checks: [http] }
210 + - { id: pkg-godot-downloads, name: "Godot Engine downloads", host: downloads.tuxfamily.org, cat: developer, provider: godot, cc: null, imp: 2, tier: 4, checks: [http] }
211 + - { id: pkg-arduino, name: "Arduino", host: www.arduino.cc, cat: developer, provider: arduino, cc: IT, imp: 3, tier: 4, checks: [http] }
212 + - { id: pkg-arduino-downloads, name: "Arduino downloads", host: downloads.arduino.cc, url: "https://downloads.arduino.cc/packages/package_index.json", cat: developer, provider: arduino, cc: IT, imp: 3, tier: 4, checks: [http] }
213 + - { id: pkg-arduino-docs, name: "Arduino docs", host: docs.arduino.cc, cat: developer, provider: arduino, cc: IT, imp: 3, tier: 4, checks: [http] }
214 + - { id: pkg-arduino-forum, name: "Arduino forum", host: forum.arduino.cc, cat: developer, provider: arduino, cc: IT, imp: 3, tier: 4, checks: [http] }
215 + - { id: pkg-platformio, name: "PlatformIO", host: platformio.org, cat: developer, provider: platformio, cc: US, imp: 2, tier: 4, checks: [http] }
216 + - { id: pkg-platformio-registry, name: "PlatformIO registry", host: registry.platformio.org, cat: developer, provider: platformio, cc: US, imp: 2, tier: 4, checks: [http] }
217 + - { id: pkg-platformio-api, name: "PlatformIO API", host: api.registry.platformio.org, url: "https://api.registry.platformio.org/v3/packages?limit=1", cat: developer, provider: platformio, cc: US, imp: 2, tier: 4, checks: [http] }
218 + - { id: pkg-platformio-docs, name: "PlatformIO docs", host: docs.platformio.org, cat: developer, provider: platformio, cc: US, imp: 2, tier: 4, checks: [http] }
219 + - { id: pkg-espressif, name: "Espressif", host: www.espressif.com, cat: developer, provider: espressif, cc: CN, imp: 2, tier: 4, checks: [http] }
220 + - { id: pkg-espressif-docs, name: "Espressif docs", host: docs.espressif.com, cat: developer, provider: espressif, cc: CN, imp: 2, tier: 4, checks: [http] }
221 + - { id: pkg-espressif-components, name: "Espressif components", host: components.espressif.com, cat: developer, provider: espressif, cc: CN, imp: 2, tier: 4, checks: [http] }
222 + - { id: pkg-espressif-dl, name: "Espressif downloads", host: dl.espressif.com, cat: developer, provider: espressif, cc: CN, imp: 2, tier: 4, checks: [http] }
223 + - { id: pkg-raspberrypi-downloads, name: "Raspberry Pi downloads", host: downloads.raspberrypi.com, url: "https://downloads.raspberrypi.com/os_list_imagingutility_v4.json", cat: developer, provider: raspberrypi, cc: GB, imp: 3, tier: 4, checks: [http] }
224 + - { id: pkg-sdkman-sdkman, name: "SDKMAN / Adoptium / Zulu sdkman", host: sdkman.io, cat: developer, provider: adoptium, cc: null, imp: 3, tier: 4, checks: [http] }
225 + - { id: pkg-sdkman-api, name: "SDKMAN / Adoptium / Zulu API", host: api.sdkman.io, url: "https://api.sdkman.io/2/candidates/all", cat: developer, provider: adoptium, cc: null, imp: 3, tier: 4, checks: [http] }
226 + - { id: pkg-sdkman-adoptium, name: "SDKMAN / Adoptium / Zulu adoptium", host: adoptium.net, cat: developer, provider: adoptium, cc: null, imp: 3, tier: 4, checks: [http] }
227 + - { id: pkg-sdkman-zulu, name: "SDKMAN / Adoptium / Zulu zulu", host: www.azul.com, cat: developer, provider: adoptium, cc: null, imp: 3, tier: 4, checks: [http] }
228 + - { id: pkg-sdkman-corretto, name: "SDKMAN / Adoptium / Zulu corretto", host: corretto.aws, url: "https://corretto.aws/downloads/latest_checksum/amazon-corretto-21-x64-linux-jdk.tar.gz", cat: developer, provider: adoptium, cc: null, imp: 3, tier: 4, checks: [http] }
229 + - { id: pkg-sdkman-oracle-java, name: "SDKMAN / Adoptium / Zulu oracle java", host: www.oracle.com, url: "https://www.oracle.com/java/technologies/downloads/", cat: developer, provider: adoptium, cc: null, imp: 3, tier: 4, checks: [http] }
230 + - { id: pkg-graalvm, name: "GraalVM", host: www.graalvm.org, cat: developer, provider: oracle, svc: oracle, cc: US, imp: 2, tier: 4, checks: [http] }
231 + - { id: pkg-kotlin, name: "Kotlin", host: kotlinlang.org, cat: developer, provider: jetbrains, cc: CZ, imp: 3, tier: 4, checks: [http] }
232 + - { id: pkg-scala, name: "Scala", host: www.scala-lang.org, cat: developer, provider: scala, cc: CH, imp: 2, tier: 4, checks: [http] }
233 + - { id: pkg-scala-scaladex, name: "Scala scaladex", host: index.scala-lang.org, cat: developer, provider: scala, cc: CH, imp: 2, tier: 4, checks: [http] }
234 + - { id: pkg-elixir, name: "Elixir / Erlang", host: elixir-lang.org, cat: developer, provider: elixir, cc: null, imp: 2, tier: 4, checks: [http] }
235 + - { id: pkg-elixir-erlang, name: "Elixir / Erlang erlang", host: www.erlang.org, cat: developer, provider: elixir, cc: null, imp: 2, tier: 4, checks: [http] }
236 + - { id: pkg-elixir-builds, name: "Elixir / Erlang builds", host: builds.hex.pm, cat: developer, provider: elixir, cc: null, imp: 2, tier: 4, checks: [http] }
237 + - { id: pkg-zig, name: "Zig", host: ziglang.org, url: "https://ziglang.org/download/index.json", cat: developer, provider: zig, cc: US, imp: 2, tier: 4, checks: [http] }
238 + - { id: pkg-nim, name: "Nim", host: nim-lang.org, cat: developer, provider: nim, cc: null, imp: 1, tier: 4, checks: [http] }
239 + - { id: pkg-crystal, name: "Crystal", host: crystal-lang.org, cat: developer, provider: crystal, cc: null, imp: 1, tier: 4, checks: [http] }
240 + - { id: pkg-perl-cpan-fastapi, name: "CPAN mirrors fastapi", host: fastapi.metacpan.org, url: "https://fastapi.metacpan.org/v1/module/Moose", cat: developer, provider: perl, cc: null, imp: 2, tier: 4, checks: [http] }
241 + - { id: pkg-perl-cpan-cpan-mirror, name: "CPAN mirrors cpan mirror", host: cpan.metacpan.org, cat: developer, provider: perl, cc: null, imp: 2, tier: 4, checks: [http] }
242 + - { id: pkg-php-packages-pecl, name: "PHP ecosystem pecl", host: pecl.php.net, cat: developer, provider: php, cc: null, imp: 3, tier: 4, checks: [http] }
243 + - { id: pkg-php-packages-downloads, name: "PHP ecosystem downloads", host: downloads.php.net, cat: developer, provider: php, cc: null, imp: 3, tier: 4, checks: [http] }
244 + - { id: pkg-php-packages-windows, name: "PHP ecosystem windows", host: windows.php.net, cat: developer, provider: php, cc: null, imp: 3, tier: 4, checks: [http] }
245 + - { id: pkg-node-dist-dist, name: "Node.js distribution dist", host: nodejs.org, url: "https://nodejs.org/dist/index.json", cat: developer, provider: openjs, cc: US, imp: 4, tier: 2, checks: [http, dns] }
246 + - { id: pkg-node-dist-unofficial, name: "Node.js distribution unofficial", host: unofficial-builds.nodejs.org, cat: developer, provider: openjs, cc: US, imp: 4, tier: 3, checks: [http, dns] }
247 + - { id: pkg-node-dist-nvm, name: "Node.js distribution nvm", host: nvm.sh, cat: developer, provider: openjs, cc: US, imp: 4, tier: 3, checks: [http, dns] }
248 + - { id: pkg-pnpm, name: "pnpm", host: pnpm.io, cat: developer, provider: pnpm, cc: null, imp: 3, tier: 4, checks: [http] }
249 + - { id: pkg-pnpm-get, name: "pnpm installer", host: get.pnpm.io, cat: developer, provider: pnpm, cc: null, imp: 3, tier: 4, checks: [http] }
250 + - { id: pkg-vite, name: "Vite / Vue", host: vite.dev, cat: developer, provider: voidzero, cc: CN, imp: 3, tier: 4, checks: [http] }
251 + - { id: pkg-vite-vitejs, name: "Vite / Vue vitejs", host: vitejs.dev, cat: developer, provider: voidzero, cc: CN, imp: 3, tier: 4, checks: [http] }
252 + - { id: pkg-vite-vuejs, name: "Vite / Vue vuejs", host: vuejs.org, cat: developer, provider: voidzero, cc: CN, imp: 3, tier: 4, checks: [http] }
253 + - { id: pkg-react, name: "React", host: react.dev, cat: developer, provider: meta, svc: meta, cc: US, imp: 3, tier: 4, checks: [http] }
254 + - { id: pkg-react-legacy, name: "React legacy", host: legacy.reactjs.org, cat: developer, provider: meta, svc: meta, cc: US, imp: 3, tier: 4, checks: [http] }
255 + - { id: pkg-angular, name: "Angular", host: angular.dev, cat: developer, provider: google, svc: google, cc: US, imp: 3, tier: 4, checks: [http] }
256 + - { id: pkg-angular-angular-io, name: "Angular angular io", host: angular.io, cat: developer, provider: google, svc: google, cc: US, imp: 3, tier: 4, checks: [http] }
257 + - { id: pkg-svelte, name: "Svelte", host: svelte.dev, cat: developer, provider: svelte, cc: null, imp: 2, tier: 4, checks: [http] }
258 + - { id: pkg-svelte-kit, name: "Svelte kit", host: kit.svelte.dev, cat: developer, provider: svelte, cc: null, imp: 2, tier: 4, checks: [http] }
259 + - { id: pkg-astro, name: "Astro", host: astro.build, cat: developer, provider: astro, cc: US, imp: 2, tier: 4, checks: [http] }
260 + - { id: pkg-astro-docs, name: "Astro docs", host: docs.astro.build, cat: developer, provider: astro, cc: US, imp: 2, tier: 4, checks: [http] }
261 + - { id: pkg-nuxt, name: "Nuxt", host: nuxt.com, cat: developer, provider: nuxt, cc: FR, imp: 2, tier: 4, checks: [http] }
262 + - { id: pkg-remix, name: "Remix / React Router", host: remix.run, cat: developer, provider: shopify, svc: shopify, cc: US, imp: 2, tier: 4, checks: [http] }
263 + - { id: pkg-remix-reactrouter, name: "Remix / React Router reactrouter", host: reactrouter.com, cat: developer, provider: shopify, svc: shopify, cc: US, imp: 2, tier: 4, checks: [http] }
264 + - { id: pkg-tailwind, name: "Tailwind CSS", host: tailwindcss.com, cat: developer, provider: tailwind, cc: US, imp: 3, tier: 4, checks: [http] }
265 + - { id: pkg-tailwind-play, name: "Tailwind CSS play", host: play.tailwindcss.com, cat: developer, provider: tailwind, cc: US, imp: 3, tier: 4, checks: [http] }
266 + - { id: pkg-bootstrap, name: "Bootstrap", host: getbootstrap.com, cat: developer, provider: bootstrap, cc: null, imp: 2, tier: 4, checks: [http] }
267 + - { id: pkg-django, name: "Django", host: www.djangoproject.com, cat: developer, provider: django, cc: US, imp: 3, tier: 4, checks: [http] }
268 + - { id: pkg-django-docs, name: "Django docs", host: docs.djangoproject.com, cat: developer, provider: django, cc: US, imp: 3, tier: 4, checks: [http] }
269 + - { id: pkg-flask-flask, name: "Flask / Pallets flask", host: flask.palletsprojects.com, cat: developer, provider: flask, cc: null, imp: 2, tier: 4, checks: [http] }
270 + - { id: pkg-flask-pallets, name: "Flask / Pallets pallets", host: palletsprojects.com, cat: developer, provider: flask, cc: null, imp: 2, tier: 4, checks: [http] }
271 + - { id: pkg-fastapi-fastapi, name: "FastAPI fastapi", host: fastapi.tiangolo.com, cat: developer, provider: fastapi, cc: null, imp: 2, tier: 4, checks: [http] }
272 + - { id: pkg-rails, name: "Ruby on Rails", host: rubyonrails.org, cat: developer, provider: rails, cc: US, imp: 3, tier: 4, checks: [http] }
273 + - { id: pkg-rails-api, name: "Ruby on Rails API", host: api.rubyonrails.org, cat: developer, provider: rails, cc: US, imp: 3, tier: 4, checks: [http] }
274 + - { id: pkg-rails-guides, name: "Ruby on Rails guides", host: guides.rubyonrails.org, cat: developer, provider: rails, cc: US, imp: 3, tier: 4, checks: [http] }
275 + - { id: pkg-laravel, name: "Laravel", host: laravel.com, cat: developer, provider: laravel, cc: US, imp: 3, tier: 4, checks: [http] }
276 + - { id: pkg-laravel-forge, name: "Laravel forge", host: forge.laravel.com, cat: developer, provider: laravel, cc: US, imp: 3, tier: 4, checks: [http] }
277 + - { id: pkg-symfony, name: "Symfony", host: symfony.com, cat: developer, provider: symfony, cc: FR, imp: 2, tier: 4, checks: [http] }
278 + - { id: pkg-spring, name: "Spring", host: spring.io, cat: developer, provider: broadcom, cc: US, imp: 3, tier: 4, checks: [http] }
279 + - { id: pkg-spring-start, name: "Spring start", host: start.spring.io, url: "https://start.spring.io/metadata/client", cat: developer, provider: broadcom, cc: US, imp: 3, tier: 4, checks: [http] }
280 + - { id: pkg-spring-repo, name: "Spring repository", host: repo.spring.io, cat: developer, provider: broadcom, cc: US, imp: 3, tier: 4, checks: [http] }
281 + - { id: pkg-spring-docs, name: "Spring docs", host: docs.spring.io, cat: developer, provider: broadcom, cc: US, imp: 3, tier: 4, checks: [http] }
282 + - { id: pkg-quarkus, name: "Quarkus", host: quarkus.io, cat: developer, provider: redhat, svc: redhat, cc: US, imp: 2, tier: 4, checks: [http] }
283 + - { id: pkg-quarkus-code, name: "Quarkus code", host: code.quarkus.io, cat: developer, provider: redhat, svc: redhat, cc: US, imp: 2, tier: 4, checks: [http] }
284 + - { id: pkg-dotnet-nuget-builds, name: ".NET downloads builds", host: builds.dotnet.microsoft.com, url: "https://builds.dotnet.microsoft.com/dotnet/release-metadata/releases-index.json", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 3, tier: 4, checks: [http] }
285 + - { id: pkg-apache, name: "Apache Software Foundation", host: www.apache.org, cat: developer, provider: apache, svc: maven, cc: US, imp: 4, tier: 3, checks: [http, dns] }
286 + - { id: pkg-apache-projects, name: "Apache Software Foundation projects", host: projects.apache.org, cat: developer, provider: apache, svc: maven, cc: US, imp: 4, tier: 3, checks: [http, dns] }
287 + - { id: pkg-apache-issues, name: "Apache Software Foundation issue tracker", host: issues.apache.org, cat: developer, provider: apache, svc: maven, cc: US, imp: 4, tier: 3, checks: [http, dns] }
288 + - { id: pkg-eclipse, name: "Eclipse Foundation", host: www.eclipse.org, cat: developer, provider: eclipse, cc: BE, imp: 3, tier: 4, checks: [http] }
289 + - { id: pkg-eclipse-projects, name: "Eclipse Foundation projects", host: projects.eclipse.org, cat: developer, provider: eclipse, cc: BE, imp: 3, tier: 4, checks: [http] }
290 + - { id: pkg-eclipse-marketplace, name: "Eclipse Foundation marketplace", host: marketplace.eclipse.org, cat: developer, provider: eclipse, cc: BE, imp: 3, tier: 4, checks: [http] }
291 + - { id: pkg-gnome-gitlab-gnome, name: "GNOME / KDE / freedesktop gnome", host: gitlab.gnome.org, cat: developer, provider: gnome, cc: null, imp: 2, tier: 4, checks: [http] }
292 + - { id: pkg-gnome-gitlab-kde, name: "GNOME / KDE / freedesktop kde", host: invent.kde.org, cat: developer, provider: gnome, cc: null, imp: 2, tier: 4, checks: [http] }
293 + - { id: pkg-gnome-gitlab-fdo, name: "GNOME / KDE / freedesktop fdo", host: gitlab.freedesktop.org, cat: developer, provider: gnome, cc: null, imp: 2, tier: 4, checks: [http] }
294 + - { id: pkg-gnome-gitlab-download-kde, name: "GNOME / KDE / freedesktop download kde", host: download.kde.org, cat: developer, provider: gnome, cc: null, imp: 2, tier: 4, checks: [http] }
295 + - { id: pkg-gnome-gitlab-download-gnome, name: "GNOME / KDE / freedesktop download gnome", host: download.gnome.org, cat: developer, provider: gnome, cc: null, imp: 2, tier: 4, checks: [http] }
296 + - { id: pkg-savannah-savannah, name: "GNU Savannah savannah", host: savannah.gnu.org, cat: developer, provider: fsf, cc: US, imp: 2, tier: 4, checks: [http] }
297 + - { id: pkg-osdn-framagit, name: "OSDN / Framagit / Gitea instances framagit", host: framagit.org, cat: developer, provider: framasoft, cc: null, imp: 1, tier: 4, checks: [http] }
298 + - { id: pkg-opendev, name: "OpenDev / OpenStack", host: opendev.org, cat: developer, provider: openinfra, cc: US, imp: 2, tier: 4, checks: [http] }
299 + - { id: pkg-opendev-review, name: "OpenDev / OpenStack review", host: review.opendev.org, cat: developer, provider: openinfra, cc: US, imp: 2, tier: 4, checks: [http] }
300 + - { id: pkg-opendev-openstack, name: "OpenDev / OpenStack openstack", host: www.openstack.org, cat: developer, provider: openinfra, cc: US, imp: 2, tier: 4, checks: [http] }
301 + - { id: pkg-opendev-tarballs, name: "OpenDev / OpenStack tarballs", host: tarballs.opendev.org, cat: developer, provider: openinfra, cc: US, imp: 2, tier: 4, checks: [http] }
302 + - { id: pkg-gerrit-go, name: "Gerrit instances go", host: go.googlesource.com, cat: developer, provider: google, svc: google, cc: US, imp: 2, tier: 4, checks: [http] }
303 + - { id: pkg-gerrit-gerrit, name: "Gerrit instances gerrit", host: gerrit-review.googlesource.com, cat: developer, provider: google, svc: google, cc: US, imp: 2, tier: 4, checks: [http] }
304 + - { id: pkg-phabricator-gerrit, name: "Wikimedia Gerrit / Phabricator gerrit", host: gerrit.wikimedia.org, cat: developer, provider: wikimedia, svc: wikimedia, cc: US, imp: 2, tier: 4, checks: [http] }
305 + - { id: pkg-phabricator-phab, name: "Wikimedia Gerrit / Phabricator phab", host: phabricator.wikimedia.org, cat: developer, provider: wikimedia, svc: wikimedia, cc: US, imp: 2, tier: 4, checks: [http] }
306 + - { id: pkg-cdn-fonts-gfonts, name: "Web font & icon CDNs gfonts", host: fonts.googleapis.com, url: "https://fonts.googleapis.com/css2?family=Inter", cat: developer, provider: google, svc: google, cc: null, imp: 3, tier: 4, checks: [http] }
307 + - { id: pkg-cdn-fonts-bunny, name: "Web font & icon CDNs bunny", host: fonts.bunny.net, url: "https://fonts.bunny.net/css?family=inter", cat: developer, provider: google, svc: google, cc: null, imp: 3, tier: 4, checks: [http] }
308 + - { id: pkg-cdn-fonts-fontawesome, name: "Web font & icon CDNs fontawesome", host: fontawesome.com, cat: developer, provider: google, svc: google, cc: null, imp: 3, tier: 4, checks: [http] }
309 + - { id: pkg-cdn-fonts-fa-kit, name: "Web font & icon CDNs fa kit", host: kit.fontawesome.com, cat: developer, provider: google, svc: google, cc: null, imp: 3, tier: 4, checks: [http] }
310 + - { id: pkg-cdn-fonts-use-fa, name: "Web font & icon CDNs use fa", host: use.fontawesome.com, cat: developer, provider: google, svc: google, cc: null, imp: 3, tier: 4, checks: [http] }
311 + - { id: pkg-cdn-fonts-typekit, name: "Web font & icon CDNs typekit", host: use.typekit.net, cat: developer, provider: google, svc: google, cc: null, imp: 3, tier: 4, checks: [http] }
312 + - { id: pkg-cdn-fonts-fontshare, name: "Web font & icon CDNs fontshare", host: api.fontshare.com, url: "https://api.fontshare.com/v2/css?f[]=satoshi@400", cat: developer, provider: google, svc: google, cc: null, imp: 3, tier: 4, checks: [http] }
313 + - { id: pkg-polyfill-cdnjs, name: "Polyfill / JS CDNs cdnjs", host: cdnjs.com, cat: developer, provider: cloudflare, svc: cloudflare, cc: null, imp: 3, tier: 4, checks: [http] }
314 + - { id: pkg-polyfill-jsdelivr-fastly, name: "Polyfill / JS CDNs jsdelivr fastly", host: fastly.jsdelivr.net, url: "https://fastly.jsdelivr.net/npm/lodash@4.17.21/package.json", cat: developer, provider: cloudflare, svc: cloudflare, cc: null, imp: 3, tier: 4, checks: [http] }
315 + - { id: pkg-polyfill-jsdelivr-gcore, name: "Polyfill / JS CDNs jsdelivr gcore", host: gcore.jsdelivr.net, url: "https://gcore.jsdelivr.net/npm/lodash@4.17.21/package.json", cat: developer, provider: cloudflare, svc: cloudflare, cc: null, imp: 3, tier: 4, checks: [http] }
316 + - { id: pkg-polyfill-cdnjs-api, name: "Polyfill / JS CDNs cdnjs api", host: api.cdnjs.com, url: "https://api.cdnjs.com/libraries/jquery?fields=version", cat: developer, provider: cloudflare, svc: cloudflare, cc: null, imp: 3, tier: 4, checks: [http] }
317 + - { id: pkg-polyfill-polyfill-io, name: "Polyfill / JS CDNs polyfill io", host: cdnjs.cloudflare.com, url: "https://cdnjs.cloudflare.com/polyfill/v3/polyfill.min.js?features=fetch", cat: developer, provider: cloudflare, svc: cloudflare, cc: null, imp: 3, tier: 4, checks: [http] }
318 + - { id: pkg-sourcegraph-pkg-swh, name: "Software Heritage / deps.dev / Libraries.io swh", host: archive.softwareheritage.org, cat: developer, provider: openssf, cc: null, imp: 2, tier: 4, checks: [http] }
319 + - { id: pkg-sourcegraph-pkg-depsdev, name: "Software Heritage / deps.dev / Libraries.io depsdev", host: deps.dev, cat: developer, provider: openssf, cc: null, imp: 2, tier: 4, checks: [http] }
320 + - { id: pkg-sourcegraph-pkg-depsdev-api, name: "Software Heritage / deps.dev / Libraries.io depsdev api", host: api.deps.dev, url: "https://api.deps.dev/v3/systems/npm/packages/react", cat: developer, provider: openssf, cc: null, imp: 2, tier: 4, checks: [http] }
321 + - { id: pkg-sourcegraph-pkg-libraries, name: "Software Heritage / deps.dev / Libraries.io libraries", host: libraries.io, cat: developer, provider: openssf, cc: null, imp: 2, tier: 4, checks: [http] }
322 + - { id: pkg-sourcegraph-pkg-ecosyste, name: "Software Heritage / deps.dev / Libraries.io ecosyste", host: packages.ecosyste.ms, url: "https://packages.ecosyste.ms/api/v1/registries", cat: developer, provider: openssf, cc: null, imp: 2, tier: 4, checks: [http] }
323 + - { id: pkg-openssf, name: "OpenSSF / Sigstore / SLSA", host: openssf.org, cat: developer, provider: openssf, cc: US, imp: 3, tier: 4, checks: [http] }
324 + - { id: pkg-openssf-sigstore, name: "OpenSSF / Sigstore / SLSA sigstore", host: sigstore.dev, cat: developer, provider: openssf, cc: US, imp: 3, tier: 4, checks: [http] }
325 + - { id: pkg-openssf-rekor, name: "OpenSSF / Sigstore / SLSA rekor", host: rekor.sigstore.dev, url: "https://rekor.sigstore.dev/api/v1/log", cat: developer, provider: openssf, cc: US, imp: 3, tier: 4, checks: [http] }
326 + - { id: pkg-openssf-fulcio, name: "OpenSSF / Sigstore / SLSA fulcio", host: fulcio.sigstore.dev, cat: developer, provider: openssf, cc: US, imp: 3, tier: 4, checks: [http] }
327 + - { id: pkg-openssf-tuf, name: "OpenSSF / Sigstore / SLSA tuf", host: tuf-repo-cdn.sigstore.dev, url: "https://tuf-repo-cdn.sigstore.dev/root.json", cat: developer, provider: openssf, cc: US, imp: 3, tier: 4, checks: [http] }
328 + - { id: pkg-openssf-slsa, name: "OpenSSF / Sigstore / SLSA slsa", host: slsa.dev, cat: developer, provider: openssf, cc: US, imp: 3, tier: 4, checks: [http] }
329 + - { id: pkg-openssf-scorecard, name: "OpenSSF / Sigstore / SLSA scorecard", host: securityscorecards.dev, cat: developer, provider: openssf, cc: US, imp: 3, tier: 4, checks: [http] }
330 + - { id: pkg-openssf-api-scorecard, name: "OpenSSF / Sigstore / SLSA api scorecard", host: api.securityscorecards.dev, url: "https://api.securityscorecards.dev/projects/github.com/ossf/scorecard", cat: developer, provider: openssf, cc: US, imp: 3, tier: 4, checks: [http] }
331 + - { id: pkg-spdx-spdx, name: "SPDX / CycloneDX / OSV spdx", host: spdx.org, cat: developer, provider: linux-foundation, cc: null, imp: 3, tier: 4, checks: [http] }
332 + - { id: pkg-spdx-cyclonedx, name: "SPDX / CycloneDX / OSV cyclonedx", host: cyclonedx.org, cat: developer, provider: linux-foundation, cc: null, imp: 3, tier: 4, checks: [http] }
333 + - { id: pkg-spdx-osv, name: "SPDX / CycloneDX / OSV osv", host: osv.dev, cat: developer, provider: linux-foundation, cc: null, imp: 3, tier: 4, checks: [http] }
334 + - { id: pkg-spdx-osv-api, name: "SPDX / CycloneDX / OSV osv api", host: api.osv.dev, url: "https://api.osv.dev/v1/vulns/GHSA-jfh8-c2jp-5v3q", cat: developer, provider: linux-foundation, cc: null, imp: 3, tier: 4, checks: [http] }
335 + - { id: pkg-socket-dev, name: "Socket / Phylum / Snyk Advisor", host: socket.dev, cat: developer, provider: socket, cc: US, imp: 2, tier: 4, checks: [http] }
336 + - { id: pkg-socket-dev-snyk-advisor, name: "Socket / Phylum / Snyk Advisor snyk advisor", host: snyk.io, url: "https://snyk.io/advisor/npm-package/react", cat: developer, provider: socket, cc: US, imp: 2, tier: 4, checks: [http] }
337 + - { id: pkg-npm-trends, name: "npm trends / bundlephobia / packagephobia", host: npmtrends.com, cat: developer, provider: npm, svc: npm, cc: null, imp: 1, tier: 4, checks: [http] }
338 + - { id: pkg-npm-trends-bundlephobia, name: "npm trends / bundlephobia / packagephobia bundlephobia", host: bundlephobia.com, cat: developer, provider: npm, svc: npm, cc: null, imp: 1, tier: 4, checks: [http] }
339 + - { id: pkg-npm-trends-packagephobia, name: "npm trends / bundlephobia / packagephobia packagephobia", host: packagephobia.com, cat: developer, provider: npm, svc: npm, cc: null, imp: 1, tier: 4, checks: [http] }
340 + - { id: pkg-npm-trends-npm-stat, name: "npm trends / bundlephobia / packagephobia npm stat", host: npm-stat.com, cat: developer, provider: npm, svc: npm, cc: null, imp: 1, tier: 4, checks: [http] }
341 + - { id: pkg-npm-trends-api-npm-downloads, name: "npm trends / bundlephobia / packagephobia api npm downloads", host: api.npmjs.org, url: "https://api.npmjs.org/downloads/point/last-week/react", cat: developer, provider: npm, svc: npm, cc: null, imp: 1, tier: 4, checks: [http] }
342 + - { id: pkg-npm-cdn-jspm-jspm, name: "jspm / esm.run jspm", host: jspm.org, cat: developer, provider: jspm, cc: null, imp: 2, tier: 4, checks: [http] }
343 + - { id: pkg-npm-cdn-jspm-ga-jspm, name: "jspm / esm.run ga jspm", host: ga.jspm.io, url: "https://ga.jspm.io/npm:react@18.2.0/package.json", cat: developer, provider: jspm, cc: null, imp: 2, tier: 4, checks: [http] }
344 + - { id: pkg-npm-cdn-jspm-esmrun, name: "jspm / esm.run esmrun", host: esm.run, url: "https://esm.run/lodash", cat: developer, provider: jspm, cc: null, imp: 2, tier: 4, checks: [http] }
345 + - { id: pkg-sonatype-ossrh-ossindex, name: "Sonatype OSS Index ossindex", host: ossindex.sonatype.org, cat: developer, provider: sonatype, svc: sonatype, cc: US, imp: 3, tier: 4, checks: [http] }
346 + - { id: pkg-sonatype-ossrh-help, name: "Sonatype OSS Index help centre", host: help.sonatype.com, cat: developer, provider: sonatype, svc: sonatype, cc: US, imp: 3, tier: 4, checks: [http] }
347 + - { id: pkg-sonatype-ossrh-status, name: "Sonatype OSS Index status page", host: status.sonatype.com, cat: developer, provider: sonatype, svc: sonatype, cc: US, imp: 3, tier: 4, checks: [http] }
348 + - { id: pkg-jfrog-io-releases, name: "JFrog releases", host: releases.jfrog.io, url: "https://releases.jfrog.io/artifactory/api/repositories", cat: developer, provider: jfrog, svc: jfrog, cc: IL, imp: 3, tier: 4, checks: [http] }
349 + - { id: pkg-jfrog-io-jfrog-io, name: "JFrog jfrog io", host: jfrog.io, cat: developer, provider: jfrog, svc: jfrog, cc: IL, imp: 3, tier: 4, checks: [http] }
350 + - { id: pkg-jfrog-io-docs, name: "JFrog docs", host: jfrog.com, url: "https://jfrog.com/help/", cat: developer, provider: jfrog, svc: jfrog, cc: IL, imp: 3, tier: 4, checks: [http] }
351 + - { id: pkg-jfrog-io-status, name: "JFrog status page", host: status.jfrog.io, cat: developer, provider: jfrog, svc: jfrog, cc: IL, imp: 3, tier: 4, checks: [http] }
352 + - { id: pkg-cloudsmith-api-api, name: "Cloudsmith API API", host: api.cloudsmith.io, url: "https://api.cloudsmith.io/v1/status/check/basic/", cat: developer, provider: cloudsmith, svc: cloudsmith, cc: GB, imp: 2, tier: 4, checks: [http] }
353 + - { id: pkg-cloudsmith-api-help, name: "Cloudsmith API help centre", host: help.cloudsmith.io, cat: developer, provider: cloudsmith, svc: cloudsmith, cc: GB, imp: 2, tier: 4, checks: [http] }
354 + - { id: pkg-cloudsmith-api-status, name: "Cloudsmith API status page", host: status.cloudsmith.io, cat: developer, provider: cloudsmith, svc: cloudsmith, cc: GB, imp: 2, tier: 4, checks: [http] }
355 + - { id: pkg-gemfury, name: "Gemfury", host: gemfury.com, cat: developer, provider: gemfury, svc: gemfury, cc: US, imp: 2, tier: 4, checks: [http] }
356 + - { id: pkg-gemfury-status, name: "Gemfury status page", host: status.gemfury.com, cat: developer, provider: gemfury, svc: gemfury, cc: US, imp: 2, tier: 4, checks: [http] }
357 + - { id: pkg-verdaccio-verdaccio, name: "Verdaccio / Nexus / Artifactory OSS verdaccio", host: verdaccio.org, cat: developer, provider: verdaccio, cc: null, imp: 1, tier: 4, checks: [http] }
358 + - { id: pkg-inversify-cdn-ajax, name: "Google Hosted Libraries / ajax ajax", host: ajax.googleapis.com, url: "https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js", cat: developer, provider: google, svc: google, cc: US, imp: 3, tier: 4, checks: [http] }
359 + - { id: pkg-inversify-cdn-apis, name: "Google Hosted Libraries / ajax apis", host: apis.google.com, url: "https://apis.google.com/js/api.js", cat: developer, provider: google, svc: google, cc: US, imp: 3, tier: 4, checks: [http] }
360 + - { id: pkg-inversify-cdn-gstatic, name: "Google Hosted Libraries / ajax gstatic", host: www.gstatic.com, url: "https://www.gstatic.com/charts/loader.js", cat: developer, provider: google, svc: google, cc: US, imp: 3, tier: 4, checks: [http] }
361 + - { id: pkg-microsoft-ajax-ajax, name: "Microsoft Ajax CDN / Azure CDN ajax", host: ajax.aspnetcdn.com, url: "https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.7.1.min.js", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 2, tier: 4, checks: [http] }
362 + - { id: pkg-sourceforge-mirrors-master, name: "SourceForge downloads master", host: master.dl.sourceforge.net, cat: developer, provider: sourceforge, cc: US, imp: 2, tier: 4, checks: [http] }
363 + - { id: pkg-apkmirror-apkmirror, name: "APKMirror / APKPure apkmirror", host: www.apkmirror.com, cat: developer, provider: apkmirror, cc: US, imp: 2, tier: 4, checks: [http] }
364 + - { id: pkg-apkmirror-apkpure, name: "APKMirror / APKPure apkpure", host: apkpure.com, cat: developer, provider: apkmirror, cc: US, imp: 2, tier: 4, checks: [http] }
365 + - { id: pkg-aptly-misc-nodesource, name: "Third-party apt/yum repos nodesource", host: deb.nodesource.com, url: "https://deb.nodesource.com/setup_20.x", cat: developer, provider: nodesource, cc: null, imp: 3, tier: 4, checks: [http] }
366 + - { id: pkg-aptly-misc-yarn-deb, name: "Third-party apt/yum repos yarn deb", host: dl.yarnpkg.com, url: "https://dl.yarnpkg.com/debian/pubkey.gpg", cat: developer, provider: nodesource, cc: null, imp: 3, tier: 4, checks: [http] }
367 + - { id: pkg-aptly-misc-pgdg, name: "Third-party apt/yum repos pgdg", host: apt.postgresql.org, url: "https://apt.postgresql.org/pub/repos/apt/dists/bookworm-pgdg/Release", cat: developer, provider: nodesource, cc: null, imp: 3, tier: 4, checks: [http] }
368 + - { id: pkg-aptly-misc-docker-deb, name: "Third-party apt/yum repos docker deb", host: download.docker.com, url: "https://download.docker.com/linux/ubuntu/dists/noble/Release", cat: developer, provider: nodesource, cc: null, imp: 3, tier: 4, checks: [http] }
369 + - { id: pkg-aptly-misc-grafana-apt, name: "Third-party apt/yum repos grafana apt", host: apt.grafana.com, url: "https://apt.grafana.com/gpg.key", cat: developer, provider: nodesource, cc: null, imp: 3, tier: 4, checks: [http] }
370 + - { id: pkg-aptly-misc-gitlab-pkgs, name: "Third-party apt/yum repos gitlab pkgs", host: packages.gitlab.com, cat: developer, provider: nodesource, cc: null, imp: 3, tier: 4, checks: [http] }
371 + - { id: pkg-aptly-misc-github-cli, name: "Third-party apt/yum repos github cli", host: cli.github.com, url: "https://cli.github.com/packages/githubcli-archive-keyring.gpg", cat: developer, provider: nodesource, cc: null, imp: 3, tier: 4, checks: [http] }
372 + - { id: pkg-aptly-misc-tailscale-pkgs, name: "Third-party apt/yum repos tailscale pkgs", host: pkgs.tailscale.com, url: "https://pkgs.tailscale.com/stable/", cat: developer, provider: nodesource, cc: null, imp: 3, tier: 4, checks: [http] }
373 + - { id: pkg-aptly-misc-mongodb-repo, name: "Third-party apt/yum repos mongodb repo", host: repo.mongodb.org, url: "https://repo.mongodb.org/apt/ubuntu/dists/jammy/mongodb-org/7.0/Release", cat: developer, provider: nodesource, cc: null, imp: 3, tier: 4, checks: [http] }
374 + - { id: pkg-aptly-misc-cloudflare-pkg, name: "Third-party apt/yum repos cloudflare pkg", host: pkg.cloudflare.com, url: "https://pkg.cloudflare.com/cloudflare-main.gpg", cat: developer, provider: nodesource, cc: null, imp: 3, tier: 4, checks: [http] }
375 + - { id: pkg-aptly-misc-packages-cloud, name: "Third-party apt/yum repos packages cloud", host: packages.cloud.google.com, url: "https://packages.cloud.google.com/apt/doc/apt-key.gpg", cat: developer, provider: nodesource, cc: null, imp: 3, tier: 4, checks: [http] }
376 + # ───────── CI/CD, code quality, developer tooling & communities (389)
377 + - { id: ci-circleci-status, name: "CircleCI status page", host: status.circleci.com, cat: developer, provider: circleci, svc: circleci, cc: US, imp: 3, tier: 4, checks: [http] }
378 + - { id: ci-circleci-docs, name: "CircleCI docs", host: circleci.com, url: "https://circleci.com/docs/", cat: developer, provider: circleci, svc: circleci, cc: US, imp: 3, tier: 4, checks: [http] }
379 + - { id: ci-circleci-discuss, name: "CircleCI discussion forum", host: discuss.circleci.com, cat: developer, provider: circleci, svc: circleci, cc: US, imp: 3, tier: 4, checks: [http] }
380 + - { id: ci-travis-status, name: "Travis CI status page", host: www.traviscistatus.com, cat: developer, provider: travis-ci, svc: travis-ci, cc: DE, imp: 2, tier: 4, checks: [http] }
381 + - { id: ci-travis-docs, name: "Travis CI docs", host: docs.travis-ci.com, cat: developer, provider: travis-ci, svc: travis-ci, cc: DE, imp: 2, tier: 4, checks: [http] }
382 + - { id: ci-travis-api, name: "Travis CI API", host: api.travis-ci.com, cat: developer, provider: travis-ci, svc: travis-ci, cc: DE, imp: 2, tier: 4, checks: [http] }
383 + - { id: ci-buildkite-status, name: "Buildkite status page", host: www.buildkitestatus.com, cat: developer, provider: buildkite, svc: buildkite, cc: AU, imp: 3, tier: 4, checks: [http] }
384 + - { id: ci-buildkite-docs, name: "Buildkite docs", host: buildkite.com, url: "https://buildkite.com/docs", cat: developer, provider: buildkite, svc: buildkite, cc: AU, imp: 3, tier: 4, checks: [http] }
385 + - { id: ci-buildkite-agent, name: "Buildkite agent", host: agent.buildkite.com, url: "https://agent.buildkite.com/v3", cat: developer, provider: buildkite, svc: buildkite, cc: AU, imp: 3, tier: 4, checks: [http] }
386 + - { id: ci-buildkite-api, name: "Buildkite API", host: api.buildkite.com, url: "https://api.buildkite.com/v2/", cat: developer, provider: buildkite, svc: buildkite, cc: AU, imp: 3, tier: 4, checks: [http] }
387 + - { id: ci-buildkite-forum, name: "Buildkite forum", host: forum.buildkite.community, cat: developer, provider: buildkite, svc: buildkite, cc: AU, imp: 3, tier: 4, checks: [http] }
388 + - { id: ci-jenkins-plugins, name: "Jenkins plugins", host: plugins.jenkins.io, cat: developer, provider: jenkins, cc: US, imp: 3, tier: 4, checks: [http] }
389 + - { id: ci-jenkins-get, name: "Jenkins installer", host: get.jenkins.io, cat: developer, provider: jenkins, cc: US, imp: 3, tier: 4, checks: [http] }
390 + - { id: ci-jenkins-mirrors, name: "Jenkins mirrors", host: mirrors.jenkins.io, cat: developer, provider: jenkins, cc: US, imp: 3, tier: 4, checks: [http] }
391 + - { id: ci-jenkins-community, name: "Jenkins community", host: community.jenkins.io, cat: developer, provider: jenkins, cc: US, imp: 3, tier: 4, checks: [http] }
392 + - { id: ci-jenkins-issues, name: "Jenkins issue tracker", host: issues.jenkins.io, cat: developer, provider: jenkins, cc: US, imp: 3, tier: 4, checks: [http] }
393 + - { id: ci-jenkins-status, name: "Jenkins status page", host: status.jenkins.io, cat: developer, provider: jenkins, cc: US, imp: 3, tier: 4, checks: [http] }
394 + - { id: ci-bitrise, name: "Bitrise", host: bitrise.io, cat: developer, provider: bitrise, svc: bitrise, cc: HU, imp: 2, tier: 4, checks: [http] }
395 + - { id: ci-bitrise-devcenter, name: "Bitrise devcenter", host: devcenter.bitrise.io, cat: developer, provider: bitrise, svc: bitrise, cc: HU, imp: 2, tier: 4, checks: [http] }
396 + - { id: ci-bitrise-status, name: "Bitrise status page", host: status.bitrise.io, cat: developer, provider: bitrise, svc: bitrise, cc: HU, imp: 2, tier: 4, checks: [http] }
397 + - { id: ci-bitrise-api, name: "Bitrise API", host: api.bitrise.io, url: "https://api.bitrise.io/v0.1/", cat: developer, provider: bitrise, svc: bitrise, cc: HU, imp: 2, tier: 4, checks: [http] }
398 + - { id: ci-bitrise-discuss, name: "Bitrise discussion forum", host: discuss.bitrise.io, cat: developer, provider: bitrise, svc: bitrise, cc: HU, imp: 2, tier: 4, checks: [http] }
399 + - { id: ci-codemagic, name: "Codemagic", host: codemagic.io, cat: developer, provider: codemagic, cc: EE, imp: 2, tier: 4, checks: [http] }
400 + - { id: ci-codemagic-docs, name: "Codemagic docs", host: docs.codemagic.io, cat: developer, provider: codemagic, cc: EE, imp: 2, tier: 4, checks: [http] }
401 + - { id: ci-codemagic-status, name: "Codemagic status page", host: status.codemagic.io, cat: developer, provider: codemagic, cc: EE, imp: 2, tier: 4, checks: [http] }
402 + - { id: ci-codemagic-api, name: "Codemagic API", host: api.codemagic.io, cat: developer, provider: codemagic, cc: EE, imp: 2, tier: 4, checks: [http] }
403 + - { id: ci-semaphore, name: "Semaphore CI", host: semaphoreci.com, cat: developer, provider: semaphoreci, svc: semaphoreci, cc: RS, imp: 2, tier: 4, checks: [http] }
404 + - { id: ci-semaphore-docs, name: "Semaphore CI docs", host: docs.semaphoreci.com, cat: developer, provider: semaphoreci, svc: semaphoreci, cc: RS, imp: 2, tier: 4, checks: [http] }
405 + - { id: ci-semaphore-status, name: "Semaphore CI status page", host: status.semaphoreci.com, cat: developer, provider: semaphoreci, svc: semaphoreci, cc: RS, imp: 2, tier: 4, checks: [http] }
406 + - { id: ci-harness, name: "Harness", host: www.harness.io, cat: developer, provider: harness, svc: harness, cc: US, imp: 3, tier: 4, checks: [http] }
407 + - { id: ci-harness-developer, name: "Harness developer portal", host: developer.harness.io, cat: developer, provider: harness, svc: harness, cc: US, imp: 3, tier: 4, checks: [http] }
408 + - { id: ci-harness-status, name: "Harness status page", host: status.harness.io, cat: developer, provider: harness, svc: harness, cc: US, imp: 3, tier: 4, checks: [http] }
409 + - { id: ci-harness-app, name: "Harness app", host: app.harness.io, cat: developer, provider: harness, svc: harness, cc: US, imp: 3, tier: 4, checks: [http] }
410 + - { id: ci-argo-argoproj, name: "Argo Project argoproj", host: argoproj.github.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
411 + - { id: ci-argo-argo-cd, name: "Argo Project argo cd", host: argo-cd.readthedocs.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
412 + - { id: ci-argo-argo-wf, name: "Argo Project argo wf", host: argo-workflows.readthedocs.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
413 + - { id: ci-argo-akuity, name: "Argo Project akuity", host: akuity.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
414 + - { id: ci-flux, name: "Flux CD", host: fluxcd.io, cat: developer, provider: cncf, cc: null, imp: 2, tier: 4, checks: [http] }
415 + - { id: ci-spinnaker, name: "Spinnaker", host: spinnaker.io, cat: developer, provider: cdf, cc: US, imp: 2, tier: 4, checks: [http] }
416 + - { id: ci-tekton, name: "Tekton", host: tekton.dev, cat: developer, provider: cdf, cc: null, imp: 2, tier: 4, checks: [http] }
417 + - { id: ci-octopus, name: "Octopus Deploy", host: octopus.com, cat: developer, provider: octopus, svc: octopus, cc: AU, imp: 2, tier: 4, checks: [http] }
418 + - { id: ci-octopus-status, name: "Octopus Deploy status page", host: status.octopus.com, cat: developer, provider: octopus, svc: octopus, cc: AU, imp: 2, tier: 4, checks: [http] }
419 + - { id: ci-octopus-download, name: "Octopus Deploy downloads", host: download.octopusdeploy.com, cat: developer, provider: octopus, svc: octopus, cc: AU, imp: 2, tier: 4, checks: [http] }
420 + - { id: ci-jetbrains-download, name: "JetBrains downloads", host: download.jetbrains.com, url: "https://download.jetbrains.com/toolbox/", cat: developer, provider: jetbrains, cc: CZ, imp: 4, tier: 3, checks: [http, dns] }
421 + - { id: ci-jetbrains-data, name: "JetBrains data", host: data.services.jetbrains.com, url: "https://data.services.jetbrains.com/products/releases?code=IIU&latest=true&type=release", cat: developer, provider: jetbrains, cc: CZ, imp: 4, tier: 3, checks: [http, dns] }
422 + - { id: ci-jetbrains-status, name: "JetBrains status page", host: status.jetbrains.com, cat: developer, provider: jetbrains, cc: CZ, imp: 4, tier: 3, checks: [http] }
423 + - { id: ci-jetbrains-blog, name: "JetBrains blog", host: blog.jetbrains.com, cat: developer, provider: jetbrains, cc: CZ, imp: 4, tier: 3, checks: [http] }
424 + - { id: ci-jetbrains-youtrack, name: "JetBrains youtrack", host: youtrack.jetbrains.com, cat: developer, provider: jetbrains, cc: CZ, imp: 4, tier: 3, checks: [http] }
425 + - { id: ci-jetbrains-hub, name: "JetBrains hub", host: hub.jetbrains.com, cat: developer, provider: jetbrains, cc: CZ, imp: 4, tier: 3, checks: [http] }
426 + - { id: ci-jetbrains-packages, name: "JetBrains packages", host: packages.jetbrains.team, cat: developer, provider: jetbrains, cc: CZ, imp: 4, tier: 3, checks: [http] }
427 + - { id: ci-jetbrains-resources, name: "JetBrains resources", host: resources.jetbrains.com, cat: developer, provider: jetbrains, cc: CZ, imp: 4, tier: 3, checks: [http] }
428 + - { id: ci-jetbrains-plugins-api, name: "JetBrains plugins api", host: plugins.jetbrains.com, url: "https://plugins.jetbrains.com/api/plugins/7495", cat: developer, provider: jetbrains, cc: CZ, imp: 4, tier: 3, checks: [http, dns] }
429 + - { id: ci-teamcity-teamcity, name: "TeamCity / Space teamcity", host: www.jetbrains.com, url: "https://www.jetbrains.com/teamcity/", cat: developer, provider: jetbrains, cc: CZ, imp: 2, tier: 4, checks: [http] }
430 + - { id: ci-gitlab-ci-forum, name: "GitLab CI hosts forum", host: forum.gitlab.com, cat: developer, provider: gitlab, svc: gitlab, cc: US, imp: 3, tier: 4, checks: [http] }
431 + - { id: ci-gitlab-ci-handbook, name: "GitLab CI hosts handbook", host: handbook.gitlab.com, cat: developer, provider: gitlab, svc: gitlab, cc: US, imp: 3, tier: 4, checks: [http] }
432 + - { id: ci-gitlab-ci-customers, name: "GitLab CI hosts customers", host: customers.gitlab.com, cat: developer, provider: gitlab, svc: gitlab, cc: US, imp: 3, tier: 4, checks: [http] }
433 + - { id: ci-github-actions-status-api, name: "GitHub Actions / infra hosts status api", host: www.githubstatus.com, url: "https://www.githubstatus.com/api/v2/summary.json", cat: developer, provider: github, svc: github, cc: US, imp: 4, tier: 3, checks: [http, dns] }
434 + - { id: ci-github-actions-avatars, name: "GitHub Actions / infra hosts avatars", host: avatars.githubusercontent.com, cat: developer, provider: github, svc: github, cc: US, imp: 4, tier: 3, checks: [http] }
435 + - { id: ci-github-actions-camo, name: "GitHub Actions / infra hosts camo", host: camo.githubusercontent.com, cat: developer, provider: github, svc: github, cc: US, imp: 4, tier: 3, checks: [http] }
436 + - { id: ci-github-actions-user-images, name: "GitHub Actions / infra hosts user images", host: user-images.githubusercontent.com, cat: developer, provider: github, svc: github, cc: US, imp: 4, tier: 3, checks: [http] }
437 + - { id: ci-github-actions-skills, name: "GitHub Actions / infra hosts skills", host: skills.github.com, cat: developer, provider: github, svc: github, cc: US, imp: 4, tier: 3, checks: [http] }
438 + - { id: ci-github-actions-resources, name: "GitHub Actions / infra hosts resources", host: resources.github.com, cat: developer, provider: github, svc: github, cc: US, imp: 4, tier: 3, checks: [http] }
439 + - { id: ci-github-actions-blog, name: "GitHub Actions / infra hosts blog", host: github.blog, cat: developer, provider: github, svc: github, cc: US, imp: 4, tier: 3, checks: [http] }
440 + - { id: ci-bitbucket-pipelines-api, name: "Bitbucket / Atlassian dev API", host: api.bitbucket.org, url: "https://api.bitbucket.org/2.0/repositories/atlassian", cat: developer, provider: atlassian, svc: atlassian, cc: AU, imp: 3, tier: 4, checks: [http] }
441 + - { id: ci-bitbucket-pipelines-developer, name: "Bitbucket / Atlassian dev developer portal", host: developer.atlassian.com, cat: developer, provider: atlassian, svc: atlassian, cc: AU, imp: 3, tier: 4, checks: [http] }
442 + - { id: ci-bitbucket-pipelines-community, name: "Bitbucket / Atlassian dev community", host: community.atlassian.com, cat: developer, provider: atlassian, svc: atlassian, cc: AU, imp: 3, tier: 4, checks: [http] }
443 + - { id: ci-bitbucket-pipelines-marketplace, name: "Bitbucket / Atlassian dev marketplace", host: marketplace.atlassian.com, cat: developer, provider: atlassian, svc: atlassian, cc: AU, imp: 3, tier: 4, checks: [http] }
444 + - { id: ci-bitbucket-pipelines-support, name: "Bitbucket / Atlassian dev support", host: support.atlassian.com, cat: developer, provider: atlassian, svc: atlassian, cc: AU, imp: 3, tier: 4, checks: [http] }
445 + - { id: ci-bitbucket-pipelines-status, name: "Bitbucket / Atlassian dev status page", host: status.atlassian.com, cat: developer, provider: atlassian, svc: atlassian, cc: AU, imp: 3, tier: 4, checks: [http] }
446 + - { id: ci-bitbucket-pipelines-confluence, name: "Bitbucket / Atlassian dev confluence", host: confluence.atlassian.com, url: "https://confluence.atlassian.com/", cat: developer, provider: atlassian, svc: atlassian, cc: AU, imp: 3, tier: 4, checks: [http] }
447 + - { id: ci-bitbucket-pipelines-jira-status, name: "Bitbucket / Atlassian dev jira status", host: jira-software.status.atlassian.com, url: "https://jira-software.status.atlassian.com/api/v2/summary.json", cat: developer, provider: atlassian, svc: atlassian, cc: AU, imp: 3, tier: 4, checks: [http] }
448 + - { id: ci-bitbucket-pipelines-bitbucket-status, name: "Bitbucket / Atlassian dev bitbucket status", host: bitbucket.status.atlassian.com, url: "https://bitbucket.status.atlassian.com/api/v2/summary.json", cat: developer, provider: atlassian, svc: atlassian, cc: AU, imp: 3, tier: 4, checks: [http] }
449 + - { id: ci-bitbucket-pipelines-confluence-status, name: "Bitbucket / Atlassian dev confluence status", host: confluence.status.atlassian.com, url: "https://confluence.status.atlassian.com/api/v2/summary.json", cat: developer, provider: atlassian, svc: atlassian, cc: AU, imp: 3, tier: 4, checks: [http] }
450 + - { id: ci-bitbucket-pipelines-trello-status, name: "Bitbucket / Atlassian dev trello status", host: trello.status.atlassian.com, url: "https://trello.status.atlassian.com/api/v2/summary.json", cat: developer, provider: atlassian, svc: atlassian, cc: AU, imp: 3, tier: 4, checks: [http] }
451 + - { id: ci-bitbucket-pipelines-id, name: "Bitbucket / Atlassian dev identity", host: id.atlassian.com, cat: developer, provider: atlassian, svc: atlassian, cc: AU, imp: 3, tier: 4, checks: [http] }
452 + - { id: ci-azure-pipelines-visualstudio, name: "Azure Pipelines / Visual Studio visualstudio", host: visualstudio.microsoft.com, cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 3, tier: 4, checks: [http] }
453 + - { id: ci-azure-pipelines-devblogs, name: "Azure Pipelines / Visual Studio devblogs", host: devblogs.microsoft.com, cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 3, tier: 4, checks: [http] }
454 + - { id: ci-azure-pipelines-aka, name: "Azure Pipelines / Visual Studio aka", host: aka.ms, url: "https://aka.ms/vs", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 3, tier: 4, checks: [http] }
455 + - { id: ci-google-cloudbuild-cloud, name: "Google Cloud Build / Skaffold cloud", host: cloud.google.com, url: "https://cloud.google.com/build", cat: developer, provider: google, svc: google, cc: US, imp: 3, tier: 4, checks: [http] }
456 + - { id: ci-google-cloudbuild-skaffold, name: "Google Cloud Build / Skaffold skaffold", host: skaffold.dev, cat: developer, provider: google, svc: google, cc: US, imp: 3, tier: 4, checks: [http] }
457 + - { id: ci-aws-codebuild-codebuild, name: "AWS developer tools codebuild", host: aws.amazon.com, url: "https://aws.amazon.com/codebuild/", cat: developer, provider: aws, svc: aws, cc: US, imp: 3, tier: 4, checks: [http] }
458 + - { id: ci-aws-codebuild-codecatalyst, name: "AWS developer tools codecatalyst", host: codecatalyst.aws, cat: developer, provider: aws, svc: aws, cc: US, imp: 3, tier: 4, checks: [http] }
459 + - { id: ci-aws-codebuild-sdk, name: "AWS developer tools SDK", host: docs.aws.amazon.com, url: "https://docs.aws.amazon.com/sdk-for-javascript/", cat: developer, provider: aws, svc: aws, cc: US, imp: 3, tier: 4, checks: [http] }
460 + - { id: ci-aws-codebuild-builders, name: "AWS developer tools builders", host: community.aws, cat: developer, provider: aws, svc: aws, cc: US, imp: 3, tier: 4, checks: [http] }
461 + - { id: ci-drone-drone, name: "Drone / Woodpecker / Concourse drone", host: www.drone.io, cat: developer, provider: harness, svc: harness, cc: null, imp: 2, tier: 4, checks: [http] }
462 + - { id: ci-drone-woodpecker, name: "Drone / Woodpecker / Concourse woodpecker", host: woodpecker-ci.org, cat: developer, provider: harness, svc: harness, cc: null, imp: 2, tier: 4, checks: [http] }
463 + - { id: ci-drone-concourse, name: "Drone / Woodpecker / Concourse concourse", host: concourse-ci.org, cat: developer, provider: harness, svc: harness, cc: null, imp: 2, tier: 4, checks: [http] }
464 + - { id: ci-gocd-gocd, name: "GoCD / Bamboo / TeamCity docs gocd", host: www.gocd.org, cat: developer, provider: thoughtworks, cc: null, imp: 1, tier: 4, checks: [http] }
465 + - { id: ci-appveyor, name: "AppVeyor", host: www.appveyor.com, cat: developer, provider: appveyor, cc: CA, imp: 2, tier: 4, checks: [http] }
466 + - { id: ci-appveyor-ci, name: "AppVeyor ci", host: ci.appveyor.com, cat: developer, provider: appveyor, cc: CA, imp: 2, tier: 4, checks: [http] }
467 + - { id: ci-appveyor-status, name: "AppVeyor status page", host: appveyor.statuspage.io, cat: developer, provider: appveyor, cc: CA, imp: 2, tier: 4, checks: [http] }
468 + - { id: ci-codefresh, name: "Codefresh", host: codefresh.io, cat: developer, provider: octopus, svc: octopus, cc: US, imp: 2, tier: 4, checks: [http] }
469 + - { id: ci-codefresh-status, name: "Codefresh status page", host: status.codefresh.io, cat: developer, provider: octopus, svc: octopus, cc: US, imp: 2, tier: 4, checks: [http] }
470 + - { id: ci-earthly, name: "Earthly / Dagger / Depot", host: earthly.dev, cat: developer, provider: dagger, cc: null, imp: 2, tier: 4, checks: [http] }
471 + - { id: ci-earthly-dagger, name: "Earthly / Dagger / Depot dagger", host: dagger.io, cat: developer, provider: dagger, cc: null, imp: 2, tier: 4, checks: [http] }
472 + - { id: ci-earthly-depot, name: "Earthly / Dagger / Depot depot", host: depot.dev, cat: developer, provider: dagger, cc: null, imp: 2, tier: 4, checks: [http] }
473 + - { id: ci-earthly-depot-status, name: "Earthly / Dagger / Depot depot status", host: status.depot.dev, cat: developer, provider: dagger, cc: null, imp: 2, tier: 4, checks: [http] }
474 + - { id: ci-nx, name: "Nx / Turborepo / Bazel", host: nx.dev, cat: developer, provider: nrwl, cc: US, imp: 2, tier: 4, checks: [http] }
475 + - { id: ci-nx-nx-cloud, name: "Nx / Turborepo / Bazel nx cloud", host: cloud.nx.app, cat: developer, provider: nrwl, cc: US, imp: 2, tier: 4, checks: [http] }
476 + - { id: ci-nx-turbo, name: "Nx / Turborepo / Bazel turbo", host: turbo.build, cat: developer, provider: nrwl, cc: US, imp: 2, tier: 4, checks: [http] }
477 + - { id: ci-nx-bazel, name: "Nx / Turborepo / Bazel bazel", host: bazel.build, cat: developer, provider: nrwl, cc: US, imp: 2, tier: 4, checks: [http] }
478 + - { id: ci-nx-gradle-enterprise, name: "Nx / Turborepo / Bazel gradle enterprise", host: gradle.com, cat: developer, provider: nrwl, cc: US, imp: 2, tier: 4, checks: [http] }
479 + - { id: ci-expo, name: "Expo", host: expo.dev, cat: developer, provider: expo, svc: expo, cc: US, imp: 3, tier: 4, checks: [http] }
480 + - { id: ci-expo-docs, name: "Expo docs", host: docs.expo.dev, cat: developer, provider: expo, svc: expo, cc: US, imp: 3, tier: 4, checks: [http] }
481 + - { id: ci-expo-status, name: "Expo status page", host: status.expo.dev, cat: developer, provider: expo, svc: expo, cc: US, imp: 3, tier: 4, checks: [http] }
482 + - { id: ci-expo-api, name: "Expo API", host: api.expo.dev, cat: developer, provider: expo, svc: expo, cc: US, imp: 3, tier: 4, checks: [http] }
483 + - { id: ci-expo-exp, name: "Expo exp", host: exp.host, cat: developer, provider: expo, svc: expo, cc: US, imp: 3, tier: 4, checks: [http] }
484 + - { id: ci-expo-snack, name: "Expo snack", host: snack.expo.dev, cat: developer, provider: expo, svc: expo, cc: US, imp: 3, tier: 4, checks: [http] }
485 + - { id: ci-ionic, name: "Ionic / Capacitor", host: ionicframework.com, cat: developer, provider: ionic, cc: US, imp: 2, tier: 4, checks: [http] }
486 + - { id: ci-ionic-capacitor, name: "Ionic / Capacitor capacitor", host: capacitorjs.com, cat: developer, provider: ionic, cc: US, imp: 2, tier: 4, checks: [http] }
487 + - { id: ci-ionic-status, name: "Ionic / Capacitor status page", host: status.ionic.io, cat: developer, provider: ionic, cc: US, imp: 2, tier: 4, checks: [http] }
488 + - { id: ci-ionic-forum, name: "Ionic / Capacitor forum", host: forum.ionicframework.com, cat: developer, provider: ionic, cc: US, imp: 2, tier: 4, checks: [http] }
489 + - { id: ci-fastlane-fastlane, name: "fastlane / Tuist / Xcode Cloud fastlane", host: fastlane.tools, cat: developer, provider: google, svc: google, cc: null, imp: 2, tier: 4, checks: [http] }
490 + - { id: ci-fastlane-docs-fastlane, name: "fastlane / Tuist / Xcode Cloud docs fastlane", host: docs.fastlane.tools, cat: developer, provider: google, svc: google, cc: null, imp: 2, tier: 4, checks: [http] }
491 + - { id: ci-fastlane-tuist, name: "fastlane / Tuist / Xcode Cloud tuist", host: tuist.io, cat: developer, provider: google, svc: google, cc: null, imp: 2, tier: 4, checks: [http] }
492 + - { id: ci-app-store-connect-api, name: "App Store Connect API API", host: api.appstoreconnect.apple.com, url: "https://api.appstoreconnect.apple.com/v1/apps", cat: developer, provider: apple, svc: apple, cc: US, imp: 4, tier: 3, checks: [http, dns] }
493 + - { id: ci-app-store-connect-status, name: "App Store Connect API status page", host: developer.apple.com, url: "https://developer.apple.com/system-status/", cat: developer, provider: apple, svc: apple, cc: US, imp: 4, tier: 3, checks: [http, dns] }
494 + - { id: ci-app-store-connect-system-status-data, name: "App Store Connect API system status data", host: www.apple.com, url: "https://www.apple.com/support/systemstatus/data/system_status_en_US.js", cat: developer, provider: apple, svc: apple, cc: US, imp: 4, tier: 3, checks: [http, dns] }
495 + - { id: ci-app-store-connect-testflight, name: "App Store Connect API testflight", host: testflight.apple.com, cat: developer, provider: apple, svc: apple, cc: US, imp: 4, tier: 3, checks: [http] }
496 + - { id: ci-app-store-connect-appstoreconnect, name: "App Store Connect API appstoreconnect", host: appstoreconnect.apple.com, cat: developer, provider: apple, svc: apple, cc: US, imp: 4, tier: 3, checks: [http] }
497 + - { id: ci-google-play-console-play-console, name: "Google Play developer play console", host: play.google.com, url: "https://play.google.com/console/about/", cat: developer, provider: google, svc: google, cc: US, imp: 3, tier: 4, checks: [http] }
498 + - { id: ci-google-play-console-android-publisher, name: "Google Play developer android publisher", host: androidpublisher.googleapis.com, url: "https://androidpublisher.googleapis.com/$discovery/rest?version=v3", cat: developer, provider: google, svc: google, cc: US, imp: 3, tier: 4, checks: [http] }
499 + - { id: ci-google-play-console-developers-android, name: "Google Play developer developers android", host: developer.android.com, url: "https://developer.android.com/studio", cat: developer, provider: google, svc: google, cc: US, imp: 3, tier: 4, checks: [http] }
500 + - { id: ci-browserstack, name: "BrowserStack", host: www.browserstack.com, cat: developer, provider: browserstack, svc: browserstack, cc: IN, imp: 3, tier: 4, checks: [http] }
501 + - { id: ci-browserstack-status, name: "BrowserStack status page", host: status.browserstack.com, cat: developer, provider: browserstack, svc: browserstack, cc: IN, imp: 3, tier: 4, checks: [http] }
502 + - { id: ci-browserstack-api, name: "BrowserStack API", host: api.browserstack.com, cat: developer, provider: browserstack, svc: browserstack, cc: IN, imp: 3, tier: 4, checks: [http] }
503 + - { id: ci-browserstack-hub, name: "BrowserStack hub", host: hub.browserstack.com, cat: developer, provider: browserstack, svc: browserstack, cc: IN, imp: 3, tier: 4, checks: [http] }
504 + - { id: ci-browserstack-automate, name: "BrowserStack automate", host: automate.browserstack.com, cat: developer, provider: browserstack, svc: browserstack, cc: IN, imp: 3, tier: 4, checks: [http] }
505 + - { id: ci-saucelabs, name: "Sauce Labs", host: saucelabs.com, cat: developer, provider: saucelabs, svc: saucelabs, cc: US, imp: 3, tier: 4, checks: [http] }
506 + - { id: ci-saucelabs-status, name: "Sauce Labs status page", host: status.saucelabs.com, cat: developer, provider: saucelabs, svc: saucelabs, cc: US, imp: 3, tier: 4, checks: [http] }
507 + - { id: ci-saucelabs-docs, name: "Sauce Labs docs", host: docs.saucelabs.com, cat: developer, provider: saucelabs, svc: saucelabs, cc: US, imp: 3, tier: 4, checks: [http] }
508 + - { id: ci-saucelabs-ondemand, name: "Sauce Labs ondemand", host: ondemand.us-west-1.saucelabs.com, cat: developer, provider: saucelabs, svc: saucelabs, cc: US, imp: 3, tier: 4, checks: [http] }
509 + - { id: ci-saucelabs-api, name: "Sauce Labs API", host: api.us-west-1.saucelabs.com, cat: developer, provider: saucelabs, svc: saucelabs, cc: US, imp: 3, tier: 4, checks: [http] }
510 + - { id: ci-lambdatest, name: "LambdaTest", host: www.lambdatest.com, cat: developer, provider: lambdatest, cc: US, imp: 2, tier: 4, checks: [http] }
511 + - { id: ci-lambdatest-status, name: "LambdaTest status page", host: status.lambdatest.com, cat: developer, provider: lambdatest, cc: US, imp: 2, tier: 4, checks: [http] }
512 + - { id: ci-lambdatest-hub, name: "LambdaTest hub", host: hub.lambdatest.com, cat: developer, provider: lambdatest, cc: US, imp: 2, tier: 4, checks: [http] }
513 + - { id: ci-lambdatest-api, name: "LambdaTest API", host: api.lambdatest.com, cat: developer, provider: lambdatest, cc: US, imp: 2, tier: 4, checks: [http] }
514 + - { id: ci-cypress, name: "Cypress", host: www.cypress.io, cat: developer, provider: cypress, cc: US, imp: 3, tier: 4, checks: [http] }
515 + - { id: ci-cypress-docs, name: "Cypress docs", host: docs.cypress.io, cat: developer, provider: cypress, cc: US, imp: 3, tier: 4, checks: [http] }
516 + - { id: ci-cypress-status, name: "Cypress status page", host: status.cypress.io, cat: developer, provider: cypress, cc: US, imp: 3, tier: 4, checks: [http] }
517 + - { id: ci-cypress-download, name: "Cypress downloads", host: download.cypress.io, url: "https://download.cypress.io/desktop.json", cat: developer, provider: cypress, cc: US, imp: 3, tier: 4, checks: [http] }
518 + - { id: ci-cypress-cloud, name: "Cypress cloud", host: cloud.cypress.io, cat: developer, provider: cypress, cc: US, imp: 3, tier: 4, checks: [http] }
519 + - { id: ci-playwright, name: "Playwright", host: playwright.dev, cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 3, tier: 4, checks: [http] }
520 + - { id: ci-selenium, name: "Selenium", host: www.selenium.dev, cat: developer, provider: sfc, cc: null, imp: 2, tier: 4, checks: [http] }
521 + - { id: ci-applitools, name: "Applitools / Percy / Chromatic", host: applitools.com, cat: developer, provider: applitools, svc: applitools, cc: US, imp: 2, tier: 4, checks: [http] }
522 + - { id: ci-applitools-status, name: "Applitools / Percy / Chromatic status page", host: status.applitools.com, cat: developer, provider: applitools, svc: applitools, cc: US, imp: 2, tier: 4, checks: [http] }
523 + - { id: ci-applitools-percy, name: "Applitools / Percy / Chromatic percy", host: percy.io, cat: developer, provider: applitools, svc: applitools, cc: US, imp: 2, tier: 4, checks: [http] }
524 + - { id: ci-applitools-percy-status, name: "Applitools / Percy / Chromatic percy status", host: status.percy.io, cat: developer, provider: applitools, svc: applitools, cc: US, imp: 2, tier: 4, checks: [http] }
525 + - { id: ci-applitools-chromatic, name: "Applitools / Percy / Chromatic chromatic", host: www.chromatic.com, cat: developer, provider: applitools, svc: applitools, cc: US, imp: 2, tier: 4, checks: [http] }
526 + - { id: ci-applitools-chromatic-status, name: "Applitools / Percy / Chromatic chromatic status", host: status.chromatic.com, cat: developer, provider: applitools, svc: applitools, cc: US, imp: 2, tier: 4, checks: [http] }
527 + - { id: ci-applitools-storybook, name: "Applitools / Percy / Chromatic storybook", host: storybook.js.org, cat: developer, provider: applitools, svc: applitools, cc: US, imp: 2, tier: 4, checks: [http] }
528 + - { id: ci-mabl, name: "mabl / Testim / Katalon / Tricentis", host: www.mabl.com, cat: developer, provider: mabl, cc: US, imp: 2, tier: 4, checks: [http] }
529 + - { id: ci-mabl-testim, name: "mabl / Testim / Katalon / Tricentis testim", host: www.testim.io, cat: developer, provider: mabl, cc: US, imp: 2, tier: 4, checks: [http] }
530 + - { id: ci-mabl-katalon, name: "mabl / Testim / Katalon / Tricentis katalon", host: katalon.com, cat: developer, provider: mabl, cc: US, imp: 2, tier: 4, checks: [http] }
531 + - { id: ci-mabl-tricentis, name: "mabl / Testim / Katalon / Tricentis tricentis", host: www.tricentis.com, cat: developer, provider: mabl, cc: US, imp: 2, tier: 4, checks: [http] }
532 + - { id: ci-postman-status-status, name: "Postman hosts status page", host: status.postman.com, cat: developer, provider: postman, svc: postman, cc: US, imp: 3, tier: 4, checks: [http] }
533 + - { id: ci-postman-status-learning, name: "Postman hosts learning", host: learning.postman.com, cat: developer, provider: postman, svc: postman, cc: US, imp: 3, tier: 4, checks: [http] }
534 + - { id: ci-postman-status-api, name: "Postman hosts API", host: api.getpostman.com, url: "https://api.getpostman.com/", cat: developer, provider: postman, svc: postman, cc: US, imp: 3, tier: 4, checks: [http] }
535 + - { id: ci-postman-status-community, name: "Postman hosts community", host: community.postman.com, cat: developer, provider: postman, svc: postman, cc: US, imp: 3, tier: 4, checks: [http] }
536 + - { id: ci-postman-status-go, name: "Postman hosts go", host: go.postman.co, cat: developer, provider: postman, svc: postman, cc: US, imp: 3, tier: 4, checks: [http] }
537 + - { id: ci-postman-status-dl, name: "Postman hosts downloads", host: dl.pstmn.io, cat: developer, provider: postman, svc: postman, cc: US, imp: 3, tier: 4, checks: [http] }
538 + - { id: ci-insomnia, name: "Insomnia / Kong", host: insomnia.rest, cat: developer, provider: kong, svc: kong, cc: US, imp: 2, tier: 4, checks: [http] }
539 + - { id: ci-insomnia-docs, name: "Insomnia / Kong docs", host: docs.insomnia.rest, cat: developer, provider: kong, svc: kong, cc: US, imp: 2, tier: 4, checks: [http] }
540 + - { id: ci-insomnia-kong, name: "Insomnia / Kong kong", host: konghq.com, cat: developer, provider: kong, svc: kong, cc: US, imp: 2, tier: 4, checks: [http] }
541 + - { id: ci-insomnia-kong-docs, name: "Insomnia / Kong kong docs", host: docs.konghq.com, cat: developer, provider: kong, svc: kong, cc: US, imp: 2, tier: 4, checks: [http] }
542 + - { id: ci-insomnia-kong-status, name: "Insomnia / Kong kong status", host: status.konghq.com, cat: developer, provider: kong, svc: kong, cc: US, imp: 2, tier: 4, checks: [http] }
543 + - { id: ci-insomnia-kong-cloud, name: "Insomnia / Kong kong cloud", host: cloud.konghq.com, cat: developer, provider: kong, svc: kong, cc: US, imp: 2, tier: 4, checks: [http] }
544 + - { id: ci-bruno, name: "Bruno / Hoppscotch / HTTPie", host: usebruno.com, cat: developer, provider: bruno, cc: null, imp: 1, tier: 4, checks: [http] }
545 + - { id: ci-bruno-hoppscotch, name: "Bruno / Hoppscotch / HTTPie hoppscotch", host: hoppscotch.io, cat: developer, provider: bruno, cc: null, imp: 1, tier: 4, checks: [http] }
546 + - { id: ci-bruno-hoppscotch-docs, name: "Bruno / Hoppscotch / HTTPie hoppscotch docs", host: docs.hoppscotch.io, cat: developer, provider: bruno, cc: null, imp: 1, tier: 4, checks: [http] }
547 + - { id: ci-bruno-httpie, name: "Bruno / Hoppscotch / HTTPie httpie", host: httpie.io, cat: developer, provider: bruno, cc: null, imp: 1, tier: 4, checks: [http] }
548 + - { id: ci-smartbear, name: "SmartBear", host: smartbear.com, cat: developer, provider: smartbear, cc: US, imp: 2, tier: 4, checks: [http] }
549 + - { id: ci-smartbear-status, name: "SmartBear status page", host: status.smartbear.com, cat: developer, provider: smartbear, cc: US, imp: 2, tier: 4, checks: [http] }
550 + - { id: ci-smartbear-support, name: "SmartBear support", host: support.smartbear.com, cat: developer, provider: smartbear, cc: US, imp: 2, tier: 4, checks: [http] }
551 + - { id: ci-smartbear-swaggerhub, name: "SmartBear swaggerhub", host: app.swaggerhub.com, url: "https://app.swaggerhub.com/apis", cat: developer, provider: smartbear, cc: US, imp: 2, tier: 4, checks: [http] }
552 + - { id: ci-smartbear-swagger-editor, name: "SmartBear swagger editor", host: editor.swagger.io, cat: developer, provider: smartbear, cc: US, imp: 2, tier: 4, checks: [http] }
553 + - { id: ci-smartbear-swagger-petstore, name: "SmartBear swagger petstore", host: petstore.swagger.io, url: "https://petstore.swagger.io/v2/swagger.json", cat: developer, provider: smartbear, cc: US, imp: 2, tier: 4, checks: [http] }
554 + - { id: ci-stoplight, name: "Stoplight", host: stoplight.io, cat: developer, provider: stoplight, svc: stoplight, cc: US, imp: 2, tier: 4, checks: [http] }
555 + - { id: ci-stoplight-status, name: "Stoplight status page", host: status.stoplight.io, cat: developer, provider: stoplight, svc: stoplight, cc: US, imp: 2, tier: 4, checks: [http] }
556 + - { id: ci-stoplight-docs, name: "Stoplight docs", host: docs.stoplight.io, cat: developer, provider: stoplight, svc: stoplight, cc: US, imp: 2, tier: 4, checks: [http] }
557 + - { id: ci-readme, name: "ReadMe", host: readme.com, cat: developer, provider: readme, svc: readme, cc: US, imp: 2, tier: 4, checks: [http] }
558 + - { id: ci-readme-docs, name: "ReadMe docs", host: docs.readme.com, cat: developer, provider: readme, svc: readme, cc: US, imp: 2, tier: 4, checks: [http] }
559 + - { id: ci-readme-status, name: "ReadMe status page", host: www.readmestatus.com, cat: developer, provider: readme, svc: readme, cc: US, imp: 2, tier: 4, checks: [http] }
560 + - { id: ci-gitbook, name: "GitBook", host: www.gitbook.com, cat: developer, provider: gitbook, svc: gitbook, cc: FR, imp: 2, tier: 4, checks: [http] }
561 + - { id: ci-gitbook-docs, name: "GitBook docs", host: docs.gitbook.com, cat: developer, provider: gitbook, svc: gitbook, cc: FR, imp: 2, tier: 4, checks: [http] }
562 + - { id: ci-gitbook-status, name: "GitBook status page", host: www.gitbookstatus.com, cat: developer, provider: gitbook, svc: gitbook, cc: FR, imp: 2, tier: 4, checks: [http] }
563 + - { id: ci-gitbook-api, name: "GitBook API", host: api.gitbook.com, url: "https://api.gitbook.com/v1/", cat: developer, provider: gitbook, svc: gitbook, cc: FR, imp: 2, tier: 4, checks: [http] }
564 + - { id: ci-docusaurus, name: "Docusaurus / Mintlify / Redocly", host: docusaurus.io, cat: developer, provider: meta, svc: meta, cc: null, imp: 2, tier: 4, checks: [http] }
565 + - { id: ci-docusaurus-mintlify, name: "Docusaurus / Mintlify / Redocly mintlify", host: mintlify.com, cat: developer, provider: meta, svc: meta, cc: null, imp: 2, tier: 4, checks: [http] }
566 + - { id: ci-docusaurus-mintlify-status, name: "Docusaurus / Mintlify / Redocly mintlify status", host: status.mintlify.com, cat: developer, provider: meta, svc: meta, cc: null, imp: 2, tier: 4, checks: [http] }
567 + - { id: ci-docusaurus-redocly, name: "Docusaurus / Mintlify / Redocly redocly", host: redocly.com, cat: developer, provider: meta, svc: meta, cc: null, imp: 2, tier: 4, checks: [http] }
568 + - { id: ci-docusaurus-redoc, name: "Docusaurus / Mintlify / Redocly redoc", host: redocly.github.io, url: "https://redocly.github.io/redoc/", cat: developer, provider: meta, svc: meta, cc: null, imp: 2, tier: 4, checks: [http] }
569 + - { id: ci-nextjs-vercel-templates, name: "Next.js vercel templates", host: vercel.com, url: "https://vercel.com/templates", cat: developer, provider: vercel, svc: vercel, cc: US, imp: 4, tier: 3, checks: [http, dns] }
570 + - { id: ci-nextjs-vercel-api, name: "Next.js vercel api", host: api.vercel.com, url: "https://api.vercel.com/", cat: developer, provider: vercel, svc: vercel, cc: US, imp: 4, tier: 3, checks: [http, dns] }
571 + - { id: ci-nextjs-vercel-status, name: "Next.js vercel status", host: www.vercel-status.com, cat: developer, provider: vercel, svc: vercel, cc: US, imp: 4, tier: 3, checks: [http] }
572 + - { id: ci-algolia-docsearch-status, name: "Algolia infra status page", host: status.algolia.com, url: "https://status.algolia.com/2/status", cat: developer, provider: algolia, cc: FR, imp: 3, tier: 4, checks: [http] }
573 + - { id: ci-algolia-docsearch-docsearch, name: "Algolia infra docsearch", host: docsearch.algolia.com, cat: developer, provider: algolia, cc: FR, imp: 3, tier: 4, checks: [http] }
574 + - { id: ci-algolia-docsearch-docs, name: "Algolia infra docs", host: www.algolia.com, url: "https://www.algolia.com/doc/", cat: developer, provider: algolia, cc: FR, imp: 3, tier: 4, checks: [http] }
575 + - { id: ci-algolia-docsearch-community, name: "Algolia infra community", host: discourse.algolia.com, cat: developer, provider: algolia, cc: FR, imp: 3, tier: 4, checks: [http] }
576 + - { id: ci-snyk-status, name: "Snyk status page", host: status.snyk.io, cat: developer, provider: snyk, svc: snyk, cc: GB, imp: 3, tier: 4, checks: [http] }
577 + - { id: ci-snyk-docs, name: "Snyk docs", host: docs.snyk.io, cat: developer, provider: snyk, svc: snyk, cc: GB, imp: 3, tier: 4, checks: [http] }
578 + - { id: ci-snyk-api, name: "Snyk API", host: api.snyk.io, url: "https://api.snyk.io/rest/openapi", cat: developer, provider: snyk, svc: snyk, cc: GB, imp: 3, tier: 4, checks: [http] }
579 + - { id: ci-snyk-security, name: "Snyk security", host: security.snyk.io, cat: developer, provider: snyk, svc: snyk, cc: GB, imp: 3, tier: 4, checks: [http] }
580 + - { id: ci-snyk-app, name: "Snyk app", host: app.snyk.io, cat: developer, provider: snyk, svc: snyk, cc: GB, imp: 3, tier: 4, checks: [http] }
581 + - { id: ci-snyk-static, name: "Snyk static assets", host: static.snyk.io, cat: developer, provider: snyk, svc: snyk, cc: GB, imp: 3, tier: 4, checks: [http] }
582 + - { id: ci-mend, name: "Mend.io", host: www.mend.io, cat: developer, provider: mend, svc: mend, cc: IL, imp: 2, tier: 4, checks: [http] }
583 + - { id: ci-mend-docs, name: "Mend.io docs", host: docs.mend.io, cat: developer, provider: mend, svc: mend, cc: IL, imp: 2, tier: 4, checks: [http] }
584 + - { id: ci-mend-status, name: "Mend.io status page", host: status.mend.io, cat: developer, provider: mend, svc: mend, cc: IL, imp: 2, tier: 4, checks: [http] }
585 + - { id: ci-mend-renovate, name: "Mend.io renovate", host: docs.renovatebot.com, cat: developer, provider: mend, svc: mend, cc: IL, imp: 2, tier: 4, checks: [http] }
586 + - { id: ci-sonar, name: "SonarSource", host: www.sonarsource.com, cat: developer, provider: sonarsource, cc: CH, imp: 3, tier: 4, checks: [http] }
587 + - { id: ci-sonar-docs, name: "SonarSource docs", host: docs.sonarsource.com, cat: developer, provider: sonarsource, cc: CH, imp: 3, tier: 4, checks: [http] }
588 + - { id: ci-sonar-status, name: "SonarSource status page", host: sonarcloud.statuspage.io, cat: developer, provider: sonarsource, cc: CH, imp: 3, tier: 4, checks: [http] }
589 + - { id: ci-sonar-community, name: "SonarSource community", host: community.sonarsource.com, cat: developer, provider: sonarsource, cc: CH, imp: 3, tier: 4, checks: [http] }
590 + - { id: ci-sonar-binaries, name: "SonarSource binaries", host: binaries.sonarsource.com, cat: developer, provider: sonarsource, cc: CH, imp: 3, tier: 4, checks: [http] }
591 + - { id: ci-codecov-about, name: "Codecov about page", host: about.codecov.io, cat: developer, provider: codecov, svc: codecov, cc: US, imp: 3, tier: 4, checks: [http] }
592 + - { id: ci-codecov-docs, name: "Codecov docs", host: docs.codecov.com, cat: developer, provider: codecov, svc: codecov, cc: US, imp: 3, tier: 4, checks: [http] }
593 + - { id: ci-codecov-status, name: "Codecov status page", host: status.codecov.com, cat: developer, provider: codecov, svc: codecov, cc: US, imp: 3, tier: 4, checks: [http] }
594 + - { id: ci-codecov-api, name: "Codecov API", host: api.codecov.io, url: "https://api.codecov.io/api/v2/", cat: developer, provider: codecov, svc: codecov, cc: US, imp: 3, tier: 4, checks: [http] }
595 + - { id: ci-codecov-uploader, name: "Codecov uploader", host: uploader.codecov.io, cat: developer, provider: codecov, svc: codecov, cc: US, imp: 3, tier: 4, checks: [http] }
596 + - { id: ci-codecov-cli, name: "Codecov CLI", host: cli.codecov.io, cat: developer, provider: codecov, svc: codecov, cc: US, imp: 3, tier: 4, checks: [http] }
597 + - { id: ci-coveralls, name: "Coveralls", host: coveralls.io, cat: developer, provider: coveralls, svc: coveralls, cc: US, imp: 2, tier: 4, checks: [http] }
598 + - { id: ci-coveralls-docs, name: "Coveralls docs", host: docs.coveralls.io, cat: developer, provider: coveralls, svc: coveralls, cc: US, imp: 2, tier: 4, checks: [http] }
599 + - { id: ci-coveralls-status, name: "Coveralls status page", host: status.coveralls.io, cat: developer, provider: coveralls, svc: coveralls, cc: US, imp: 2, tier: 4, checks: [http] }
600 + - { id: ci-codeclimate, name: "Code Climate / Codacy / DeepSource", host: codeclimate.com, cat: developer, provider: codeclimate, svc: codeclimate, cc: US, imp: 2, tier: 4, checks: [http] }
601 + - { id: ci-codeclimate-codeclimate-status, name: "Code Climate / Codacy / DeepSource codeclimate status", host: status.codeclimate.com, cat: developer, provider: codeclimate, svc: codeclimate, cc: US, imp: 2, tier: 4, checks: [http] }
602 + - { id: ci-codeclimate-codacy, name: "Code Climate / Codacy / DeepSource codacy", host: www.codacy.com, cat: developer, provider: codeclimate, svc: codeclimate, cc: US, imp: 2, tier: 4, checks: [http] }
603 + - { id: ci-codeclimate-codacy-status, name: "Code Climate / Codacy / DeepSource codacy status", host: status.codacy.com, cat: developer, provider: codeclimate, svc: codeclimate, cc: US, imp: 2, tier: 4, checks: [http] }
604 + - { id: ci-codeclimate-codacy-docs, name: "Code Climate / Codacy / DeepSource codacy docs", host: docs.codacy.com, cat: developer, provider: codeclimate, svc: codeclimate, cc: US, imp: 2, tier: 4, checks: [http] }
605 + - { id: ci-codeclimate-deepsource, name: "Code Climate / Codacy / DeepSource deepsource", host: deepsource.com, cat: developer, provider: codeclimate, svc: codeclimate, cc: US, imp: 2, tier: 4, checks: [http] }
606 + - { id: ci-codeclimate-deepsource-docs, name: "Code Climate / Codacy / DeepSource deepsource docs", host: docs.deepsource.com, cat: developer, provider: codeclimate, svc: codeclimate, cc: US, imp: 2, tier: 4, checks: [http] }
607 + - { id: ci-semgrep, name: "Semgrep", host: semgrep.dev, cat: developer, provider: semgrep, svc: semgrep, cc: US, imp: 2, tier: 4, checks: [http] }
608 + - { id: ci-semgrep-status, name: "Semgrep status page", host: status.semgrep.dev, cat: developer, provider: semgrep, svc: semgrep, cc: US, imp: 2, tier: 4, checks: [http] }
609 + - { id: ci-gitguardian, name: "GitGuardian", host: www.gitguardian.com, cat: developer, provider: gitguardian, svc: gitguardian, cc: FR, imp: 2, tier: 4, checks: [http] }
610 + - { id: ci-gitguardian-docs, name: "GitGuardian docs", host: docs.gitguardian.com, cat: developer, provider: gitguardian, svc: gitguardian, cc: FR, imp: 2, tier: 4, checks: [http] }
611 + - { id: ci-gitguardian-status, name: "GitGuardian status page", host: status.gitguardian.com, cat: developer, provider: gitguardian, svc: gitguardian, cc: FR, imp: 2, tier: 4, checks: [http] }
612 + - { id: ci-gitguardian-api, name: "GitGuardian API", host: api.gitguardian.com, url: "https://api.gitguardian.com/v1/health", cat: developer, provider: gitguardian, svc: gitguardian, cc: FR, imp: 2, tier: 4, checks: [http] }
613 + - { id: ci-trufflehog, name: "Truffle Security / Aqua Trivy", host: trufflesecurity.com, cat: developer, provider: truffle, cc: US, imp: 2, tier: 4, checks: [http] }
614 + - { id: ci-trufflehog-aqua, name: "Truffle Security / Aqua Trivy aqua", host: www.aquasec.com, cat: developer, provider: truffle, cc: US, imp: 2, tier: 4, checks: [http] }
615 + - { id: ci-trufflehog-trivy, name: "Truffle Security / Aqua Trivy trivy", host: trivy.dev, cat: developer, provider: truffle, cc: US, imp: 2, tier: 4, checks: [http] }
616 + - { id: ci-anchore, name: "Anchore / Grype / Syft", host: anchore.com, cat: developer, provider: anchore, cc: US, imp: 2, tier: 4, checks: [http] }
617 + - { id: ci-anchore-toolbox, name: "Anchore / Grype / Syft toolbox", host: toolbox-data.anchore.io, url: "https://toolbox-data.anchore.io/grype/databases/listing.json", cat: developer, provider: anchore, cc: US, imp: 2, tier: 4, checks: [http] }
618 + - { id: ci-chainguard, name: "Chainguard", host: www.chainguard.dev, cat: developer, provider: chainguard, cc: US, imp: 3, tier: 4, checks: [http] }
619 + - { id: ci-chainguard-images, name: "Chainguard image CDN", host: images.chainguard.dev, cat: developer, provider: chainguard, cc: US, imp: 3, tier: 4, checks: [http] }
620 + - { id: ci-chainguard-cgr, name: "Chainguard cgr", host: cgr.dev, url: "https://cgr.dev/v2/", cat: developer, provider: chainguard, cc: US, imp: 3, tier: 4, checks: [http] }
621 + - { id: ci-chainguard-edu, name: "Chainguard edu", host: edu.chainguard.dev, cat: developer, provider: chainguard, cc: US, imp: 3, tier: 4, checks: [http] }
622 + - { id: ci-chainguard-wolfi, name: "Chainguard wolfi", host: wolfi.dev, cat: developer, provider: chainguard, cc: US, imp: 3, tier: 4, checks: [http] }
623 + - { id: ci-chainguard-packages-wolfi, name: "Chainguard packages wolfi", host: packages.wolfi.dev, url: "https://packages.wolfi.dev/os/x86_64/APKINDEX.tar.gz", cat: developer, provider: chainguard, cc: US, imp: 3, tier: 4, checks: [http] }
624 + - { id: ci-docker-scout-scout, name: "Docker Scout / Desktop scout", host: scout.docker.com, cat: developer, provider: docker, svc: docker, cc: US, imp: 3, tier: 4, checks: [http] }
625 + - { id: ci-docker-scout-forums, name: "Docker Scout / Desktop forum", host: forums.docker.com, cat: developer, provider: docker, svc: docker, cc: US, imp: 3, tier: 4, checks: [http] }
626 + - { id: ci-stackhawk, name: "StackHawk / Detectify / Intruder", host: www.stackhawk.com, cat: developer, provider: stackhawk, cc: US, imp: 1, tier: 4, checks: [http] }
627 + - { id: ci-stackhawk-detectify, name: "StackHawk / Detectify / Intruder detectify", host: detectify.com, cat: developer, provider: stackhawk, cc: US, imp: 1, tier: 4, checks: [http] }
628 + - { id: ci-stackhawk-intruder, name: "StackHawk / Detectify / Intruder intruder", host: www.intruder.io, cat: developer, provider: stackhawk, cc: US, imp: 1, tier: 4, checks: [http] }
629 + - { id: ci-hashicorp-status-status, name: "HashiCorp Cloud status page", host: status.hashicorp.com, cat: developer, provider: hashicorp, svc: hashicorp, cc: US, imp: 4, tier: 3, checks: [http] }
630 + - { id: ci-hashicorp-status-developer, name: "HashiCorp Cloud developer portal", host: developer.hashicorp.com, cat: developer, provider: hashicorp, svc: hashicorp, cc: US, imp: 4, tier: 3, checks: [http] }
631 + - { id: ci-hashicorp-status-portal, name: "HashiCorp Cloud portal", host: portal.cloud.hashicorp.com, cat: developer, provider: hashicorp, svc: hashicorp, cc: US, imp: 4, tier: 3, checks: [http] }
632 + - { id: ci-hashicorp-status-api, name: "HashiCorp Cloud API", host: api.releases.hashicorp.com, url: "https://api.releases.hashicorp.com/v1/releases/terraform/latest", cat: developer, provider: hashicorp, svc: hashicorp, cc: US, imp: 4, tier: 3, checks: [http, dns] }
633 + - { id: ci-hashicorp-status-discuss, name: "HashiCorp Cloud discussion forum", host: discuss.hashicorp.com, cat: developer, provider: hashicorp, svc: hashicorp, cc: US, imp: 4, tier: 3, checks: [http] }
634 + - { id: ci-hashicorp-status-checkpoint, name: "HashiCorp Cloud checkpoint", host: checkpoint-api.hashicorp.com, url: "https://checkpoint-api.hashicorp.com/v1/check/terraform", cat: developer, provider: hashicorp, svc: hashicorp, cc: US, imp: 4, tier: 3, checks: [http, dns] }
635 + - { id: ci-hashicorp-status-vault, name: "HashiCorp Cloud vault", host: www.vaultproject.io, cat: developer, provider: hashicorp, svc: hashicorp, cc: US, imp: 4, tier: 3, checks: [http] }
636 + - { id: ci-hashicorp-status-consul, name: "HashiCorp Cloud consul", host: www.consul.io, cat: developer, provider: hashicorp, svc: hashicorp, cc: US, imp: 4, tier: 3, checks: [http] }
637 + - { id: ci-hashicorp-status-nomad, name: "HashiCorp Cloud nomad", host: www.nomadproject.io, cat: developer, provider: hashicorp, svc: hashicorp, cc: US, imp: 4, tier: 3, checks: [http] }
638 + - { id: ci-hashicorp-status-packer, name: "HashiCorp Cloud packer", host: www.packer.io, cat: developer, provider: hashicorp, svc: hashicorp, cc: US, imp: 4, tier: 3, checks: [http] }
639 + - { id: ci-pulumi, name: "Pulumi", host: www.pulumi.com, cat: developer, provider: pulumi, svc: pulumi, cc: US, imp: 3, tier: 4, checks: [http] }
640 + - { id: ci-pulumi-status, name: "Pulumi status page", host: status.pulumi.com, cat: developer, provider: pulumi, svc: pulumi, cc: US, imp: 3, tier: 4, checks: [http] }
641 + - { id: ci-pulumi-api, name: "Pulumi API", host: api.pulumi.com, url: "https://api.pulumi.com/api/status", cat: developer, provider: pulumi, svc: pulumi, cc: US, imp: 3, tier: 4, checks: [http] }
642 + - { id: ci-pulumi-get, name: "Pulumi installer", host: get.pulumi.com, url: "https://get.pulumi.com/", cat: developer, provider: pulumi, svc: pulumi, cc: US, imp: 3, tier: 4, checks: [http] }
643 + - { id: ci-spacelift, name: "Spacelift / env0 / Scalr", host: spacelift.io, cat: developer, provider: spacelift, cc: US, imp: 2, tier: 4, checks: [http] }
644 + - { id: ci-spacelift-spacelift-docs, name: "Spacelift / env0 / Scalr spacelift docs", host: docs.spacelift.io, cat: developer, provider: spacelift, cc: US, imp: 2, tier: 4, checks: [http] }
645 + - { id: ci-spacelift-env0, name: "Spacelift / env0 / Scalr env0", host: www.env0.com, cat: developer, provider: spacelift, cc: US, imp: 2, tier: 4, checks: [http] }
646 + - { id: ci-spacelift-env0-status, name: "Spacelift / env0 / Scalr env0 status", host: status.env0.com, cat: developer, provider: spacelift, cc: US, imp: 2, tier: 4, checks: [http] }
647 + - { id: ci-spacelift-scalr, name: "Spacelift / env0 / Scalr scalr", host: scalr.com, cat: developer, provider: spacelift, cc: US, imp: 2, tier: 4, checks: [http] }
648 + - { id: ci-ansible-automation-developers, name: "Red Hat developer hub developer portal", host: developers.redhat.com, cat: developer, provider: redhat, svc: redhat, cc: US, imp: 3, tier: 4, checks: [http] }
649 + - { id: ci-ansible-automation-status, name: "Red Hat developer hub status page", host: status.redhat.com, cat: developer, provider: redhat, svc: redhat, cc: US, imp: 3, tier: 4, checks: [http] }
650 + - { id: ci-ansible-automation-console, name: "Red Hat developer hub console", host: console.redhat.com, url: "https://console.redhat.com/api/", cat: developer, provider: redhat, svc: redhat, cc: US, imp: 3, tier: 4, checks: [http] }
651 + - { id: ci-ansible-automation-quay-docs, name: "Red Hat developer hub quay docs", host: docs.quay.io, cat: developer, provider: redhat, svc: redhat, cc: US, imp: 3, tier: 4, checks: [http] }
652 + - { id: ci-rancher, name: "Rancher / SUSE", host: www.rancher.com, cat: developer, provider: suse, cc: US, imp: 2, tier: 4, checks: [http] }
653 + - { id: ci-rancher-releases, name: "Rancher / SUSE releases", host: releases.rancher.com, cat: developer, provider: suse, cc: US, imp: 2, tier: 4, checks: [http] }
654 + - { id: ci-rancher-docs, name: "Rancher / SUSE docs", host: ranchermanager.docs.rancher.com, cat: developer, provider: suse, cc: US, imp: 2, tier: 4, checks: [http] }
655 + - { id: ci-rancher-k3s, name: "Rancher / SUSE k3s", host: k3s.io, cat: developer, provider: suse, cc: US, imp: 2, tier: 4, checks: [http] }
656 + - { id: ci-rancher-update-k3s, name: "Rancher / SUSE update k3s", host: update.k3s.io, url: "https://update.k3s.io/v1-release/channels", cat: developer, provider: suse, cc: US, imp: 2, tier: 4, checks: [http] }
657 + - { id: ci-rancher-rke2, name: "Rancher / SUSE rke2", host: docs.rke2.io, cat: developer, provider: suse, cc: US, imp: 2, tier: 4, checks: [http] }
658 + - { id: ci-portainer, name: "Portainer / Mirantis / Docker alternatives", host: www.portainer.io, cat: developer, provider: portainer, cc: NZ, imp: 1, tier: 4, checks: [http] }
659 + - { id: ci-portainer-docs, name: "Portainer / Mirantis / Docker alternatives docs", host: docs.portainer.io, cat: developer, provider: portainer, cc: NZ, imp: 1, tier: 4, checks: [http] }
660 + - { id: ci-portainer-mirantis, name: "Portainer / Mirantis / Docker alternatives mirantis", host: www.mirantis.com, cat: developer, provider: portainer, cc: NZ, imp: 1, tier: 4, checks: [http] }
661 + - { id: ci-kubernetes-hosts-discuss, name: "Kubernetes ecosystem hosts discussion forum", host: discuss.kubernetes.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
662 + - { id: ci-kubernetes-hosts-git, name: "Kubernetes ecosystem hosts git", host: git.k8s.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
663 + - { id: ci-kubernetes-hosts-sigs, name: "Kubernetes ecosystem hosts sigs", host: sigs.k8s.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
664 + - { id: ci-kubernetes-hosts-kind, name: "Kubernetes ecosystem hosts kind", host: kind.sigs.k8s.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
665 + - { id: ci-kubernetes-hosts-minikube, name: "Kubernetes ecosystem hosts minikube", host: minikube.sigs.k8s.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
666 + - { id: ci-kubernetes-hosts-slack, name: "Kubernetes ecosystem hosts slack", host: slack.k8s.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
667 + - { id: ci-kubernetes-hosts-kustomize, name: "Kubernetes ecosystem hosts kustomize", host: kustomize.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
668 + - { id: ci-cncf-projects-prometheus, name: "CNCF project sites prometheus", host: prometheus.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
669 + - { id: ci-cncf-projects-envoy, name: "CNCF project sites envoy", host: www.envoyproxy.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
670 + - { id: ci-cncf-projects-istio, name: "CNCF project sites istio", host: istio.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
671 + - { id: ci-cncf-projects-linkerd, name: "CNCF project sites linkerd", host: linkerd.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
672 + - { id: ci-cncf-projects-etcd, name: "CNCF project sites etcd", host: etcd.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
673 + - { id: ci-cncf-projects-containerd, name: "CNCF project sites containerd", host: containerd.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
674 + - { id: ci-cncf-projects-cilium, name: "CNCF project sites cilium", host: cilium.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
675 + - { id: ci-cncf-projects-opentelemetry, name: "CNCF project sites opentelemetry", host: opentelemetry.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
676 + - { id: ci-cncf-projects-jaeger, name: "CNCF project sites jaeger", host: www.jaegertracing.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
677 + - { id: ci-cncf-projects-fluentd, name: "CNCF project sites fluentd", host: www.fluentd.org, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
678 + - { id: ci-cncf-projects-falco, name: "CNCF project sites falco", host: falco.org, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
679 + - { id: ci-cncf-projects-harbor, name: "CNCF project sites harbor", host: goharbor.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
680 + - { id: ci-cncf-projects-keda, name: "CNCF project sites keda", host: keda.sh, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
681 + - { id: ci-cncf-projects-knative, name: "CNCF project sites knative", host: knative.dev, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
682 + - { id: ci-cncf-projects-crossplane, name: "CNCF project sites crossplane", host: www.crossplane.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
683 + - { id: ci-cncf-projects-backstage, name: "CNCF project sites backstage", host: backstage.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
684 + - { id: ci-opentofu-linuxfoundation-training, name: "Linux Foundation training", host: training.linuxfoundation.org, cat: developer, provider: linux-foundation, cc: US, imp: 3, tier: 4, checks: [http] }
685 + - { id: ci-opentofu-linuxfoundation-events, name: "Linux Foundation events", host: events.linuxfoundation.org, cat: developer, provider: linux-foundation, cc: US, imp: 3, tier: 4, checks: [http] }
686 + - { id: ci-opentofu-linuxfoundation-lfx, name: "Linux Foundation lfx", host: lfx.linuxfoundation.org, cat: developer, provider: linux-foundation, cc: US, imp: 3, tier: 4, checks: [http] }
687 + - { id: ci-opentofu-linuxfoundation-openjs, name: "Linux Foundation openjs", host: openjsf.org, cat: developer, provider: linux-foundation, cc: US, imp: 3, tier: 4, checks: [http] }
688 + - { id: ci-opentofu-linuxfoundation-cdfoundation, name: "Linux Foundation cdfoundation", host: cd.foundation, cat: developer, provider: linux-foundation, cc: US, imp: 3, tier: 4, checks: [http] }
689 + - { id: ci-cloud-native-buildpacks, name: "Buildpacks / Paketo / ko", host: buildpacks.io, cat: developer, provider: cncf, cc: null, imp: 1, tier: 4, checks: [http] }
690 + - { id: ci-cloud-native-buildpacks-paketo, name: "Buildpacks / Paketo / ko paketo", host: paketo.io, cat: developer, provider: cncf, cc: null, imp: 1, tier: 4, checks: [http] }
691 + - { id: ci-cloud-native-buildpacks-ko, name: "Buildpacks / Paketo / ko ko", host: ko.build, cat: developer, provider: cncf, cc: null, imp: 1, tier: 4, checks: [http] }
692 + - { id: ci-git-scm, name: "Git", host: git-scm.com, cat: developer, provider: git, cc: null, imp: 3, tier: 4, checks: [http] }
693 + - { id: ci-gitkraken, name: "GitKraken / Tower / Fork / Sublime Merge", host: www.gitkraken.com, cat: developer, provider: gitkraken, cc: US, imp: 2, tier: 4, checks: [http] }
694 + - { id: ci-gitkraken-status, name: "GitKraken / Tower / Fork / Sublime Merge status page", host: status.gitkraken.com, cat: developer, provider: gitkraken, cc: US, imp: 2, tier: 4, checks: [http] }
695 + - { id: ci-gitkraken-tower, name: "GitKraken / Tower / Fork / Sublime Merge tower", host: www.git-tower.com, cat: developer, provider: gitkraken, cc: US, imp: 2, tier: 4, checks: [http] }
696 + - { id: ci-gitkraken-sublimemerge, name: "GitKraken / Tower / Fork / Sublime Merge sublimemerge", host: www.sublimemerge.com, cat: developer, provider: gitkraken, cc: US, imp: 2, tier: 4, checks: [http] }
697 + - { id: ci-gerrit-codereview-gerrit, name: "Gerrit / Phabricator / Review Board gerrit", host: www.gerritcodereview.com, cat: developer, provider: gerrit, cc: null, imp: 1, tier: 4, checks: [http] }
698 + - { id: ci-gerrit-codereview-reviewboard, name: "Gerrit / Phabricator / Review Board reviewboard", host: www.reviewboard.org, cat: developer, provider: gerrit, cc: null, imp: 1, tier: 4, checks: [http] }
699 + - { id: ci-graphite, name: "Graphite / Reviewable / CodeRabbit", host: graphite.dev, cat: developer, provider: graphite, cc: US, imp: 2, tier: 4, checks: [http] }
700 + - { id: ci-graphite-graphite-status, name: "Graphite / Reviewable / CodeRabbit graphite status", host: status.graphite.dev, cat: developer, provider: graphite, cc: US, imp: 2, tier: 4, checks: [http] }
701 + - { id: ci-graphite-coderabbit, name: "Graphite / Reviewable / CodeRabbit coderabbit", host: www.coderabbit.ai, cat: developer, provider: graphite, cc: US, imp: 2, tier: 4, checks: [http] }
702 + - { id: ci-graphite-coderabbit-docs, name: "Graphite / Reviewable / CodeRabbit coderabbit docs", host: docs.coderabbit.ai, cat: developer, provider: graphite, cc: US, imp: 2, tier: 4, checks: [http] }
703 + - { id: ci-graphite-greptile, name: "Graphite / Reviewable / CodeRabbit greptile", host: www.greptile.com, cat: developer, provider: graphite, cc: US, imp: 2, tier: 4, checks: [http] }
704 + - { id: ci-mergify, name: "Mergify / Kodiak / Renovate app", host: mergify.com, cat: developer, provider: mergify, svc: mergify, cc: FR, imp: 1, tier: 4, checks: [http] }
705 + - { id: ci-mergify-mergify-status, name: "Mergify / Kodiak / Renovate app mergify status", host: status.mergify.com, cat: developer, provider: mergify, svc: mergify, cc: FR, imp: 1, tier: 4, checks: [http] }
706 + - { id: ci-mergify-mergify-docs, name: "Mergify / Kodiak / Renovate app mergify docs", host: docs.mergify.com, cat: developer, provider: mergify, svc: mergify, cc: FR, imp: 1, tier: 4, checks: [http] }
707 + - { id: ci-sourcegraph, name: "Sourcegraph", host: sourcegraph.com, cat: developer, provider: sourcegraph, svc: sourcegraph, cc: US, imp: 3, tier: 4, checks: [http] }
708 + - { id: ci-sourcegraph-about, name: "Sourcegraph about page", host: about.sourcegraph.com, cat: developer, provider: sourcegraph, svc: sourcegraph, cc: US, imp: 3, tier: 4, checks: [http] }
709 + - { id: ci-sourcegraph-status, name: "Sourcegraph status page", host: sourcegraphstatus.com, cat: developer, provider: sourcegraph, svc: sourcegraph, cc: US, imp: 3, tier: 4, checks: [http] }
710 + - { id: ci-jetbrains-space-gitpod, name: "Coder / Gitpod / Codespaces gitpod", host: www.gitpod.io, cat: developer, provider: gitpod, svc: gitpod, cc: US, imp: 2, tier: 4, checks: [http] }
711 + - { id: ci-jetbrains-space-gitpod-status, name: "Coder / Gitpod / Codespaces gitpod status", host: www.gitpodstatus.com, cat: developer, provider: gitpod, svc: gitpod, cc: US, imp: 2, tier: 4, checks: [http] }
712 + - { id: ci-jetbrains-space-coder, name: "Coder / Gitpod / Codespaces coder", host: coder.com, cat: developer, provider: gitpod, svc: gitpod, cc: US, imp: 2, tier: 4, checks: [http] }
713 + - { id: ci-jetbrains-space-devpod, name: "Coder / Gitpod / Codespaces devpod", host: devpod.sh, cat: developer, provider: gitpod, svc: gitpod, cc: US, imp: 2, tier: 4, checks: [http] }
714 + - { id: ci-stackblitz, name: "StackBlitz / CodeSandbox / CodePen / JSFiddle", host: stackblitz.com, cat: developer, provider: stackblitz, cc: US, imp: 2, tier: 4, checks: [http] }
715 + - { id: ci-stackblitz-stackblitz-status, name: "StackBlitz / CodeSandbox / CodePen / JSFiddle stackblitz status", host: status.stackblitz.com, cat: developer, provider: stackblitz, cc: US, imp: 2, tier: 4, checks: [http] }
716 + - { id: ci-stackblitz-codesandbox, name: "StackBlitz / CodeSandbox / CodePen / JSFiddle codesandbox", host: codesandbox.io, cat: developer, provider: stackblitz, cc: US, imp: 2, tier: 4, checks: [http] }
717 + - { id: ci-stackblitz-codesandbox-status, name: "StackBlitz / CodeSandbox / CodePen / JSFiddle codesandbox status", host: status.codesandbox.io, cat: developer, provider: stackblitz, cc: US, imp: 2, tier: 4, checks: [http] }
718 + - { id: ci-stackblitz-codepen, name: "StackBlitz / CodeSandbox / CodePen / JSFiddle codepen", host: codepen.io, cat: developer, provider: stackblitz, cc: US, imp: 2, tier: 4, checks: [http] }
719 + - { id: ci-stackblitz-jsfiddle, name: "StackBlitz / CodeSandbox / CodePen / JSFiddle jsfiddle", host: jsfiddle.net, cat: developer, provider: stackblitz, cc: US, imp: 2, tier: 4, checks: [http] }
720 + - { id: ci-leetcode-hackerrank-status, name: "Coding practice hackerrank status", host: status.hackerrank.com, cat: developer, provider: leetcode, cc: null, imp: 2, tier: 4, checks: [http] }
721 + - { id: ci-leetcode-codility, name: "Coding practice codility", host: www.codility.com, cat: developer, provider: leetcode, cc: null, imp: 2, tier: 4, checks: [http] }
722 + - { id: ci-leetcode-codesignal, name: "Coding practice codesignal", host: codesignal.com, cat: developer, provider: leetcode, cc: null, imp: 2, tier: 4, checks: [http] }
723 + - { id: ci-leetcode-kattis, name: "Coding practice kattis", host: open.kattis.com, cat: developer, provider: leetcode, cc: null, imp: 2, tier: 4, checks: [http] }
724 + - { id: ci-leetcode-codeforces, name: "Coding practice codeforces", host: codeforces.com, cat: developer, provider: leetcode, cc: null, imp: 2, tier: 4, checks: [http] }
725 + - { id: ci-leetcode-atcoder, name: "Coding practice atcoder", host: atcoder.jp, cat: developer, provider: leetcode, cc: null, imp: 2, tier: 4, checks: [http] }
726 + - { id: ci-leetcode-topcoder, name: "Coding practice topcoder", host: www.topcoder.com, cat: developer, provider: leetcode, cc: null, imp: 2, tier: 4, checks: [http] }
727 + - { id: ci-leetcode-projecteuler, name: "Coding practice projecteuler", host: projecteuler.net, cat: developer, provider: leetcode, cc: null, imp: 2, tier: 4, checks: [http] }
728 + - { id: ci-leetcode-adventofcode, name: "Coding practice adventofcode", host: adventofcode.com, cat: developer, provider: leetcode, cc: null, imp: 2, tier: 4, checks: [http] }
729 + - { id: ci-freecodecamp-datacamp-status, name: "Coding education datacamp status", host: status.datacamp.com, cat: developer, provider: freecodecamp, cc: null, imp: 2, tier: 4, checks: [http] }
730 + - { id: ci-freecodecamp-egghead, name: "Coding education egghead", host: egghead.io, cat: developer, provider: freecodecamp, cc: null, imp: 2, tier: 4, checks: [http] }
731 + - { id: ci-freecodecamp-frontendmasters, name: "Coding education frontendmasters", host: frontendmasters.com, cat: developer, provider: freecodecamp, cc: null, imp: 2, tier: 4, checks: [http] }
732 + - { id: ci-freecodecamp-udacity-status, name: "Coding education udacity status", host: status.udacity.com, cat: developer, provider: freecodecamp, cc: null, imp: 2, tier: 4, checks: [http] }
733 + - { id: ci-freecodecamp-edx-status, name: "Coding education edx status", host: status.edx.org, cat: developer, provider: freecodecamp, cc: null, imp: 2, tier: 4, checks: [http] }
734 + - { id: ci-freecodecamp-theodinproject, name: "Coding education theodinproject", host: www.theodinproject.com, cat: developer, provider: freecodecamp, cc: null, imp: 2, tier: 4, checks: [http] }
735 + - { id: ci-freecodecamp-boot-dev, name: "Coding education boot dev", host: www.boot.dev, cat: developer, provider: freecodecamp, cc: null, imp: 2, tier: 4, checks: [http] }
736 + - { id: ci-freecodecamp-scrimba, name: "Coding education scrimba", host: scrimba.com, cat: developer, provider: freecodecamp, cc: null, imp: 2, tier: 4, checks: [http] }
737 + - { id: ci-dev-communities-hashnode-status, name: "Developer communities hashnode status", host: status.hashnode.com, cat: developer, provider: devto, svc: devto, cc: null, imp: 2, tier: 4, checks: [http] }
738 + - { id: ci-dev-communities-hn-api, name: "Developer communities hn api", host: hacker-news.firebaseio.com, url: "https://hacker-news.firebaseio.com/v0/topstories.json", cat: developer, provider: devto, svc: devto, cc: null, imp: 2, tier: 4, checks: [http] }
739 + - { id: ci-dev-communities-indiehackers, name: "Developer communities indiehackers", host: www.indiehackers.com, cat: developer, provider: devto, svc: devto, cc: null, imp: 2, tier: 4, checks: [http] }
740 + - { id: ci-dev-communities-dzone, name: "Developer communities dzone", host: dzone.com, cat: developer, provider: devto, svc: devto, cc: null, imp: 2, tier: 4, checks: [http] }
741 + - { id: ci-dev-communities-infoq, name: "Developer communities infoq", host: www.infoq.com, cat: developer, provider: devto, svc: devto, cc: null, imp: 2, tier: 4, checks: [http] }
742 + - { id: ci-dev-communities-hackernoon, name: "Developer communities hackernoon", host: hackernoon.com, cat: developer, provider: devto, svc: devto, cc: null, imp: 2, tier: 4, checks: [http] }
743 + - { id: ci-dev-communities-daily-dev, name: "Developer communities daily dev", host: daily.dev, cat: developer, provider: devto, svc: devto, cc: null, imp: 2, tier: 4, checks: [http] }
744 + - { id: ci-stack-overflow-hosts-api, name: "Stack Exchange hosts API", host: api.stackexchange.com, url: "https://api.stackexchange.com/2.3/info?site=stackoverflow", cat: developer, provider: stackoverflow, cc: US, imp: 3, tier: 4, checks: [http] }
745 + - { id: ci-stack-overflow-hosts-status, name: "Stack Exchange hosts status page", host: stackstatus.net, url: "https://stackstatus.net/", cat: developer, provider: stackoverflow, cc: US, imp: 3, tier: 4, checks: [http] }
746 + - { id: ci-stack-overflow-hosts-meta, name: "Stack Exchange hosts meta", host: meta.stackoverflow.com, cat: developer, provider: stackoverflow, cc: US, imp: 3, tier: 4, checks: [http] }
747 + - { id: ci-stack-overflow-hosts-unix, name: "Stack Exchange hosts unix", host: unix.stackexchange.com, cat: developer, provider: stackoverflow, cc: US, imp: 3, tier: 4, checks: [http] }
748 + - { id: ci-stack-overflow-hosts-security, name: "Stack Exchange hosts security", host: security.stackexchange.com, cat: developer, provider: stackoverflow, cc: US, imp: 3, tier: 4, checks: [http] }
749 + - { id: ci-stack-overflow-hosts-math, name: "Stack Exchange hosts math", host: math.stackexchange.com, cat: developer, provider: stackoverflow, cc: US, imp: 3, tier: 4, checks: [http] }
750 + - { id: ci-stack-overflow-hosts-cdn, name: "Stack Exchange hosts CDN", host: cdn.sstatic.net, url: "https://cdn.sstatic.net/Sites/stackoverflow/Img/favicon.ico", cat: developer, provider: stackoverflow, cc: US, imp: 3, tier: 4, checks: [http] }
751 + - { id: ci-stack-overflow-hosts-blog, name: "Stack Exchange hosts blog", host: stackoverflow.blog, cat: developer, provider: stackoverflow, cc: US, imp: 3, tier: 4, checks: [http] }
752 + - { id: ci-reddit-dev-developers, name: "Reddit developer hosts developer portal", host: developers.reddit.com, cat: developer, provider: reddit, svc: reddit, cc: US, imp: 2, tier: 4, checks: [http] }
753 + - { id: ci-reddit-dev-oauth, name: "Reddit developer hosts oauth", host: oauth.reddit.com, cat: developer, provider: reddit, svc: reddit, cc: US, imp: 2, tier: 4, checks: [http] }
754 + - { id: ci-reddit-dev-api, name: "Reddit developer hosts API", host: www.reddit.com, url: "https://www.reddit.com/r/programming.json", cat: developer, provider: reddit, svc: reddit, cc: US, imp: 2, tier: 4, checks: [http] }
755 + - { id: ci-discord-dev-developers, name: "Discord developer hosts developer portal", host: discord.com, url: "https://discord.com/developers/docs/intro", cat: developer, provider: discord, svc: discord, cc: US, imp: 3, tier: 4, checks: [http] }
756 + - { id: ci-discord-dev-status, name: "Discord developer hosts status page", host: discordstatus.com, url: "https://discordstatus.com/api/v2/summary.json", cat: developer, provider: discord, svc: discord, cc: US, imp: 3, tier: 4, checks: [http] }
757 + - { id: ci-slack-dev-api, name: "Slack developer hosts API", host: api.slack.com, url: "https://api.slack.com/methods", cat: developer, provider: slack, svc: slack, cc: US, imp: 3, tier: 4, checks: [http] }
758 + - { id: ci-slack-dev-hooks, name: "Slack developer hosts hooks", host: hooks.slack.com, url: "https://hooks.slack.com/", cat: developer, provider: slack, svc: slack, cc: US, imp: 3, tier: 4, checks: [http] }
759 + - { id: ci-slack-dev-status, name: "Slack developer hosts status page", host: slack-status.com, url: "https://slack-status.com/api/v2.0.0/current", cat: developer, provider: slack, svc: slack, cc: US, imp: 3, tier: 4, checks: [http] }
760 + - { id: ci-slack-dev-app, name: "Slack developer hosts app", host: app.slack.com, cat: developer, provider: slack, svc: slack, cc: US, imp: 3, tier: 4, checks: [http] }
761 + - { id: ci-slack-dev-files, name: "Slack developer hosts files", host: files.slack.com, cat: developer, provider: slack, svc: slack, cc: US, imp: 3, tier: 4, checks: [http] }
762 + - { id: ci-gnu-mirrors-ftpmirror, name: "GNU/FSF & misc mirrors ftpmirror", host: ftpmirror.gnu.org, cat: developer, provider: mirrors, cc: null, imp: 2, tier: 4, checks: [http] }
763 + - { id: ci-gnu-mirrors-mirror-service, name: "GNU/FSF & misc mirrors mirror service", host: www.mirrorservice.org, cat: developer, provider: mirrors, cc: null, imp: 2, tier: 4, checks: [http] }
764 + - { id: ci-gnu-mirrors-mirror-osuosl, name: "GNU/FSF & misc mirrors mirror osuosl", host: ftp.osuosl.org, cat: developer, provider: mirrors, cc: null, imp: 2, tier: 4, checks: [http] }
765 + - { id: ci-gnu-mirrors-ftp-heanet, name: "GNU/FSF & misc mirrors ftp heanet", host: ftp.heanet.ie, cat: developer, provider: mirrors, cc: null, imp: 2, tier: 4, checks: [http] }
766 + # ───────── Observability, incident management, uptime & Internet observatories (346)
767 + - { id: obs-rollbar, name: "Rollbar", host: rollbar.com, cat: developer, provider: rollbar, svc: rollbar, cc: US, imp: 2, tier: 4, checks: [http] }
768 + - { id: obs-rollbar-docs, name: "Rollbar docs", host: docs.rollbar.com, cat: developer, provider: rollbar, svc: rollbar, cc: US, imp: 2, tier: 4, checks: [http] }
769 + - { id: obs-rollbar-status, name: "Rollbar status page", host: status.rollbar.com, cat: developer, provider: rollbar, svc: rollbar, cc: US, imp: 2, tier: 4, checks: [http] }
770 + - { id: obs-rollbar-api, name: "Rollbar API", host: api.rollbar.com, cat: developer, provider: rollbar, svc: rollbar, cc: US, imp: 2, tier: 4, checks: [http] }
771 + - { id: obs-bugsnag, name: "Bugsnag (SmartBear)", host: www.bugsnag.com, cat: developer, provider: bugsnag, svc: bugsnag, cc: US, imp: 2, tier: 4, checks: [http] }
772 + - { id: obs-bugsnag-docs, name: "Bugsnag (SmartBear) docs", host: docs.bugsnag.com, cat: developer, provider: bugsnag, svc: bugsnag, cc: US, imp: 2, tier: 4, checks: [http] }
773 + - { id: obs-bugsnag-status, name: "Bugsnag (SmartBear) status page", host: status.bugsnag.com, cat: developer, provider: bugsnag, svc: bugsnag, cc: US, imp: 2, tier: 4, checks: [http] }
774 + - { id: obs-bugsnag-notify, name: "Bugsnag (SmartBear) notify", host: notify.bugsnag.com, cat: developer, provider: bugsnag, svc: bugsnag, cc: US, imp: 2, tier: 4, checks: [http] }
775 + - { id: obs-bugsnag-sessions, name: "Bugsnag (SmartBear) sessions", host: sessions.bugsnag.com, cat: developer, provider: bugsnag, svc: bugsnag, cc: US, imp: 2, tier: 4, checks: [http] }
776 + - { id: obs-raygun, name: "Raygun", host: raygun.com, cat: developer, provider: raygun, cc: NZ, imp: 2, tier: 4, checks: [http] }
777 + - { id: obs-raygun-status, name: "Raygun status page", host: status.raygun.com, cat: developer, provider: raygun, cc: NZ, imp: 2, tier: 4, checks: [http] }
778 + - { id: obs-raygun-api, name: "Raygun API", host: api.raygun.com, cat: developer, provider: raygun, cc: NZ, imp: 2, tier: 4, checks: [http] }
779 + - { id: obs-honeybadger, name: "Honeybadger", host: www.honeybadger.io, cat: developer, provider: honeybadger, svc: honeybadger, cc: US, imp: 2, tier: 4, checks: [http] }
780 + - { id: obs-honeybadger-status, name: "Honeybadger status page", host: status.honeybadger.io, cat: developer, provider: honeybadger, svc: honeybadger, cc: US, imp: 2, tier: 4, checks: [http] }
781 + - { id: obs-honeybadger-docs, name: "Honeybadger docs", host: docs.honeybadger.io, cat: developer, provider: honeybadger, svc: honeybadger, cc: US, imp: 2, tier: 4, checks: [http] }
782 + - { id: obs-honeybadger-api, name: "Honeybadger API", host: api.honeybadger.io, cat: developer, provider: honeybadger, svc: honeybadger, cc: US, imp: 2, tier: 4, checks: [http] }
783 + - { id: obs-airbrake-airbrake, name: "Airbrake / AppSignal / Scout APM airbrake", host: www.airbrake.io, cat: developer, provider: airbrake, svc: airbrake, cc: US, imp: 2, tier: 4, checks: [http] }
784 + - { id: obs-airbrake-airbrake-status, name: "Airbrake / AppSignal / Scout APM airbrake status", host: status.airbrake.io, cat: developer, provider: airbrake, svc: airbrake, cc: US, imp: 2, tier: 4, checks: [http] }
785 + - { id: obs-airbrake-appsignal, name: "Airbrake / AppSignal / Scout APM appsignal", host: www.appsignal.com, cat: developer, provider: airbrake, svc: airbrake, cc: US, imp: 2, tier: 4, checks: [http] }
786 + - { id: obs-airbrake-appsignal-status, name: "Airbrake / AppSignal / Scout APM appsignal status", host: status.appsignal.com, cat: developer, provider: airbrake, svc: airbrake, cc: US, imp: 2, tier: 4, checks: [http] }
787 + - { id: obs-airbrake-appsignal-docs, name: "Airbrake / AppSignal / Scout APM appsignal docs", host: docs.appsignal.com, cat: developer, provider: airbrake, svc: airbrake, cc: US, imp: 2, tier: 4, checks: [http] }
788 + - { id: obs-airbrake-scoutapm, name: "Airbrake / AppSignal / Scout APM scoutapm", host: www.scoutapm.com, cat: developer, provider: airbrake, svc: airbrake, cc: US, imp: 2, tier: 4, checks: [http] }
789 + - { id: obs-airbrake-scoutapm-status, name: "Airbrake / AppSignal / Scout APM scoutapm status", host: status.scoutapm.com, cat: developer, provider: airbrake, svc: airbrake, cc: US, imp: 2, tier: 4, checks: [http] }
790 + - { id: obs-sentry-hosts-status, name: "Sentry hosts status page", host: status.sentry.io, cat: developer, provider: sentry, svc: sentry, cc: US, imp: 4, tier: 3, checks: [http] }
791 + - { id: obs-sentry-hosts-docs, name: "Sentry hosts docs", host: docs.sentry.io, cat: developer, provider: sentry, svc: sentry, cc: US, imp: 4, tier: 3, checks: [http] }
792 + - { id: obs-sentry-hosts-ingest, name: "Sentry hosts ingest", host: o1.ingest.sentry.io, cat: developer, provider: sentry, svc: sentry, cc: US, imp: 4, tier: 3, checks: [http] }
793 + - { id: obs-sentry-hosts-develop, name: "Sentry hosts develop", host: develop.sentry.dev, cat: developer, provider: sentry, svc: sentry, cc: US, imp: 4, tier: 3, checks: [http] }
794 + - { id: obs-sentry-hosts-sentry-cdn, name: "Sentry hosts sentry cdn", host: browser.sentry-cdn.com, url: "https://browser.sentry-cdn.com/7.100.0/bundle.min.js", cat: developer, provider: sentry, svc: sentry, cc: US, imp: 4, tier: 3, checks: [http, dns] }
795 + - { id: obs-sentry-hosts-us, name: "Sentry hosts us", host: us.sentry.io, cat: developer, provider: sentry, svc: sentry, cc: US, imp: 4, tier: 3, checks: [http] }
796 + - { id: obs-sentry-hosts-de, name: "Sentry hosts de", host: de.sentry.io, cat: developer, provider: sentry, svc: sentry, cc: US, imp: 4, tier: 3, checks: [http] }
797 + - { id: obs-newrelic-hosts-status, name: "New Relic hosts status page", host: status.newrelic.com, cat: developer, provider: newrelic, svc: newrelic, cc: US, imp: 4, tier: 3, checks: [http] }
798 + - { id: obs-newrelic-hosts-docs, name: "New Relic hosts docs", host: docs.newrelic.com, cat: developer, provider: newrelic, svc: newrelic, cc: US, imp: 4, tier: 3, checks: [http] }
799 + - { id: obs-newrelic-hosts-api, name: "New Relic hosts API", host: api.newrelic.com, url: "https://api.newrelic.com/graphql", cat: developer, provider: newrelic, svc: newrelic, cc: US, imp: 4, tier: 3, checks: [http, dns] }
800 + - { id: obs-newrelic-hosts-collector, name: "New Relic hosts collector", host: collector.newrelic.com, cat: developer, provider: newrelic, svc: newrelic, cc: US, imp: 4, tier: 3, checks: [http] }
801 + - { id: obs-newrelic-hosts-js, name: "New Relic hosts JS", host: js-agent.newrelic.com, url: "https://js-agent.newrelic.com/nr-loader-spa-current.min.js", cat: developer, provider: newrelic, svc: newrelic, cc: US, imp: 4, tier: 3, checks: [http, dns] }
802 + - { id: obs-newrelic-hosts-bam, name: "New Relic hosts bam", host: bam.nr-data.net, cat: developer, provider: newrelic, svc: newrelic, cc: US, imp: 4, tier: 3, checks: [http] }
803 + - { id: obs-newrelic-hosts-eu, name: "New Relic hosts eu", host: api.eu.newrelic.com, url: "https://api.eu.newrelic.com/graphql", cat: developer, provider: newrelic, svc: newrelic, cc: US, imp: 4, tier: 3, checks: [http, dns] }
804 + - { id: obs-newrelic-hosts-insights, name: "New Relic hosts insights", host: insights-collector.newrelic.com, cat: developer, provider: newrelic, svc: newrelic, cc: US, imp: 4, tier: 3, checks: [http] }
805 + - { id: obs-newrelic-hosts-learn, name: "New Relic hosts learning portal", host: learn.newrelic.com, cat: developer, provider: newrelic, svc: newrelic, cc: US, imp: 4, tier: 3, checks: [http] }
806 + - { id: obs-newrelic-hosts-forum, name: "New Relic hosts forum", host: forum.newrelic.com, cat: developer, provider: newrelic, svc: newrelic, cc: US, imp: 4, tier: 3, checks: [http] }
807 + - { id: obs-newrelic-hosts-download, name: "New Relic hosts downloads", host: download.newrelic.com, url: "https://download.newrelic.com/infrastructure_agent/gpg/newrelic-infra.gpg", cat: developer, provider: newrelic, svc: newrelic, cc: US, imp: 4, tier: 3, checks: [http, dns] }
808 + - { id: obs-datadog-hosts-status, name: "Datadog hosts status page", host: status.datadoghq.com, cat: developer, provider: datadog, svc: datadog, cc: US, imp: 4, tier: 3, checks: [http] }
809 + - { id: obs-datadog-hosts-docs, name: "Datadog hosts docs", host: docs.datadoghq.com, cat: developer, provider: datadog, svc: datadog, cc: US, imp: 4, tier: 3, checks: [http] }
810 + - { id: obs-datadog-hosts-api, name: "Datadog hosts API", host: api.datadoghq.com, url: "https://api.datadoghq.com/api/v1/validate", cat: developer, provider: datadog, svc: datadog, cc: US, imp: 4, tier: 3, checks: [http, dns] }
811 + - { id: obs-datadog-hosts-eu, name: "Datadog hosts eu", host: api.datadoghq.eu, url: "https://api.datadoghq.eu/api/v1/validate", cat: developer, provider: datadog, svc: datadog, cc: US, imp: 4, tier: 3, checks: [http, dns] }
812 + - { id: obs-datadog-hosts-agent, name: "Datadog hosts agent", host: agent.datadoghq.com, url: "https://agent.datadoghq.com/api/v1/validate", cat: developer, provider: datadog, svc: datadog, cc: US, imp: 4, tier: 3, checks: [http, dns] }
813 + - { id: obs-datadog-hosts-browser, name: "Datadog hosts browser", host: www.datadoghq-browser-agent.com, url: "https://www.datadoghq-browser-agent.com/us1/v5/datadog-rum.js", cat: developer, provider: datadog, svc: datadog, cc: US, imp: 4, tier: 3, checks: [http, dns] }
814 + - { id: obs-datadog-hosts-apt, name: "Datadog hosts apt", host: apt.datadoghq.com, url: "https://apt.datadoghq.com/dists/stable/Release", cat: developer, provider: datadog, svc: datadog, cc: US, imp: 4, tier: 3, checks: [http, dns] }
815 + - { id: obs-datadog-hosts-yum, name: "Datadog hosts yum", host: yum.datadoghq.com, cat: developer, provider: datadog, svc: datadog, cc: US, imp: 4, tier: 3, checks: [http] }
816 + - { id: obs-datadog-hosts-learn, name: "Datadog hosts learning portal", host: learn.datadoghq.com, cat: developer, provider: datadog, svc: datadog, cc: US, imp: 4, tier: 3, checks: [http] }
817 + - { id: obs-datadog-hosts-securitylabs, name: "Datadog hosts securitylabs", host: securitylabs.datadoghq.com, cat: developer, provider: datadog, svc: datadog, cc: US, imp: 4, tier: 3, checks: [http] }
818 + - { id: obs-datadog-hosts-opensource, name: "Datadog hosts opensource", host: opensource.datadoghq.com, cat: developer, provider: datadog, svc: datadog, cc: US, imp: 4, tier: 3, checks: [http] }
819 + - { id: obs-dynatrace-hosts-docs, name: "Dynatrace hosts docs", host: docs.dynatrace.com, cat: developer, provider: dynatrace, svc: dynatrace, cc: US, imp: 3, tier: 4, checks: [http] }
820 + - { id: obs-dynatrace-hosts-status, name: "Dynatrace hosts status page", host: status.dynatrace.com, cat: developer, provider: dynatrace, svc: dynatrace, cc: US, imp: 3, tier: 4, checks: [http] }
821 + - { id: obs-dynatrace-hosts-community, name: "Dynatrace hosts community", host: community.dynatrace.com, cat: developer, provider: dynatrace, svc: dynatrace, cc: US, imp: 3, tier: 4, checks: [http] }
822 + - { id: obs-dynatrace-hosts-university, name: "Dynatrace hosts academy", host: university.dynatrace.com, cat: developer, provider: dynatrace, svc: dynatrace, cc: US, imp: 3, tier: 4, checks: [http] }
823 + - { id: obs-dynatrace-hosts-developer, name: "Dynatrace hosts developer portal", host: developer.dynatrace.com, cat: developer, provider: dynatrace, svc: dynatrace, cc: US, imp: 3, tier: 4, checks: [http] }
824 + - { id: obs-appdynamics, name: "AppDynamics (Cisco)", host: www.appdynamics.com, cat: developer, provider: cisco, cc: US, imp: 2, tier: 4, checks: [http] }
825 + - { id: obs-appdynamics-docs, name: "AppDynamics (Cisco) docs", host: docs.appdynamics.com, cat: developer, provider: cisco, cc: US, imp: 2, tier: 4, checks: [http] }
826 + - { id: obs-appdynamics-status, name: "AppDynamics (Cisco) status page", host: status.appdynamics.com, cat: developer, provider: cisco, cc: US, imp: 2, tier: 4, checks: [http] }
827 + - { id: obs-appdynamics-community, name: "AppDynamics (Cisco) community", host: community.appdynamics.com, cat: developer, provider: cisco, cc: US, imp: 2, tier: 4, checks: [http] }
828 + - { id: obs-appdynamics-download, name: "AppDynamics (Cisco) downloads", host: download.appdynamics.com, cat: developer, provider: cisco, cc: US, imp: 2, tier: 4, checks: [http] }
829 + - { id: obs-splunk-hosts-docs, name: "Splunk hosts docs", host: docs.splunk.com, cat: developer, provider: splunk, cc: US, imp: 3, tier: 4, checks: [http] }
830 + - { id: obs-splunk-hosts-status, name: "Splunk hosts status page", host: status.splunk.com, cat: developer, provider: splunk, cc: US, imp: 3, tier: 4, checks: [http] }
831 + - { id: obs-splunk-hosts-community, name: "Splunk hosts community", host: community.splunk.com, cat: developer, provider: splunk, cc: US, imp: 3, tier: 4, checks: [http] }
832 + - { id: obs-splunk-hosts-splunkbase, name: "Splunk hosts splunkbase", host: splunkbase.splunk.com, cat: developer, provider: splunk, cc: US, imp: 3, tier: 4, checks: [http] }
833 + - { id: obs-splunk-hosts-dev, name: "Splunk hosts dev", host: dev.splunk.com, cat: developer, provider: splunk, cc: US, imp: 3, tier: 4, checks: [http] }
834 + - { id: obs-splunk-hosts-lantern, name: "Splunk hosts lantern", host: lantern.splunk.com, cat: developer, provider: splunk, cc: US, imp: 3, tier: 4, checks: [http] }
835 + - { id: obs-splunk-hosts-download, name: "Splunk hosts downloads", host: download.splunk.com, cat: developer, provider: splunk, cc: US, imp: 3, tier: 4, checks: [http] }
836 + - { id: obs-grafana-hosts-play, name: "Grafana Labs hosts play", host: play.grafana.org, cat: developer, provider: grafana, svc: grafana, cc: US, imp: 4, tier: 3, checks: [http] }
837 + - { id: obs-grafana-hosts-community, name: "Grafana Labs hosts community", host: community.grafana.com, cat: developer, provider: grafana, svc: grafana, cc: US, imp: 4, tier: 3, checks: [http] }
838 + - { id: obs-grafana-hosts-grafana-net, name: "Grafana Labs hosts grafana net", host: grafana.net, cat: developer, provider: grafana, svc: grafana, cc: US, imp: 4, tier: 3, checks: [http] }
839 + - { id: obs-grafana-hosts-docs, name: "Grafana Labs hosts docs", host: grafana.com, url: "https://grafana.com/docs/", cat: developer, provider: grafana, svc: grafana, cc: US, imp: 4, tier: 3, checks: [http, dns] }
840 + - { id: obs-grafana-hosts-packages, name: "Grafana Labs hosts packages", host: packages.grafana.com, cat: developer, provider: grafana, svc: grafana, cc: US, imp: 4, tier: 3, checks: [http] }
841 + - { id: obs-grafana-hosts-raintank, name: "Grafana Labs hosts raintank", host: raintank-apt.s3.amazonaws.com, cat: developer, provider: grafana, svc: grafana, cc: US, imp: 4, tier: 3, checks: [http] }
842 + - { id: obs-grafana-hosts-dl, name: "Grafana Labs hosts downloads", host: dl.grafana.com, url: "https://dl.grafana.com/oss/release/", cat: developer, provider: grafana, svc: grafana, cc: US, imp: 4, tier: 3, checks: [http, dns] }
843 + - { id: obs-grafana-hosts-demo-prom, name: "Grafana Labs hosts demo prom", host: demo.promlabs.com, url: "https://demo.promlabs.com/-/ready", cat: developer, provider: grafana, svc: grafana, cc: US, imp: 4, tier: 3, checks: [http, dns] }
844 + - { id: obs-grafana-hosts-promlabs, name: "Grafana Labs hosts promlabs", host: promlabs.com, cat: developer, provider: grafana, svc: grafana, cc: US, imp: 4, tier: 3, checks: [http] }
845 + - { id: obs-elastic-hosts-status, name: "Elastic hosts status page", host: status.elastic.co, cat: developer, provider: elastic, svc: elastic, cc: US, imp: 3, tier: 4, checks: [http] }
846 + - { id: obs-elastic-hosts-docs, name: "Elastic hosts docs", host: www.elastic.co, url: "https://www.elastic.co/docs", cat: developer, provider: elastic, svc: elastic, cc: US, imp: 3, tier: 4, checks: [http] }
847 + - { id: obs-elastic-hosts-discuss, name: "Elastic hosts discussion forum", host: discuss.elastic.co, cat: developer, provider: elastic, svc: elastic, cc: US, imp: 3, tier: 4, checks: [http] }
848 + - { id: obs-elastic-hosts-artifacts, name: "Elastic hosts artifacts", host: artifacts.elastic.co, url: "https://artifacts.elastic.co/GPG-KEY-elasticsearch", cat: developer, provider: elastic, svc: elastic, cc: US, imp: 3, tier: 4, checks: [http] }
849 + - { id: obs-elastic-hosts-cloud, name: "Elastic hosts cloud", host: cloud.elastic.co, cat: developer, provider: elastic, svc: elastic, cc: US, imp: 3, tier: 4, checks: [http] }
850 + - { id: obs-elastic-hosts-epr, name: "Elastic hosts epr", host: epr.elastic.co, url: "https://epr.elastic.co/search?package=nginx&limit=1", cat: developer, provider: elastic, svc: elastic, cc: US, imp: 3, tier: 4, checks: [http] }
851 + - { id: obs-elastic-hosts-docker, name: "Elastic hosts docker", host: docker.elastic.co, url: "https://docker.elastic.co/v2/", cat: developer, provider: elastic, svc: elastic, cc: US, imp: 3, tier: 4, checks: [http] }
852 + - { id: obs-elastic-hosts-opensearch, name: "Elastic hosts opensearch", host: opensearch.org, cat: developer, provider: elastic, svc: elastic, cc: US, imp: 3, tier: 4, checks: [http] }
853 + - { id: obs-elastic-hosts-opensearch-artifacts, name: "Elastic hosts opensearch artifacts", host: artifacts.opensearch.org, url: "https://artifacts.opensearch.org/releases/bundle/opensearch/index.json", cat: developer, provider: elastic, svc: elastic, cc: US, imp: 3, tier: 4, checks: [http] }
854 + - { id: obs-honeycomb-hosts-status, name: "Honeycomb hosts status page", host: status.honeycomb.io, cat: developer, provider: honeycomb, svc: honeycomb, cc: US, imp: 3, tier: 4, checks: [http] }
855 + - { id: obs-honeycomb-hosts-docs, name: "Honeycomb hosts docs", host: docs.honeycomb.io, cat: developer, provider: honeycomb, svc: honeycomb, cc: US, imp: 3, tier: 4, checks: [http] }
856 + - { id: obs-honeycomb-hosts-api, name: "Honeycomb hosts API", host: api.honeycomb.io, url: "https://api.honeycomb.io/1/auth", cat: developer, provider: honeycomb, svc: honeycomb, cc: US, imp: 3, tier: 4, checks: [http] }
857 + - { id: obs-honeycomb-hosts-ui, name: "Honeycomb hosts UI", host: ui.honeycomb.io, cat: developer, provider: honeycomb, svc: honeycomb, cc: US, imp: 3, tier: 4, checks: [http] }
858 + - { id: obs-chronosphere, name: "Chronosphere", host: chronosphere.io, cat: developer, provider: chronosphere, cc: US, imp: 2, tier: 4, checks: [http] }
859 + - { id: obs-chronosphere-docs, name: "Chronosphere docs", host: docs.chronosphere.io, cat: developer, provider: chronosphere, cc: US, imp: 2, tier: 4, checks: [http] }
860 + - { id: obs-chronosphere-status, name: "Chronosphere status page", host: status.chronosphere.io, cat: developer, provider: chronosphere, cc: US, imp: 2, tier: 4, checks: [http] }
861 + - { id: obs-lightstep, name: "ServiceNow Cloud Observability (Lightstep)", host: lightstep.com, cat: developer, provider: servicenow, cc: US, imp: 2, tier: 4, checks: [http] }
862 + - { id: obs-lightstep-docs, name: "ServiceNow Cloud Observability (Lightstep) docs", host: docs.lightstep.com, cat: developer, provider: servicenow, cc: US, imp: 2, tier: 4, checks: [http] }
863 + - { id: obs-lightstep-status, name: "ServiceNow Cloud Observability (Lightstep) status page", host: status.lightstep.com, cat: developer, provider: servicenow, cc: US, imp: 2, tier: 4, checks: [http] }
864 + - { id: obs-lightstep-api, name: "ServiceNow Cloud Observability (Lightstep) API", host: api.lightstep.com, cat: developer, provider: servicenow, cc: US, imp: 2, tier: 4, checks: [http] }
865 + - { id: obs-betterstack-hosts-status, name: "Better Stack hosts status page", host: status.betterstack.com, cat: developer, provider: betterstack, cc: CZ, imp: 3, tier: 4, checks: [http] }
866 + - { id: obs-betterstack-hosts-uptime, name: "Better Stack hosts uptime", host: uptime.betterstack.com, cat: developer, provider: betterstack, cc: CZ, imp: 3, tier: 4, checks: [http] }
867 + - { id: obs-betterstack-hosts-logs, name: "Better Stack hosts logs", host: logs.betterstack.com, cat: developer, provider: betterstack, cc: CZ, imp: 3, tier: 4, checks: [http] }
868 + - { id: obs-betterstack-hosts-telemetry, name: "Better Stack hosts telemetry", host: telemetry.betterstack.com, cat: developer, provider: betterstack, cc: CZ, imp: 3, tier: 4, checks: [http] }
869 + - { id: obs-betterstack-hosts-in, name: "Better Stack hosts in", host: in.logs.betterstack.com, cat: developer, provider: betterstack, cc: CZ, imp: 3, tier: 4, checks: [http] }
870 + - { id: obs-betterstack-hosts-docs, name: "Better Stack hosts docs", host: betterstack.com, url: "https://betterstack.com/docs", cat: developer, provider: betterstack, cc: CZ, imp: 3, tier: 4, checks: [http] }
871 + - { id: obs-papertrail-papertrail, name: "Papertrail / Loggly / Pingdom (SolarWinds) papertrail", host: www.papertrail.com, cat: developer, provider: solarwinds, cc: US, imp: 2, tier: 4, checks: [http] }
872 + - { id: obs-papertrail-papertrail-app, name: "Papertrail / Loggly / Pingdom (SolarWinds) papertrail app", host: papertrailapp.com, cat: developer, provider: solarwinds, cc: US, imp: 2, tier: 4, checks: [http] }
873 + - { id: obs-papertrail-loggly, name: "Papertrail / Loggly / Pingdom (SolarWinds) loggly", host: www.loggly.com, cat: developer, provider: solarwinds, cc: US, imp: 2, tier: 4, checks: [http] }
874 + - { id: obs-papertrail-loggly-status, name: "Papertrail / Loggly / Pingdom (SolarWinds) loggly status", host: status.loggly.com, cat: developer, provider: solarwinds, cc: US, imp: 2, tier: 4, checks: [http] }
875 + - { id: obs-papertrail-loggly-docs, name: "Papertrail / Loggly / Pingdom (SolarWinds) loggly docs", host: documentation.solarwinds.com, cat: developer, provider: solarwinds, cc: US, imp: 2, tier: 4, checks: [http] }
876 + - { id: obs-papertrail-solarwinds, name: "Papertrail / Loggly / Pingdom (SolarWinds) solarwinds", host: www.solarwinds.com, cat: developer, provider: solarwinds, cc: US, imp: 2, tier: 4, checks: [http] }
877 + - { id: obs-papertrail-pingdom-status, name: "Papertrail / Loggly / Pingdom (SolarWinds) pingdom status", host: status.pingdom.com, cat: developer, provider: solarwinds, cc: US, imp: 2, tier: 4, checks: [http] }
878 + - { id: obs-papertrail-pingdom-api, name: "Papertrail / Loggly / Pingdom (SolarWinds) pingdom api", host: api.pingdom.com, url: "https://api.pingdom.com/api/3.1/", cat: developer, provider: solarwinds, cc: US, imp: 2, tier: 4, checks: [http] }
879 + - { id: obs-papertrail-pingdom-tools, name: "Papertrail / Loggly / Pingdom (SolarWinds) pingdom tools", host: tools.pingdom.com, cat: developer, provider: solarwinds, cc: US, imp: 2, tier: 4, checks: [http] }
880 + - { id: obs-sumologic, name: "Sumo Logic", host: www.sumologic.com, cat: developer, provider: sumologic, svc: sumologic, cc: US, imp: 3, tier: 4, checks: [http] }
881 + - { id: obs-sumologic-status, name: "Sumo Logic status page", host: status.sumologic.com, cat: developer, provider: sumologic, svc: sumologic, cc: US, imp: 3, tier: 4, checks: [http] }
882 + - { id: obs-sumologic-help, name: "Sumo Logic help centre", host: help.sumologic.com, cat: developer, provider: sumologic, svc: sumologic, cc: US, imp: 3, tier: 4, checks: [http] }
883 + - { id: obs-sumologic-api, name: "Sumo Logic API", host: api.sumologic.com, url: "https://api.sumologic.com/api/v1/", cat: developer, provider: sumologic, svc: sumologic, cc: US, imp: 3, tier: 4, checks: [http] }
884 + - { id: obs-sumologic-service, name: "Sumo Logic service", host: service.sumologic.com, cat: developer, provider: sumologic, svc: sumologic, cc: US, imp: 3, tier: 4, checks: [http] }
885 + - { id: obs-axiom, name: "Axiom", host: axiom.co, cat: developer, provider: axiom, svc: axiom, cc: US, imp: 2, tier: 4, checks: [http] }
886 + - { id: obs-axiom-status, name: "Axiom status page", host: status.axiom.co, cat: developer, provider: axiom, svc: axiom, cc: US, imp: 2, tier: 4, checks: [http] }
887 + - { id: obs-axiom-api, name: "Axiom API", host: api.axiom.co, url: "https://api.axiom.co/v1/", cat: developer, provider: axiom, svc: axiom, cc: US, imp: 2, tier: 4, checks: [http] }
888 + - { id: obs-axiom-cloud, name: "Axiom cloud", host: cloud.axiom.co, cat: developer, provider: axiom, svc: axiom, cc: US, imp: 2, tier: 4, checks: [http] }
889 + - { id: obs-cribl, name: "Cribl", host: cribl.io, cat: developer, provider: cribl, svc: cribl, cc: US, imp: 2, tier: 4, checks: [http] }
890 + - { id: obs-cribl-docs, name: "Cribl docs", host: docs.cribl.io, cat: developer, provider: cribl, svc: cribl, cc: US, imp: 2, tier: 4, checks: [http] }
891 + - { id: obs-cribl-status, name: "Cribl status page", host: status.cribl.cloud, cat: developer, provider: cribl, svc: cribl, cc: US, imp: 2, tier: 4, checks: [http] }
892 + - { id: obs-cribl-cdn, name: "Cribl CDN", host: cdn.cribl.io, cat: developer, provider: cribl, svc: cribl, cc: US, imp: 2, tier: 4, checks: [http] }
893 + - { id: obs-cribl-community, name: "Cribl community", host: curious.cribl.io, cat: developer, provider: cribl, svc: cribl, cc: US, imp: 2, tier: 4, checks: [http] }
894 + - { id: obs-logzio-logz, name: "Logz.io / Coralogix / Mezmo / Sematext logz", host: logz.io, cat: developer, provider: logzio, svc: logzio, cc: IL, imp: 2, tier: 4, checks: [http] }
895 + - { id: obs-logzio-logz-status, name: "Logz.io / Coralogix / Mezmo / Sematext logz status", host: status.logz.io, cat: developer, provider: logzio, svc: logzio, cc: IL, imp: 2, tier: 4, checks: [http] }
896 + - { id: obs-logzio-logz-docs, name: "Logz.io / Coralogix / Mezmo / Sematext logz docs", host: docs.logz.io, cat: developer, provider: logzio, svc: logzio, cc: IL, imp: 2, tier: 4, checks: [http] }
897 + - { id: obs-logzio-coralogix, name: "Logz.io / Coralogix / Mezmo / Sematext coralogix", host: coralogix.com, cat: developer, provider: logzio, svc: logzio, cc: IL, imp: 2, tier: 4, checks: [http] }
898 + - { id: obs-logzio-coralogix-status, name: "Logz.io / Coralogix / Mezmo / Sematext coralogix status", host: status.coralogix.com, cat: developer, provider: logzio, svc: logzio, cc: IL, imp: 2, tier: 4, checks: [http] }
899 + - { id: obs-logzio-mezmo, name: "Logz.io / Coralogix / Mezmo / Sematext mezmo", host: www.mezmo.com, cat: developer, provider: logzio, svc: logzio, cc: IL, imp: 2, tier: 4, checks: [http] }
900 + - { id: obs-logzio-mezmo-status, name: "Logz.io / Coralogix / Mezmo / Sematext mezmo status", host: status.mezmo.com, cat: developer, provider: logzio, svc: logzio, cc: IL, imp: 2, tier: 4, checks: [http] }
901 + - { id: obs-logzio-sematext, name: "Logz.io / Coralogix / Mezmo / Sematext sematext", host: sematext.com, cat: developer, provider: logzio, svc: logzio, cc: IL, imp: 2, tier: 4, checks: [http] }
902 + - { id: obs-logzio-sematext-status, name: "Logz.io / Coralogix / Mezmo / Sematext sematext status", host: status.sematext.com, cat: developer, provider: logzio, svc: logzio, cc: IL, imp: 2, tier: 4, checks: [http] }
903 + - { id: obs-logrocket, name: "LogRocket / Highlight / OpenReplay", host: logrocket.com, cat: developer, provider: logrocket, svc: logrocket, cc: US, imp: 2, tier: 4, checks: [http] }
904 + - { id: obs-logrocket-logrocket-status, name: "LogRocket / Highlight / OpenReplay logrocket status", host: status.logrocket.com, cat: developer, provider: logrocket, svc: logrocket, cc: US, imp: 2, tier: 4, checks: [http] }
905 + - { id: obs-logrocket-logrocket-docs, name: "LogRocket / Highlight / OpenReplay logrocket docs", host: docs.logrocket.com, cat: developer, provider: logrocket, svc: logrocket, cc: US, imp: 2, tier: 4, checks: [http] }
906 + - { id: obs-logrocket-highlight, name: "LogRocket / Highlight / OpenReplay highlight", host: www.highlight.io, cat: developer, provider: logrocket, svc: logrocket, cc: US, imp: 2, tier: 4, checks: [http] }
907 + - { id: obs-logrocket-openreplay, name: "LogRocket / Highlight / OpenReplay openreplay", host: openreplay.com, cat: developer, provider: logrocket, svc: logrocket, cc: US, imp: 2, tier: 4, checks: [http] }
908 + - { id: obs-logrocket-posthog, name: "LogRocket / Highlight / OpenReplay posthog", host: posthog.com, cat: developer, provider: logrocket, svc: logrocket, cc: US, imp: 2, tier: 4, checks: [http] }
909 + - { id: obs-logrocket-posthog-status, name: "LogRocket / Highlight / OpenReplay posthog status", host: status.posthog.com, cat: developer, provider: logrocket, svc: logrocket, cc: US, imp: 2, tier: 4, checks: [http] }
910 + - { id: obs-logrocket-posthog-us, name: "LogRocket / Highlight / OpenReplay posthog us", host: us.i.posthog.com, url: "https://us.i.posthog.com/", cat: developer, provider: logrocket, svc: logrocket, cc: US, imp: 2, tier: 4, checks: [http] }
911 + - { id: obs-logrocket-posthog-eu, name: "LogRocket / Highlight / OpenReplay posthog eu", host: eu.i.posthog.com, url: "https://eu.i.posthog.com/", cat: developer, provider: logrocket, svc: logrocket, cc: US, imp: 2, tier: 4, checks: [http] }
912 + - { id: obs-pagerduty-hosts-status, name: "PagerDuty hosts status page", host: status.pagerduty.com, cat: developer, provider: pagerduty, cc: US, imp: 4, tier: 3, checks: [http] }
913 + - { id: obs-pagerduty-hosts-api, name: "PagerDuty hosts API", host: api.pagerduty.com, url: "https://api.pagerduty.com/", cat: developer, provider: pagerduty, cc: US, imp: 4, tier: 3, checks: [http, dns] }
914 + - { id: obs-pagerduty-hosts-events, name: "PagerDuty hosts events", host: events.pagerduty.com, url: "https://events.pagerduty.com/", cat: developer, provider: pagerduty, cc: US, imp: 4, tier: 3, checks: [http, dns] }
915 + - { id: obs-pagerduty-hosts-support, name: "PagerDuty hosts support", host: support.pagerduty.com, cat: developer, provider: pagerduty, cc: US, imp: 4, tier: 3, checks: [http] }
916 + - { id: obs-pagerduty-hosts-developer, name: "PagerDuty hosts developer portal", host: developer.pagerduty.com, cat: developer, provider: pagerduty, cc: US, imp: 4, tier: 3, checks: [http] }
917 + - { id: obs-pagerduty-hosts-community, name: "PagerDuty hosts community", host: community.pagerduty.com, cat: developer, provider: pagerduty, cc: US, imp: 4, tier: 3, checks: [http] }
918 + - { id: obs-pagerduty-hosts-eu, name: "PagerDuty hosts eu", host: api.eu.pagerduty.com, url: "https://api.eu.pagerduty.com/", cat: developer, provider: pagerduty, cc: US, imp: 4, tier: 3, checks: [http, dns] }
919 + - { id: obs-pagerduty-hosts-app, name: "PagerDuty hosts app", host: app.pagerduty.com, cat: developer, provider: pagerduty, cc: US, imp: 4, tier: 3, checks: [http] }
920 + - { id: obs-opsgenie, name: "Opsgenie (Atlassian)", host: www.atlassian.com, url: "https://www.atlassian.com/software/opsgenie", cat: developer, provider: atlassian, svc: atlassian, cc: AU, imp: 3, tier: 4, checks: [http] }
921 + - { id: obs-opsgenie-api, name: "Opsgenie (Atlassian) API", host: api.opsgenie.com, url: "https://api.opsgenie.com/v2/heartbeats/ping", cat: developer, provider: atlassian, svc: atlassian, cc: AU, imp: 3, tier: 4, checks: [http] }
922 + - { id: obs-opsgenie-status, name: "Opsgenie (Atlassian) status page", host: opsgenie.status.atlassian.com, url: "https://opsgenie.status.atlassian.com/api/v2/summary.json", cat: developer, provider: atlassian, svc: atlassian, cc: AU, imp: 3, tier: 4, checks: [http] }
923 + - { id: obs-opsgenie-eu, name: "Opsgenie (Atlassian) eu", host: api.eu.opsgenie.com, url: "https://api.eu.opsgenie.com/v2/heartbeats/ping", cat: developer, provider: atlassian, svc: atlassian, cc: AU, imp: 3, tier: 4, checks: [http] }
924 + - { id: obs-incidentio-status, name: "incident.io status page", host: status.incident.io, cat: developer, provider: incidentio, svc: incidentio, cc: GB, imp: 3, tier: 4, checks: [http] }
925 + - { id: obs-incidentio-api, name: "incident.io API", host: api.incident.io, url: "https://api.incident.io/v1/identity", cat: developer, provider: incidentio, svc: incidentio, cc: GB, imp: 3, tier: 4, checks: [http] }
926 + - { id: obs-incidentio-help, name: "incident.io help centre", host: help.incident.io, cat: developer, provider: incidentio, svc: incidentio, cc: GB, imp: 3, tier: 4, checks: [http] }
927 + - { id: obs-firehydrant, name: "FireHydrant", host: firehydrant.com, cat: developer, provider: firehydrant, cc: US, imp: 2, tier: 4, checks: [http] }
928 + - { id: obs-firehydrant-docs, name: "FireHydrant docs", host: docs.firehydrant.com, cat: developer, provider: firehydrant, cc: US, imp: 2, tier: 4, checks: [http] }
929 + - { id: obs-firehydrant-status, name: "FireHydrant status page", host: status.firehydrant.com, cat: developer, provider: firehydrant, cc: US, imp: 2, tier: 4, checks: [http] }
930 + - { id: obs-firehydrant-api, name: "FireHydrant API", host: api.firehydrant.io, url: "https://api.firehydrant.io/v1/ping", cat: developer, provider: firehydrant, cc: US, imp: 2, tier: 4, checks: [http] }
931 + - { id: obs-rootly, name: "Rootly", host: rootly.com, cat: developer, provider: rootly, cc: US, imp: 2, tier: 4, checks: [http] }
932 + - { id: obs-rootly-docs, name: "Rootly docs", host: docs.rootly.com, cat: developer, provider: rootly, cc: US, imp: 2, tier: 4, checks: [http] }
933 + - { id: obs-rootly-status, name: "Rootly status page", host: status.rootly.com, cat: developer, provider: rootly, cc: US, imp: 2, tier: 4, checks: [http] }
934 + - { id: obs-rootly-api, name: "Rootly API", host: api.rootly.com, url: "https://api.rootly.com/v1/", cat: developer, provider: rootly, cc: US, imp: 2, tier: 4, checks: [http] }
935 + - { id: obs-blameless-blameless, name: "Blameless / Squadcast / xMatters / Everbridge blameless", host: www.blameless.com, cat: developer, provider: blameless, cc: US, imp: 2, tier: 4, checks: [http] }
936 + - { id: obs-blameless-squadcast, name: "Blameless / Squadcast / xMatters / Everbridge squadcast", host: www.squadcast.com, cat: developer, provider: blameless, cc: US, imp: 2, tier: 4, checks: [http] }
937 + - { id: obs-blameless-squadcast-status, name: "Blameless / Squadcast / xMatters / Everbridge squadcast status", host: status.squadcast.com, cat: developer, provider: blameless, cc: US, imp: 2, tier: 4, checks: [http] }
938 + - { id: obs-blameless-xmatters, name: "Blameless / Squadcast / xMatters / Everbridge xmatters", host: www.xmatters.com, cat: developer, provider: blameless, cc: US, imp: 2, tier: 4, checks: [http] }
939 + - { id: obs-blameless-xmatters-status, name: "Blameless / Squadcast / xMatters / Everbridge xmatters status", host: status.xmatters.com, cat: developer, provider: blameless, cc: US, imp: 2, tier: 4, checks: [http] }
940 + - { id: obs-statuspage-hosts-meta-api, name: "Atlassian Statuspage hosts meta api", host: metastatuspage.com, url: "https://metastatuspage.com/api/v2/summary.json", cat: developer, provider: atlassian, svc: atlassian, cc: AU, imp: 4, tier: 3, checks: [http, dns] }
941 + - { id: obs-instatus-instatus-api, name: "Instatus / Statuspal / Hund / Cachet instatus api", host: api.instatus.com, url: "https://api.instatus.com/v1/", cat: developer, provider: instatus, cc: US, imp: 2, tier: 4, checks: [http] }
942 + - { id: obs-instatus-instatus-status, name: "Instatus / Statuspal / Hund / Cachet instatus status", host: status.instatus.com, cat: developer, provider: instatus, cc: US, imp: 2, tier: 4, checks: [http] }
943 + - { id: obs-instatus-statuspal, name: "Instatus / Statuspal / Hund / Cachet statuspal", host: statuspal.io, cat: developer, provider: instatus, cc: US, imp: 2, tier: 4, checks: [http] }
944 + - { id: obs-instatus-openstatus, name: "Instatus / Statuspal / Hund / Cachet openstatus", host: www.openstatus.dev, cat: developer, provider: instatus, cc: US, imp: 2, tier: 4, checks: [http] }
945 + - { id: obs-instatus-openstatus-status, name: "Instatus / Statuspal / Hund / Cachet openstatus status", host: status.openstatus.dev, cat: developer, provider: instatus, cc: US, imp: 2, tier: 4, checks: [http] }
946 + - { id: obs-instatus-statushub, name: "Instatus / Statuspal / Hund / Cachet statushub", host: statushub.com, cat: developer, provider: instatus, cc: US, imp: 2, tier: 4, checks: [http] }
947 + - { id: obs-uptimerobot-hosts-status, name: "UptimeRobot hosts status page", host: stats.uptimerobot.com, url: "https://stats.uptimerobot.com/", cat: developer, provider: uptimerobot, cc: MT, imp: 2, tier: 4, checks: [http] }
948 + - { id: obs-uptimerobot-hosts-api, name: "UptimeRobot hosts API", host: api.uptimerobot.com, url: "https://api.uptimerobot.com/v2/getMonitors", cat: developer, provider: uptimerobot, cc: MT, imp: 2, tier: 4, checks: [http] }
949 + - { id: obs-uptimerobot-hosts-kb, name: "UptimeRobot hosts kb", host: uptimerobot.com, url: "https://uptimerobot.com/api/", cat: developer, provider: uptimerobot, cc: MT, imp: 2, tier: 4, checks: [http] }
950 + - { id: obs-statuscake-status, name: "StatusCake status page", host: status.statuscake.com, cat: developer, provider: statuscake, svc: statuscake, cc: GB, imp: 2, tier: 4, checks: [http] }
951 + - { id: obs-statuscake-api, name: "StatusCake API", host: api.statuscake.com, url: "https://api.statuscake.com/v1/", cat: developer, provider: statuscake, svc: statuscake, cc: GB, imp: 2, tier: 4, checks: [http] }
952 + - { id: obs-checkly-status, name: "Checkly status page", host: status.checklyhq.com, cat: developer, provider: checkly, cc: DE, imp: 2, tier: 4, checks: [http] }
953 + - { id: obs-checkly-api, name: "Checkly API", host: api.checklyhq.com, url: "https://api.checklyhq.com/v1/", cat: developer, provider: checkly, cc: DE, imp: 2, tier: 4, checks: [http] }
954 + - { id: obs-uptime-com, name: "Uptime.com", host: uptime.com, cat: developer, provider: uptime, cc: US, imp: 2, tier: 4, checks: [http] }
955 + - { id: obs-uptime-com-status, name: "Uptime.com status page", host: status.uptime.com, cat: developer, provider: uptime, cc: US, imp: 2, tier: 4, checks: [http] }
956 + - { id: obs-uptime-com-support, name: "Uptime.com support", host: support.uptime.com, cat: developer, provider: uptime, cc: US, imp: 2, tier: 4, checks: [http] }
957 + - { id: obs-site24x7-status, name: "Site24x7 (Zoho) status page", host: status.site24x7.com, cat: developer, provider: zoho, cc: IN, imp: 2, tier: 4, checks: [http] }
958 + - { id: obs-site24x7-eu, name: "Site24x7 (Zoho) eu", host: www.site24x7.eu, cat: developer, provider: zoho, cc: IN, imp: 2, tier: 4, checks: [http] }
959 + - { id: obs-catchpoint-hosts-status, name: "Catchpoint hosts status page", host: status.catchpoint.com, cat: developer, provider: catchpoint, svc: catchpoint, cc: US, imp: 3, tier: 4, checks: [http] }
960 + - { id: obs-catchpoint-hosts-support, name: "Catchpoint hosts support", host: support.catchpoint.com, cat: developer, provider: catchpoint, svc: catchpoint, cc: US, imp: 3, tier: 4, checks: [http] }
961 + - { id: obs-catchpoint-hosts-webpagetest, name: "Catchpoint hosts webpagetest", host: www.webpagetest.org, cat: developer, provider: catchpoint, svc: catchpoint, cc: US, imp: 3, tier: 4, checks: [http] }
962 + - { id: obs-thousandeyes-hosts-status, name: "Cisco ThousandEyes hosts status page", host: status.thousandeyes.com, cat: developer, provider: thousandeyes, svc: thousandeyes, cc: US, imp: 3, tier: 4, checks: [http] }
963 + - { id: obs-thousandeyes-hosts-docs, name: "Cisco ThousandEyes hosts docs", host: docs.thousandeyes.com, cat: developer, provider: thousandeyes, svc: thousandeyes, cc: US, imp: 3, tier: 4, checks: [http] }
964 + - { id: obs-thousandeyes-hosts-developer, name: "Cisco ThousandEyes hosts developer portal", host: developer.thousandeyes.com, cat: developer, provider: thousandeyes, svc: thousandeyes, cc: US, imp: 3, tier: 4, checks: [http] }
965 + - { id: obs-thousandeyes-hosts-api, name: "Cisco ThousandEyes hosts API", host: api.thousandeyes.com, url: "https://api.thousandeyes.com/v7/status", cat: developer, provider: thousandeyes, svc: thousandeyes, cc: US, imp: 3, tier: 4, checks: [http] }
966 + - { id: obs-kentik-hosts-status, name: "Kentik hosts status page", host: status.kentik.com, cat: developer, provider: kentik, svc: kentik, cc: US, imp: 3, tier: 4, checks: [http] }
967 + - { id: obs-kentik-hosts-kb, name: "Kentik hosts kb", host: kb.kentik.com, cat: developer, provider: kentik, svc: kentik, cc: US, imp: 3, tier: 4, checks: [http] }
968 + - { id: obs-kentik-hosts-api, name: "Kentik hosts API", host: api.kentik.com, url: "https://api.kentik.com/api/v5/", cat: developer, provider: kentik, svc: kentik, cc: US, imp: 3, tier: 4, checks: [http] }
969 + - { id: obs-cloudflare-radar-radar-api, name: "Cloudflare Radar radar api", host: api.cloudflare.com, url: "https://api.cloudflare.com/client/v4/radar/annotations/outages?limit=1", cat: developer, provider: cloudflare, svc: cloudflare, cc: null, imp: 4, tier: 2, checks: [http, dns] }
970 + - { id: obs-cloudflare-radar-radar-url, name: "Cloudflare Radar radar url", host: radar.cloudflare.com, url: "https://radar.cloudflare.com/outage-center", cat: developer, provider: cloudflare, svc: cloudflare, cc: null, imp: 4, tier: 3, checks: [http, dns] }
971 + - { id: obs-cloudflare-radar-trace, name: "Cloudflare Radar trace", host: www.cloudflare.com, url: "https://www.cloudflare.com/cdn-cgi/trace", cat: developer, provider: cloudflare, svc: cloudflare, cc: null, imp: 4, tier: 2, checks: [http, dns] }
972 + - { id: obs-cloudflare-radar-speed-api, name: "Cloudflare Radar speed api", host: speed.cloudflare.com, url: "https://speed.cloudflare.com/__down?bytes=1000", cat: developer, provider: cloudflare, svc: cloudflare, cc: null, imp: 4, tier: 2, checks: [http, dns] }
973 + - { id: obs-cloudflare-radar-status-api, name: "Cloudflare Radar status api", host: www.cloudflarestatus.com, url: "https://www.cloudflarestatus.com/api/v2/summary.json", cat: developer, provider: cloudflare, svc: cloudflare, cc: null, imp: 4, tier: 2, checks: [http, dns] }
974 + - { id: obs-downdetector-de, name: "Downdetector (Ookla) de", host: allestoerungen.de, cat: infrastructure, provider: ookla, cc: US, imp: 3, tier: 4, checks: [http] }
975 + - { id: obs-downdetector-nl, name: "Downdetector (Ookla) nl", host: allestoringen.nl, cat: infrastructure, provider: ookla, cc: US, imp: 3, tier: 4, checks: [http] }
976 + - { id: obs-downdetector-mx, name: "Downdetector (Ookla) mx", host: downdetector.mx, cat: infrastructure, provider: ookla, cc: US, imp: 3, tier: 4, checks: [http] }
977 + - { id: obs-downdetector-es, name: "Downdetector (Ookla) es", host: downdetector.es, cat: infrastructure, provider: ookla, cc: US, imp: 3, tier: 4, checks: [http] }
978 + - { id: obs-downdetector-it, name: "Downdetector (Ookla) it", host: downdetector.it, cat: infrastructure, provider: ookla, cc: US, imp: 3, tier: 4, checks: [http] }
979 + - { id: obs-ookla-fast-api, name: "Ookla Speedtest fast api", host: api.fast.com, url: "https://api.fast.com/netflix/speedtest/v2?https=true&token=YXNkZmFzZGxmbnNkYWZoYXNkZmhrYWxm&urlCount=1", cat: infrastructure, provider: ookla, cc: US, imp: 3, tier: 4, checks: [http] }
980 + - { id: obs-ripe-atlas-ipmap, name: "RIPE Atlas / RIPEstat ipmap", host: ipmap.ripe.net, cat: infrastructure, provider: ripe, svc: ripe, cc: NL, imp: 4, tier: 3, checks: [http] }
981 + - { id: obs-isitdown-isup, name: "Down-checker sites isup", host: isup.me, cat: infrastructure, provider: isitdown, cc: null, imp: 2, tier: 4, checks: [http] }
982 + - { id: obs-isitdown-downdetector-status, name: "Down-checker sites downdetector status", host: downdetector.statuspage.io, cat: infrastructure, provider: isitdown, cc: null, imp: 2, tier: 4, checks: [http] }
983 + - { id: obs-internet-health-ioda-api, name: "Internet health observatories ioda api", host: api.ioda.inetintel.cc.gatech.edu, url: "https://api.ioda.inetintel.cc.gatech.edu/v2/entities/query?entityType=country&limit=1", cat: infrastructure, provider: ioda, cc: null, imp: 4, tier: 3, checks: [http, dns] }
984 + - { id: obs-internet-health-ooni-api, name: "Internet health observatories ooni api", host: api.ooni.io, url: "https://api.ooni.io/api/v1/measurements?limit=1", cat: infrastructure, provider: ioda, cc: null, imp: 4, tier: 3, checks: [http, dns] }
985 + - { id: obs-internet-health-ooni-explorer, name: "Internet health observatories ooni explorer", host: explorer.ooni.org, cat: infrastructure, provider: ioda, cc: null, imp: 4, tier: 3, checks: [http] }
986 + - { id: obs-internet-health-internet-map, name: "Internet health observatories internet map", host: www.internetlivestats.com, cat: infrastructure, provider: ioda, cc: null, imp: 4, tier: 3, checks: [http] }
987 + - { id: obs-bgp-tools-rpki-cloudflare, name: "BGP / routing observatories rpki cloudflare", host: rpki.cloudflare.com, cat: infrastructure, provider: bgptools, cc: null, imp: 4, tier: 3, checks: [http] }
988 + - { id: obs-bgp-tools-isbgpsafeyet, name: "BGP / routing observatories isbgpsafeyet", host: isbgpsafeyet.com, cat: infrastructure, provider: bgptools, cc: null, imp: 4, tier: 3, checks: [http] }
989 + - { id: obs-bgp-tools-qrator, name: "BGP / routing observatories qrator", host: radar.qrator.net, cat: infrastructure, provider: bgptools, cc: null, imp: 4, tier: 3, checks: [http] }
990 + - { id: obs-bgp-tools-cidr-report, name: "BGP / routing observatories cidr report", host: www.cidr-report.org, cat: infrastructure, provider: bgptools, cc: null, imp: 4, tier: 3, checks: [http] }
991 + - { id: obs-bgp-tools-asrank, name: "BGP / routing observatories asrank", host: asrank.caida.org, cat: infrastructure, provider: bgptools, cc: null, imp: 4, tier: 3, checks: [http] }
992 + - { id: obs-bgp-tools-asrank-api, name: "BGP / routing observatories asrank api", host: api.asrank.caida.org, url: "https://api.asrank.caida.org/v2/restful/asns/13335", cat: infrastructure, provider: bgptools, cc: null, imp: 4, tier: 3, checks: [http, dns] }
993 + - { id: obs-bgp-tools-ipinfo, name: "BGP / routing observatories ipinfo", host: ipinfo.io, url: "https://ipinfo.io/8.8.8.8/json", cat: infrastructure, provider: bgptools, cc: null, imp: 4, tier: 3, checks: [http, dns] }
994 + - { id: obs-bgp-tools-ipapi, name: "BGP / routing observatories ipapi", host: ipapi.co, url: "https://ipapi.co/8.8.8.8/json/", cat: infrastructure, provider: bgptools, cc: null, imp: 4, tier: 3, checks: [http, dns] }
995 + - { id: obs-bgp-tools-ip-api, name: "BGP / routing observatories ip api", host: ip-api.com, url: "http://ip-api.com/json/8.8.8.8", cat: infrastructure, provider: bgptools, cc: null, imp: 4, tier: 3, checks: [http, dns] }
996 + - { id: obs-bgp-tools-ipgeolocation, name: "BGP / routing observatories ipgeolocation", host: api.ipgeolocation.io, cat: infrastructure, provider: bgptools, cc: null, imp: 4, tier: 3, checks: [http] }
997 + - { id: obs-bgp-tools-ipwhois, name: "BGP / routing observatories ipwhois", host: ipwhois.app, url: "https://ipwhois.app/json/8.8.8.8", cat: infrastructure, provider: bgptools, cc: null, imp: 4, tier: 3, checks: [http, dns] }
998 + - { id: obs-bgp-tools-maxmind, name: "BGP / routing observatories maxmind", host: www.maxmind.com, cat: infrastructure, provider: bgptools, cc: null, imp: 4, tier: 3, checks: [http] }
999 + - { id: obs-bgp-tools-db-ip, name: "BGP / routing observatories db ip", host: db-ip.com, cat: infrastructure, provider: bgptools, cc: null, imp: 4, tier: 3, checks: [http] }
1000 + - { id: obs-bgp-tools-ipdata, name: "BGP / routing observatories ipdata", host: ipdata.co, cat: infrastructure, provider: bgptools, cc: null, imp: 4, tier: 3, checks: [http] }
1001 + - { id: obs-bgp-tools-ipregistry, name: "BGP / routing observatories ipregistry", host: ipregistry.co, cat: infrastructure, provider: bgptools, cc: null, imp: 4, tier: 3, checks: [http] }
1002 + - { id: obs-dns-tools-dnschecker, name: "DNS observatories & tools dnschecker", host: dnschecker.org, cat: infrastructure, provider: dnsviz, cc: null, imp: 3, tier: 4, checks: [http] }
1003 + - { id: obs-dns-tools-whatsmydns, name: "DNS observatories & tools whatsmydns", host: www.whatsmydns.net, cat: infrastructure, provider: dnsviz, cc: null, imp: 3, tier: 4, checks: [http] }
1004 + - { id: obs-dns-tools-intodns, name: "DNS observatories & tools intodns", host: intodns.com, cat: infrastructure, provider: dnsviz, cc: null, imp: 3, tier: 4, checks: [http] }
1005 + - { id: obs-dns-tools-dnsdumpster, name: "DNS observatories & tools dnsdumpster", host: dnsdumpster.com, cat: infrastructure, provider: dnsviz, cc: null, imp: 3, tier: 4, checks: [http] }
1006 + - { id: obs-dns-tools-dns-google-www, name: "DNS observatories & tools dns google www", host: dns.google, url: "https://dns.google/", cat: infrastructure, provider: dnsviz, cc: null, imp: 3, tier: 4, checks: [http] }
1007 + - { id: obs-dns-tools-zonemaster, name: "DNS observatories & tools zonemaster", host: zonemaster.net, cat: infrastructure, provider: dnsviz, cc: null, imp: 3, tier: 4, checks: [http] }
1008 + - { id: obs-dns-tools-dnspod-tools, name: "DNS observatories & tools dnspod tools", host: tool.dnspod.cn, cat: infrastructure, provider: dnsviz, cc: null, imp: 3, tier: 4, checks: [http] }
1009 + - { id: obs-dns-tools-iana-root, name: "DNS observatories & tools iana root", host: www.iana.org, url: "https://www.iana.org/domains/root/db", cat: infrastructure, provider: dnsviz, cc: null, imp: 3, tier: 4, checks: [http] }
1010 + - { id: obs-dns-tools-rdap-org, name: "DNS observatories & tools rdap org", host: rdap.org, url: "https://rdap.org/domain/example.com", cat: infrastructure, provider: dnsviz, cc: null, imp: 3, tier: 4, checks: [http] }
1011 + - { id: obs-dns-tools-rdap-verisign, name: "DNS observatories & tools rdap verisign", host: rdap.verisign.com, url: "https://rdap.verisign.com/com/v1/domain/example.com", cat: infrastructure, provider: dnsviz, cc: null, imp: 3, tier: 4, checks: [http] }
1012 + - { id: obs-dns-tools-rdap-arin, name: "DNS observatories & tools rdap arin", host: rdap.arin.net, url: "https://rdap.arin.net/registry/ip/8.8.8.8", cat: infrastructure, provider: dnsviz, cc: null, imp: 3, tier: 4, checks: [http] }
1013 + - { id: obs-dns-tools-whois-arin, name: "DNS observatories & tools whois arin", host: whois.arin.net, url: "https://whois.arin.net/rest/ip/8.8.8.8", cat: infrastructure, provider: dnsviz, cc: null, imp: 3, tier: 4, checks: [http] }
1014 + - { id: obs-dns-tools-rdap-ripe, name: "DNS observatories & tools rdap ripe", host: rdap.db.ripe.net, url: "https://rdap.db.ripe.net/ip/193.0.6.139", cat: infrastructure, provider: dnsviz, cc: null, imp: 3, tier: 4, checks: [http] }
1015 + - { id: obs-dns-tools-rdap-apnic, name: "DNS observatories & tools rdap apnic", host: rdap.apnic.net, url: "https://rdap.apnic.net/ip/1.1.1.1", cat: infrastructure, provider: dnsviz, cc: null, imp: 3, tier: 4, checks: [http] }
1016 + - { id: obs-dns-tools-rdap-lacnic, name: "DNS observatories & tools rdap lacnic", host: rdap.lacnic.net, url: "https://rdap.lacnic.net/rdap/ip/200.3.14.10", cat: infrastructure, provider: dnsviz, cc: null, imp: 3, tier: 4, checks: [http] }
1017 + - { id: obs-dns-tools-rdap-afrinic, name: "DNS observatories & tools rdap afrinic", host: rdap.afrinic.net, url: "https://rdap.afrinic.net/rdap/ip/196.216.2.1", cat: infrastructure, provider: dnsviz, cc: null, imp: 3, tier: 4, checks: [http] }
1018 + - { id: obs-dns-tools-dnssec-analyzer, name: "DNS observatories & tools dnssec analyzer", host: dnssec-analyzer.verisignlabs.com, cat: infrastructure, provider: dnsviz, cc: null, imp: 3, tier: 4, checks: [http] }
1019 + - { id: obs-dns-tools-nslookup-io, name: "DNS observatories & tools nslookup io", host: www.nslookup.io, cat: infrastructure, provider: dnsviz, cc: null, imp: 3, tier: 4, checks: [http] }
1020 + - { id: obs-web-perf-tools-pagespeed-api, name: "Web performance tools pagespeed api", host: www.googleapis.com, url: "https://www.googleapis.com/pagespeedonline/v5/runPagespeed?url=https://example.com", cat: developer, provider: google, svc: google, cc: null, imp: 3, tier: 4, checks: [http] }
1021 + - { id: obs-web-perf-tools-gtmetrix, name: "Web performance tools gtmetrix", host: gtmetrix.com, cat: developer, provider: google, svc: google, cc: null, imp: 3, tier: 4, checks: [http] }
1022 + - { id: obs-web-perf-tools-crux, name: "Web performance tools crux", host: developer.chrome.com, url: "https://developer.chrome.com/docs/crux", cat: developer, provider: google, svc: google, cc: null, imp: 3, tier: 4, checks: [http] }
1023 + - { id: obs-web-perf-tools-debugbear, name: "Web performance tools debugbear", host: www.debugbear.com, cat: developer, provider: google, svc: google, cc: null, imp: 3, tier: 4, checks: [http] }
1024 + - { id: obs-web-perf-tools-speedcurve, name: "Web performance tools speedcurve", host: www.speedcurve.com, cat: developer, provider: google, svc: google, cc: null, imp: 3, tier: 4, checks: [http] }
1025 + - { id: obs-web-perf-tools-speedcurve-status, name: "Web performance tools speedcurve status", host: status.speedcurve.com, cat: developer, provider: google, svc: google, cc: null, imp: 3, tier: 4, checks: [http] }
1026 + - { id: obs-web-perf-tools-calibre, name: "Web performance tools calibre", host: calibreapp.com, cat: developer, provider: google, svc: google, cc: null, imp: 3, tier: 4, checks: [http] }
1027 + - { id: obs-web-perf-tools-yellowlab, name: "Web performance tools yellowlab", host: yellowlab.tools, cat: developer, provider: google, svc: google, cc: null, imp: 3, tier: 4, checks: [http] }
1028 + - { id: obs-web-perf-tools-tools-keycdn, name: "Web performance tools tools keycdn", host: tools.keycdn.com, cat: developer, provider: google, svc: google, cc: null, imp: 3, tier: 4, checks: [http] }
1029 + - { id: obs-prometheus-ecosystem-thanos, name: "Prometheus / Grafana OSS ecosystem thanos", host: thanos.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
1030 + - { id: obs-prometheus-ecosystem-cortex, name: "Prometheus / Grafana OSS ecosystem cortex", host: cortexmetrics.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
1031 + - { id: obs-prometheus-ecosystem-victoriametrics, name: "Prometheus / Grafana OSS ecosystem victoriametrics", host: victoriametrics.com, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
1032 + - { id: obs-prometheus-ecosystem-vm-docs, name: "Prometheus / Grafana OSS ecosystem vm docs", host: docs.victoriametrics.com, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
1033 + - { id: obs-prometheus-ecosystem-k6, name: "Prometheus / Grafana OSS ecosystem k6", host: k6.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
1034 + - { id: obs-prometheus-ecosystem-signoz, name: "Prometheus / Grafana OSS ecosystem signoz", host: signoz.io, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
1035 + - { id: obs-prometheus-ecosystem-uptrace, name: "Prometheus / Grafana OSS ecosystem uptrace", host: uptrace.dev, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
1036 + - { id: obs-prometheus-ecosystem-openobserve, name: "Prometheus / Grafana OSS ecosystem openobserve", host: openobserve.ai, cat: developer, provider: cncf, cc: null, imp: 3, tier: 4, checks: [http] }
1037 + - { id: obs-otel-vendors-lumigo, name: "OpenTelemetry vendors lumigo", host: lumigo.io, cat: developer, provider: lumigo, svc: lumigo, cc: null, imp: 2, tier: 4, checks: [http] }
1038 + - { id: obs-otel-vendors-lumigo-status, name: "OpenTelemetry vendors lumigo status", host: status.lumigo.io, cat: developer, provider: lumigo, svc: lumigo, cc: null, imp: 2, tier: 4, checks: [http] }
1039 + - { id: obs-otel-vendors-dash0, name: "OpenTelemetry vendors dash0", host: www.dash0.com, cat: developer, provider: lumigo, svc: lumigo, cc: null, imp: 2, tier: 4, checks: [http] }
1040 + - { id: obs-otel-vendors-groundcover, name: "OpenTelemetry vendors groundcover", host: www.groundcover.com, cat: developer, provider: lumigo, svc: lumigo, cc: null, imp: 2, tier: 4, checks: [http] }
1041 + - { id: obs-otel-vendors-middleware, name: "OpenTelemetry vendors middleware", host: middleware.io, cat: developer, provider: lumigo, svc: lumigo, cc: null, imp: 2, tier: 4, checks: [http] }
1042 + - { id: obs-otel-vendors-last9, name: "OpenTelemetry vendors last9", host: last9.io, cat: developer, provider: lumigo, svc: lumigo, cc: null, imp: 2, tier: 4, checks: [http] }
1043 + - { id: obs-otel-vendors-observe, name: "OpenTelemetry vendors observe", host: www.observeinc.com, cat: developer, provider: lumigo, svc: lumigo, cc: null, imp: 2, tier: 4, checks: [http] }
1044 + - { id: obs-otel-vendors-observe-status, name: "OpenTelemetry vendors observe status", host: status.observeinc.com, cat: developer, provider: lumigo, svc: lumigo, cc: null, imp: 2, tier: 4, checks: [http] }
1045 + - { id: obs-otel-vendors-edgedelta, name: "OpenTelemetry vendors edgedelta", host: edgedelta.com, cat: developer, provider: lumigo, svc: lumigo, cc: null, imp: 2, tier: 4, checks: [http] }
1046 + - { id: obs-otel-vendors-hyperdx, name: "OpenTelemetry vendors hyperdx", host: www.hyperdx.io, cat: developer, provider: lumigo, svc: lumigo, cc: null, imp: 2, tier: 4, checks: [http] }
1047 + - { id: obs-otel-vendors-baselime, name: "OpenTelemetry vendors baselime", host: baselime.io, cat: developer, provider: lumigo, svc: lumigo, cc: null, imp: 2, tier: 4, checks: [http] }
1048 + - { id: obs-nagios-nagios, name: "Nagios / Zabbix / Icinga / Checkmk / PRTG nagios", host: www.nagios.org, cat: developer, provider: nagios, cc: null, imp: 3, tier: 4, checks: [http] }
1049 + - { id: obs-nagios-nagios-com, name: "Nagios / Zabbix / Icinga / Checkmk / PRTG nagios com", host: www.nagios.com, cat: developer, provider: nagios, cc: null, imp: 3, tier: 4, checks: [http] }
1050 + - { id: obs-nagios-zabbix, name: "Nagios / Zabbix / Icinga / Checkmk / PRTG zabbix", host: www.zabbix.com, cat: developer, provider: nagios, cc: null, imp: 3, tier: 4, checks: [http] }
1051 + - { id: obs-nagios-zabbix-repo, name: "Nagios / Zabbix / Icinga / Checkmk / PRTG zabbix repo", host: repo.zabbix.com, cat: developer, provider: nagios, cc: null, imp: 3, tier: 4, checks: [http] }
1052 + - { id: obs-nagios-zabbix-cdn, name: "Nagios / Zabbix / Icinga / Checkmk / PRTG zabbix cdn", host: cdn.zabbix.com, cat: developer, provider: nagios, cc: null, imp: 3, tier: 4, checks: [http] }
1053 + - { id: obs-nagios-icinga, name: "Nagios / Zabbix / Icinga / Checkmk / PRTG icinga", host: icinga.com, cat: developer, provider: nagios, cc: null, imp: 3, tier: 4, checks: [http] }
1054 + - { id: obs-nagios-icinga-packages, name: "Nagios / Zabbix / Icinga / Checkmk / PRTG icinga packages", host: packages.icinga.com, cat: developer, provider: nagios, cc: null, imp: 3, tier: 4, checks: [http] }
1055 + - { id: obs-nagios-checkmk, name: "Nagios / Zabbix / Icinga / Checkmk / PRTG checkmk", host: checkmk.com, cat: developer, provider: nagios, cc: null, imp: 3, tier: 4, checks: [http] }
1056 + - { id: obs-nagios-checkmk-download, name: "Nagios / Zabbix / Icinga / Checkmk / PRTG checkmk download", host: download.checkmk.com, cat: developer, provider: nagios, cc: null, imp: 3, tier: 4, checks: [http] }
1057 + - { id: obs-nagios-prtg, name: "Nagios / Zabbix / Icinga / Checkmk / PRTG prtg", host: www.paessler.com, cat: developer, provider: nagios, cc: null, imp: 3, tier: 4, checks: [http] }
1058 + - { id: obs-nagios-prtg-status, name: "Nagios / Zabbix / Icinga / Checkmk / PRTG prtg status", host: status.paessler.com, cat: developer, provider: nagios, cc: null, imp: 3, tier: 4, checks: [http] }
1059 + - { id: obs-nagios-librenms, name: "Nagios / Zabbix / Icinga / Checkmk / PRTG librenms", host: www.librenms.org, cat: developer, provider: nagios, cc: null, imp: 3, tier: 4, checks: [http] }
1060 + - { id: obs-nagios-netdata, name: "Nagios / Zabbix / Icinga / Checkmk / PRTG netdata", host: www.netdata.cloud, cat: developer, provider: nagios, cc: null, imp: 3, tier: 4, checks: [http] }
1061 + - { id: obs-nagios-netdata-app, name: "Nagios / Zabbix / Icinga / Checkmk / PRTG netdata app", host: app.netdata.cloud, cat: developer, provider: nagios, cc: null, imp: 3, tier: 4, checks: [http] }
1062 + - { id: obs-nagios-netdata-status, name: "Nagios / Zabbix / Icinga / Checkmk / PRTG netdata status", host: status.netdata.cloud, cat: developer, provider: nagios, cc: null, imp: 3, tier: 4, checks: [http] }
1063 + - { id: obs-nagios-uptime-kuma, name: "Nagios / Zabbix / Icinga / Checkmk / PRTG uptime kuma", host: uptime.kuma.pet, cat: developer, provider: nagios, cc: null, imp: 3, tier: 4, checks: [http] }
1064 + - { id: obs-nagios-glances, name: "Nagios / Zabbix / Icinga / Checkmk / PRTG glances", host: nicolargo.github.io, url: "https://nicolargo.github.io/glances/", cat: developer, provider: nagios, cc: null, imp: 3, tier: 4, checks: [http] }
1065 + - { id: obs-solarwinds-observability-auvik, name: "Network monitoring vendors auvik", host: www.auvik.com, cat: developer, provider: auvik, svc: auvik, cc: US, imp: 2, tier: 4, checks: [http] }
1066 + - { id: obs-solarwinds-observability-auvik-status, name: "Network monitoring vendors auvik status", host: status.auvik.com, cat: developer, provider: auvik, svc: auvik, cc: US, imp: 2, tier: 4, checks: [http] }
1067 + - { id: obs-solarwinds-observability-logicmonitor, name: "Network monitoring vendors logicmonitor", host: www.logicmonitor.com, cat: developer, provider: auvik, svc: auvik, cc: US, imp: 2, tier: 4, checks: [http] }
1068 + - { id: obs-solarwinds-observability-logicmonitor-status, name: "Network monitoring vendors logicmonitor status", host: status.logicmonitor.com, cat: developer, provider: auvik, svc: auvik, cc: US, imp: 2, tier: 4, checks: [http] }
1069 + - { id: obs-solarwinds-observability-datto, name: "Network monitoring vendors datto", host: www.datto.com, cat: developer, provider: auvik, svc: auvik, cc: US, imp: 2, tier: 4, checks: [http] }
1070 + - { id: obs-solarwinds-observability-ninjaone, name: "Network monitoring vendors ninjaone", host: www.ninjaone.com, cat: developer, provider: auvik, svc: auvik, cc: US, imp: 2, tier: 4, checks: [http] }
1071 + - { id: obs-solarwinds-observability-ninjaone-status, name: "Network monitoring vendors ninjaone status", host: status.ninjaone.com, cat: developer, provider: auvik, svc: auvik, cc: US, imp: 2, tier: 4, checks: [http] }
1072 + - { id: obs-solarwinds-observability-kaseya, name: "Network monitoring vendors kaseya", host: www.kaseya.com, cat: developer, provider: auvik, svc: auvik, cc: US, imp: 2, tier: 4, checks: [http] }
1073 + - { id: obs-solarwinds-observability-kaseya-status, name: "Network monitoring vendors kaseya status", host: status.kaseya.net, cat: developer, provider: auvik, svc: auvik, cc: US, imp: 2, tier: 4, checks: [http] }
1074 + - { id: obs-solarwinds-observability-connectwise, name: "Network monitoring vendors connectwise", host: www.connectwise.com, cat: developer, provider: auvik, svc: auvik, cc: US, imp: 2, tier: 4, checks: [http] }
1075 + - { id: obs-solarwinds-observability-connectwise-status, name: "Network monitoring vendors connectwise status", host: status.connectwise.com, cat: developer, provider: auvik, svc: auvik, cc: US, imp: 2, tier: 4, checks: [http] }
1076 + - { id: obs-solarwinds-observability-atera, name: "Network monitoring vendors atera", host: www.atera.com, cat: developer, provider: auvik, svc: auvik, cc: US, imp: 2, tier: 4, checks: [http] }
1077 + - { id: obs-solarwinds-observability-atera-status, name: "Network monitoring vendors atera status", host: status.atera.com, cat: developer, provider: auvik, svc: auvik, cc: US, imp: 2, tier: 4, checks: [http] }
1078 + - { id: obs-solarwinds-observability-nable, name: "Network monitoring vendors nable", host: www.n-able.com, cat: developer, provider: auvik, svc: auvik, cc: US, imp: 2, tier: 4, checks: [http] }
1079 + - { id: obs-solarwinds-observability-nable-status, name: "Network monitoring vendors nable status", host: status.n-able.com, cat: developer, provider: auvik, svc: auvik, cc: US, imp: 2, tier: 4, checks: [http] }
1080 + - { id: obs-solarwinds-observability-domotz, name: "Network monitoring vendors domotz", host: www.domotz.com, cat: developer, provider: auvik, svc: auvik, cc: US, imp: 2, tier: 4, checks: [http] }
1081 + - { id: obs-moogsoft-bigpanda, name: "AIOps / ITSM bigpanda", host: www.bigpanda.io, cat: developer, provider: servicenow, cc: US, imp: 2, tier: 4, checks: [http] }
1082 + - { id: obs-moogsoft-bigpanda-status, name: "AIOps / ITSM bigpanda status", host: status.bigpanda.io, cat: developer, provider: servicenow, cc: US, imp: 2, tier: 4, checks: [http] }
1083 + - { id: obs-moogsoft-moogsoft, name: "AIOps / ITSM moogsoft", host: www.moogsoft.com, cat: developer, provider: servicenow, cc: US, imp: 2, tier: 4, checks: [http] }
1084 + - { id: obs-moogsoft-servicenow, name: "AIOps / ITSM servicenow", host: www.servicenow.com, cat: developer, provider: servicenow, cc: US, imp: 2, tier: 4, checks: [http] }
1085 + - { id: obs-moogsoft-servicenow-docs, name: "AIOps / ITSM servicenow docs", host: docs.servicenow.com, cat: developer, provider: servicenow, cc: US, imp: 2, tier: 4, checks: [http] }
1086 + - { id: obs-moogsoft-servicenow-developer, name: "AIOps / ITSM servicenow developer", host: developer.servicenow.com, cat: developer, provider: servicenow, cc: US, imp: 2, tier: 4, checks: [http] }
1087 + - { id: obs-moogsoft-freshservice, name: "AIOps / ITSM freshservice", host: www.freshworks.com, url: "https://www.freshworks.com/freshservice/", cat: developer, provider: servicenow, cc: US, imp: 2, tier: 4, checks: [http] }
1088 + - { id: obs-moogsoft-ivanti, name: "AIOps / ITSM ivanti", host: www.ivanti.com, cat: developer, provider: servicenow, cc: US, imp: 2, tier: 4, checks: [http] }
1089 + - { id: obs-moogsoft-ivanti-status, name: "AIOps / ITSM ivanti status", host: status.ivanti.com, cat: developer, provider: servicenow, cc: US, imp: 2, tier: 4, checks: [http] }
1090 + - { id: obs-moogsoft-bmc, name: "AIOps / ITSM bmc", host: www.bmc.com, cat: developer, provider: servicenow, cc: US, imp: 2, tier: 4, checks: [http] }
1091 + - { id: obs-moogsoft-bmc-docs, name: "AIOps / ITSM bmc docs", host: docs.bmc.com, cat: developer, provider: servicenow, cc: US, imp: 2, tier: 4, checks: [http] }
1092 + - { id: obs-cronitor-cronitor, name: "Cron & heartbeat monitors cronitor", host: cronitor.io, cat: developer, provider: cronitor, cc: null, imp: 2, tier: 4, checks: [http] }
1093 + - { id: obs-cronitor-cronitor-status, name: "Cron & heartbeat monitors cronitor status", host: status.cronitor.io, cat: developer, provider: cronitor, cc: null, imp: 2, tier: 4, checks: [http] }
1094 + - { id: obs-cronitor-cronitor-api, name: "Cron & heartbeat monitors cronitor api", host: cronitor.link, url: "https://cronitor.link/", cat: developer, provider: cronitor, cc: null, imp: 2, tier: 4, checks: [http] }
1095 + - { id: obs-cronitor-healthchecks, name: "Cron & heartbeat monitors healthchecks", host: healthchecks.io, cat: developer, provider: cronitor, cc: null, imp: 2, tier: 4, checks: [http] }
1096 + - { id: obs-cronitor-healthchecks-status, name: "Cron & heartbeat monitors healthchecks status", host: status.healthchecks.io, cat: developer, provider: cronitor, cc: null, imp: 2, tier: 4, checks: [http] }
1097 + - { id: obs-cronitor-deadmanssnitch, name: "Cron & heartbeat monitors deadmanssnitch", host: deadmanssnitch.com, cat: developer, provider: cronitor, cc: null, imp: 2, tier: 4, checks: [http] }
1098 + - { id: obs-cronitor-deadmanssnitch-status, name: "Cron & heartbeat monitors deadmanssnitch status", host: status.deadmanssnitch.com, cat: developer, provider: cronitor, cc: null, imp: 2, tier: 4, checks: [http] }
1099 + - { id: obs-cronitor-ohdear, name: "Cron & heartbeat monitors ohdear", host: ohdear.app, cat: developer, provider: cronitor, cc: null, imp: 2, tier: 4, checks: [http] }
1100 + - { id: obs-cronitor-ohdear-status, name: "Cron & heartbeat monitors ohdear status", host: status.ohdear.app, cat: developer, provider: cronitor, cc: null, imp: 2, tier: 4, checks: [http] }
1101 + - { id: obs-cronitor-hyperping, name: "Cron & heartbeat monitors hyperping", host: hyperping.com, cat: developer, provider: cronitor, cc: null, imp: 2, tier: 4, checks: [http] }
1102 + - { id: obs-cronitor-uptrends, name: "Cron & heartbeat monitors uptrends", host: www.uptrends.com, cat: developer, provider: cronitor, cc: null, imp: 2, tier: 4, checks: [http] }
1103 + - { id: obs-cronitor-uptrends-status, name: "Cron & heartbeat monitors uptrends status", host: status.uptrends.com, cat: developer, provider: cronitor, cc: null, imp: 2, tier: 4, checks: [http] }
1104 + - { id: obs-cronitor-montastic, name: "Cron & heartbeat monitors montastic", host: www.montastic.com, cat: developer, provider: cronitor, cc: null, imp: 2, tier: 4, checks: [http] }
1105 + - { id: obs-cronitor-updown, name: "Cron & heartbeat monitors updown", host: updown.io, cat: developer, provider: cronitor, cc: null, imp: 2, tier: 4, checks: [http] }
1106 + - { id: obs-cronitor-updown-status, name: "Cron & heartbeat monitors updown status", host: status.updown.io, cat: developer, provider: cronitor, cc: null, imp: 2, tier: 4, checks: [http] }
1107 + - { id: obs-cronitor-pulsetic, name: "Cron & heartbeat monitors pulsetic", host: pulsetic.com, cat: developer, provider: cronitor, cc: null, imp: 2, tier: 4, checks: [http] }
1108 + - { id: obs-cronitor-robotalp, name: "Cron & heartbeat monitors robotalp", host: robotalp.com, cat: developer, provider: cronitor, cc: null, imp: 2, tier: 4, checks: [http] }
1109 + - { id: obs-cronitor-nodeping, name: "Cron & heartbeat monitors nodeping", host: nodeping.com, cat: developer, provider: cronitor, cc: null, imp: 2, tier: 4, checks: [http] }
1110 + - { id: obs-cronitor-dotcom-monitor, name: "Cron & heartbeat monitors dotcom monitor", host: www.dotcom-monitor.com, cat: developer, provider: cronitor, cc: null, imp: 2, tier: 4, checks: [http] }
1111 + - { id: obs-cronitor-hetrixtools, name: "Cron & heartbeat monitors hetrixtools", host: hetrixtools.com, cat: developer, provider: cronitor, cc: null, imp: 2, tier: 4, checks: [http] }
1112 + - { id: obs-cronitor-hetrix-status, name: "Cron & heartbeat monitors hetrix status", host: status.hetrixtools.com, cat: developer, provider: cronitor, cc: null, imp: 2, tier: 4, checks: [http] }
1113 + # ───────── Cloud dev platforms, databases, BaaS, CMS & automation (618)
1114 + - { id: db-firebase-status, name: "Firebase status page", host: status.firebase.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http] }
1115 + - { id: db-firebase-firebasestorage, name: "Firebase firebasestorage", host: firebasestorage.googleapis.com, url: "https://firebasestorage.googleapis.com/v0/b/test/o", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 2, checks: [http, dns] }
1116 + - { id: db-firebase-firestore, name: "Firebase firestore", host: firestore.googleapis.com, url: "https://firestore.googleapis.com/$discovery/rest?version=v1", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 2, checks: [http, dns] }
1117 + - { id: db-firebase-identitytoolkit, name: "Firebase identitytoolkit", host: identitytoolkit.googleapis.com, url: "https://identitytoolkit.googleapis.com/$discovery/rest?version=v3", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 2, checks: [http, dns] }
1118 + - { id: db-firebase-fcm, name: "Firebase fcm", host: fcm.googleapis.com, url: "https://fcm.googleapis.com/fcm/send", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 2, checks: [http, dns] }
1119 + - { id: db-firebase-firebaseapp, name: "Firebase firebaseapp", host: firebaseapp.com, url: "https://firebaseapp.com/", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1120 + - { id: db-firebase-extensions, name: "Firebase extensions", host: extensions.dev, cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http] }
1121 + - { id: db-planetscale-hosts-status, name: "PlanetScale hosts status page", host: www.planetscalestatus.com, cat: developer, provider: planetscale, svc: planetscale, cc: US, imp: 3, tier: 4, checks: [http] }
1122 + - { id: db-planetscale-hosts-docs, name: "PlanetScale hosts docs", host: planetscale.com, url: "https://planetscale.com/docs", cat: developer, provider: planetscale, svc: planetscale, cc: US, imp: 3, tier: 4, checks: [http] }
1123 + - { id: db-planetscale-hosts-api, name: "PlanetScale hosts API", host: api.planetscale.com, url: "https://api.planetscale.com/v1/", cat: developer, provider: planetscale, svc: planetscale, cc: US, imp: 3, tier: 4, checks: [http] }
1124 + - { id: db-planetscale-hosts-app, name: "PlanetScale hosts app", host: app.planetscale.com, cat: developer, provider: planetscale, svc: planetscale, cc: US, imp: 3, tier: 4, checks: [http] }
1125 + - { id: db-neon-hosts-status, name: "Neon hosts status page", host: neonstatus.com, url: "https://neonstatus.com/api/v2/summary.json", cat: developer, provider: neon, svc: neon, cc: US, imp: 3, tier: 4, checks: [http] }
1126 + - { id: db-neon-hosts-docs, name: "Neon hosts docs", host: neon.com, url: "https://neon.com/docs", cat: developer, provider: neon, svc: neon, cc: US, imp: 3, tier: 4, checks: [http] }
1127 + - { id: db-neon-hosts-console, name: "Neon hosts console", host: console.neon.tech, cat: developer, provider: neon, svc: neon, cc: US, imp: 3, tier: 4, checks: [http] }
1128 + - { id: db-neon-hosts-neon-tech, name: "Neon hosts neon tech", host: neon.tech, cat: developer, provider: neon, svc: neon, cc: US, imp: 3, tier: 4, checks: [http] }
1129 + - { id: db-cockroachdb, name: "CockroachDB", host: www.cockroachlabs.com, cat: developer, provider: cockroach, svc: cockroach, cc: US, imp: 3, tier: 4, checks: [http] }
1130 + - { id: db-cockroachdb-status, name: "CockroachDB status page", host: status.cockroachlabs.cloud, cat: developer, provider: cockroach, svc: cockroach, cc: US, imp: 3, tier: 4, checks: [http] }
1131 + - { id: db-cockroachdb-cloud, name: "CockroachDB cloud", host: cockroachlabs.cloud, cat: developer, provider: cockroach, svc: cockroach, cc: US, imp: 3, tier: 4, checks: [http] }
1132 + - { id: db-cockroachdb-binaries, name: "CockroachDB binaries", host: binaries.cockroachdb.com, cat: developer, provider: cockroach, svc: cockroach, cc: US, imp: 3, tier: 4, checks: [http] }
1133 + - { id: db-cockroachdb-forum, name: "CockroachDB forum", host: forum.cockroachlabs.com, cat: developer, provider: cockroach, svc: cockroach, cc: US, imp: 3, tier: 4, checks: [http] }
1134 + - { id: db-mongodb-hosts-status, name: "MongoDB hosts status page", host: status.mongodb.com, cat: developer, provider: mongodb, svc: mongodb, cc: US, imp: 4, tier: 3, checks: [http] }
1135 + - { id: db-mongodb-hosts-cloud, name: "MongoDB hosts cloud", host: cloud.mongodb.com, cat: developer, provider: mongodb, svc: mongodb, cc: US, imp: 4, tier: 3, checks: [http] }
1136 + - { id: db-mongodb-hosts-docs, name: "MongoDB hosts docs", host: www.mongodb.com, url: "https://www.mongodb.com/docs/", cat: developer, provider: mongodb, svc: mongodb, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1137 + - { id: db-mongodb-hosts-downloads, name: "MongoDB hosts downloads", host: downloads.mongodb.com, url: "https://downloads.mongodb.com/current.json", cat: developer, provider: mongodb, svc: mongodb, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1138 + - { id: db-mongodb-hosts-fastdl, name: "MongoDB hosts fastdl", host: fastdl.mongodb.org, url: "https://fastdl.mongodb.org/", cat: developer, provider: mongodb, svc: mongodb, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1139 + - { id: db-mongodb-hosts-university, name: "MongoDB hosts academy", host: learn.mongodb.com, cat: developer, provider: mongodb, svc: mongodb, cc: US, imp: 4, tier: 3, checks: [http] }
1140 + - { id: db-mongodb-hosts-realm, name: "MongoDB hosts realm", host: realm.mongodb.com, url: "https://realm.mongodb.com/api/client/v2.0/", cat: developer, provider: mongodb, svc: mongodb, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1141 + - { id: db-redis-hosts-cloud, name: "Redis hosts cloud", host: redis.io, url: "https://redis.io/cloud/", cat: developer, provider: redis, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1142 + - { id: db-redis-hosts-status, name: "Redis hosts status page", host: status.redis.io, cat: developer, provider: redis, cc: US, imp: 4, tier: 3, checks: [http] }
1143 + - { id: db-redis-hosts-university, name: "Redis hosts academy", host: university.redis.io, cat: developer, provider: redis, cc: US, imp: 4, tier: 3, checks: [http] }
1144 + - { id: db-redis-hosts-packages, name: "Redis hosts packages", host: packages.redis.io, url: "https://packages.redis.io/gpg", cat: developer, provider: redis, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1145 + - { id: db-redis-hosts-redis-com, name: "Redis hosts redis com", host: redis.com, cat: developer, provider: redis, cc: US, imp: 4, tier: 3, checks: [http] }
1146 + - { id: db-redis-hosts-download, name: "Redis hosts downloads", host: download.redis.io, url: "https://download.redis.io/releases/", cat: developer, provider: redis, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1147 + - { id: db-redis-hosts-valkey, name: "Redis hosts valkey", host: valkey.io, cat: developer, provider: redis, cc: US, imp: 4, tier: 3, checks: [http] }
1148 + - { id: db-upstash-hosts-status, name: "Upstash hosts status page", host: status.upstash.com, cat: developer, provider: upstash, svc: upstash, cc: US, imp: 3, tier: 4, checks: [http] }
1149 + - { id: db-upstash-hosts-docs, name: "Upstash hosts docs", host: upstash.com, url: "https://upstash.com/docs", cat: developer, provider: upstash, svc: upstash, cc: US, imp: 3, tier: 4, checks: [http] }
1150 + - { id: db-upstash-hosts-api, name: "Upstash hosts API", host: api.upstash.com, url: "https://api.upstash.com/", cat: developer, provider: upstash, svc: upstash, cc: US, imp: 3, tier: 4, checks: [http] }
1151 + - { id: db-upstash-hosts-console, name: "Upstash hosts console", host: console.upstash.com, cat: developer, provider: upstash, svc: upstash, cc: US, imp: 3, tier: 4, checks: [http] }
1152 + - { id: db-turso-docs, name: "Turso docs", host: docs.turso.tech, cat: developer, provider: turso, cc: US, imp: 2, tier: 4, checks: [http] }
1153 + - { id: db-turso-status, name: "Turso status page", host: status.turso.tech, cat: developer, provider: turso, cc: US, imp: 2, tier: 4, checks: [http] }
1154 + - { id: db-turso-api, name: "Turso API", host: api.turso.tech, url: "https://api.turso.tech/v1/", cat: developer, provider: turso, cc: US, imp: 2, tier: 4, checks: [http] }
1155 + - { id: db-turso-libsql, name: "Turso libsql", host: libsql.org, cat: developer, provider: turso, cc: US, imp: 2, tier: 4, checks: [http] }
1156 + - { id: db-xata, name: "Xata", host: xata.io, cat: developer, provider: xata, cc: DE, imp: 2, tier: 4, checks: [http] }
1157 + - { id: db-hasura, name: "Hasura", host: hasura.io, cat: developer, provider: hasura, cc: US, imp: 3, tier: 4, checks: [http] }
1158 + - { id: db-hasura-status, name: "Hasura status page", host: status.hasura.io, cat: developer, provider: hasura, cc: US, imp: 3, tier: 4, checks: [http] }
1159 + - { id: db-hasura-cloud, name: "Hasura cloud", host: cloud.hasura.io, cat: developer, provider: hasura, cc: US, imp: 3, tier: 4, checks: [http] }
1160 + - { id: db-hasura-promptql, name: "Hasura promptql", host: promptql.io, cat: developer, provider: hasura, cc: US, imp: 3, tier: 4, checks: [http] }
1161 + - { id: db-prisma, name: "Prisma", host: www.prisma.io, cat: developer, provider: prisma, svc: prisma, cc: DE, imp: 3, tier: 4, checks: [http] }
1162 + - { id: db-prisma-status, name: "Prisma status page", host: www.prisma-status.com, cat: developer, provider: prisma, svc: prisma, cc: DE, imp: 3, tier: 4, checks: [http] }
1163 + - { id: db-prisma-accelerate, name: "Prisma accelerate", host: accelerate.prisma-data.net, cat: developer, provider: prisma, svc: prisma, cc: DE, imp: 3, tier: 4, checks: [http] }
1164 + - { id: db-prisma-binaries, name: "Prisma binaries", host: binaries.prisma.sh, url: "https://binaries.prisma.sh/", cat: developer, provider: prisma, svc: prisma, cc: DE, imp: 3, tier: 4, checks: [http] }
1165 + - { id: db-drizzle-orm, name: "Drizzle / Kysely / TypeORM / Sequelize orm", host: orm.drizzle.team, cat: developer, provider: drizzle, cc: null, imp: 2, tier: 4, checks: [http] }
1166 + - { id: db-drizzle-kysely, name: "Drizzle / Kysely / TypeORM / Sequelize kysely", host: kysely.dev, cat: developer, provider: drizzle, cc: null, imp: 2, tier: 4, checks: [http] }
1167 + - { id: db-drizzle-typeorm, name: "Drizzle / Kysely / TypeORM / Sequelize typeorm", host: typeorm.io, cat: developer, provider: drizzle, cc: null, imp: 2, tier: 4, checks: [http] }
1168 + - { id: db-drizzle-sequelize, name: "Drizzle / Kysely / TypeORM / Sequelize sequelize", host: sequelize.org, cat: developer, provider: drizzle, cc: null, imp: 2, tier: 4, checks: [http] }
1169 + - { id: db-drizzle-knex, name: "Drizzle / Kysely / TypeORM / Sequelize knex", host: knexjs.org, cat: developer, provider: drizzle, cc: null, imp: 2, tier: 4, checks: [http] }
1170 + - { id: db-drizzle-mikro-orm, name: "Drizzle / Kysely / TypeORM / Sequelize mikro orm", host: mikro-orm.io, cat: developer, provider: drizzle, cc: null, imp: 2, tier: 4, checks: [http] }
1171 + - { id: db-convex, name: "Convex", host: www.convex.dev, cat: developer, provider: convex, svc: convex, cc: US, imp: 3, tier: 4, checks: [http] }
1172 + - { id: db-convex-docs, name: "Convex docs", host: docs.convex.dev, cat: developer, provider: convex, svc: convex, cc: US, imp: 3, tier: 4, checks: [http] }
1173 + - { id: db-convex-status, name: "Convex status page", host: status.convex.dev, cat: developer, provider: convex, svc: convex, cc: US, imp: 3, tier: 4, checks: [http] }
1174 + - { id: db-convex-stack, name: "Convex stack", host: stack.convex.dev, cat: developer, provider: convex, svc: convex, cc: US, imp: 3, tier: 4, checks: [http] }
1175 + - { id: db-appwrite, name: "Appwrite", host: appwrite.io, cat: developer, provider: appwrite, cc: US, imp: 3, tier: 4, checks: [http] }
1176 + - { id: db-appwrite-status, name: "Appwrite status page", host: status.appwrite.online, cat: developer, provider: appwrite, cc: US, imp: 3, tier: 4, checks: [http] }
1177 + - { id: db-appwrite-cloud, name: "Appwrite cloud", host: cloud.appwrite.io, url: "https://cloud.appwrite.io/v1/health", cat: developer, provider: appwrite, cc: US, imp: 3, tier: 4, checks: [http] }
1178 + - { id: db-nhost, name: "Nhost", host: nhost.io, cat: developer, provider: nhost, cc: SE, imp: 2, tier: 4, checks: [http] }
1179 + - { id: db-nhost-docs, name: "Nhost docs", host: docs.nhost.io, cat: developer, provider: nhost, cc: SE, imp: 2, tier: 4, checks: [http] }
1180 + - { id: db-nhost-status, name: "Nhost status page", host: status.nhost.io, cat: developer, provider: nhost, cc: SE, imp: 2, tier: 4, checks: [http] }
1181 + - { id: db-pocketbase, name: "PocketBase", host: pocketbase.io, cat: developer, provider: pocketbase, cc: null, imp: 2, tier: 4, checks: [http] }
1182 + - { id: db-supabase-hosts-status, name: "Supabase hosts status page", host: status.supabase.com, cat: developer, provider: supabase, svc: supabase, cc: US, imp: 4, tier: 3, checks: [http] }
1183 + - { id: db-supabase-hosts-docs, name: "Supabase hosts docs", host: supabase.com, url: "https://supabase.com/docs", cat: developer, provider: supabase, svc: supabase, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1184 + - { id: db-supabase-hosts-api, name: "Supabase hosts API", host: api.supabase.com, url: "https://api.supabase.com/v1/", cat: developer, provider: supabase, svc: supabase, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1185 + - { id: db-supabase-hosts-supabase-co, name: "Supabase hosts supabase co", host: supabase.co, url: "https://supabase.co/", cat: developer, provider: supabase, svc: supabase, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1186 + - { id: db-supabase-hosts-database, name: "Supabase hosts database", host: database.new, cat: developer, provider: supabase, svc: supabase, cc: US, imp: 4, tier: 3, checks: [http] }
1187 + - { id: db-directus, name: "Directus", host: directus.io, cat: developer, provider: directus, svc: directus, cc: US, imp: 2, tier: 4, checks: [http] }
1188 + - { id: db-directus-docs, name: "Directus docs", host: docs.directus.io, cat: developer, provider: directus, svc: directus, cc: US, imp: 2, tier: 4, checks: [http] }
1189 + - { id: db-directus-status, name: "Directus status page", host: status.directus.cloud, cat: developer, provider: directus, svc: directus, cc: US, imp: 2, tier: 4, checks: [http] }
1190 + - { id: db-directus-cloud, name: "Directus cloud", host: directus.cloud, cat: developer, provider: directus, svc: directus, cc: US, imp: 2, tier: 4, checks: [http] }
1191 + - { id: db-strapi, name: "Strapi", host: strapi.io, cat: developer, provider: strapi, cc: FR, imp: 3, tier: 4, checks: [http] }
1192 + - { id: db-strapi-docs, name: "Strapi docs", host: docs.strapi.io, cat: developer, provider: strapi, cc: FR, imp: 3, tier: 4, checks: [http] }
1193 + - { id: db-strapi-status, name: "Strapi status page", host: status.strapi.io, cat: developer, provider: strapi, cc: FR, imp: 3, tier: 4, checks: [http] }
1194 + - { id: db-strapi-cloud, name: "Strapi cloud", host: cloud.strapi.io, cat: developer, provider: strapi, cc: FR, imp: 3, tier: 4, checks: [http] }
1195 + - { id: db-strapi-market, name: "Strapi market", host: market.strapi.io, cat: developer, provider: strapi, cc: FR, imp: 3, tier: 4, checks: [http] }
1196 + - { id: db-strapi-forum, name: "Strapi forum", host: forum.strapi.io, cat: developer, provider: strapi, cc: FR, imp: 3, tier: 4, checks: [http] }
1197 + - { id: db-sanity-hosts-status, name: "Sanity hosts status page", host: www.sanity-status.com, cat: developer, provider: sanity, svc: sanity, cc: "NO", imp: 3, tier: 4, checks: [http] }
1198 + - { id: db-sanity-hosts-docs, name: "Sanity hosts docs", host: www.sanity.io, url: "https://www.sanity.io/docs", cat: developer, provider: sanity, svc: sanity, cc: "NO", imp: 3, tier: 4, checks: [http] }
1199 + - { id: db-sanity-hosts-api, name: "Sanity hosts API", host: api.sanity.io, url: "https://api.sanity.io/v2021-06-07/ping", cat: developer, provider: sanity, svc: sanity, cc: "NO", imp: 3, tier: 4, checks: [http] }
1200 + - { id: db-sanity-hosts-cdn, name: "Sanity hosts CDN", host: cdn.sanity.io, cat: developer, provider: sanity, svc: sanity, cc: "NO", imp: 3, tier: 4, checks: [http] }
1201 + - { id: db-sanity-hosts-slack, name: "Sanity hosts slack", host: slack.sanity.io, cat: developer, provider: sanity, svc: sanity, cc: "NO", imp: 3, tier: 4, checks: [http] }
1202 + - { id: db-contentful-hosts-status, name: "Contentful hosts status page", host: www.contentfulstatus.com, cat: developer, provider: contentful, svc: contentful, cc: DE, imp: 3, tier: 4, checks: [http] }
1203 + - { id: db-contentful-hosts-docs, name: "Contentful hosts docs", host: www.contentful.com, url: "https://www.contentful.com/developers/docs/", cat: developer, provider: contentful, svc: contentful, cc: DE, imp: 3, tier: 4, checks: [http] }
1204 + - { id: db-contentful-hosts-cdn, name: "Contentful hosts CDN", host: cdn.contentful.com, url: "https://cdn.contentful.com/", cat: developer, provider: contentful, svc: contentful, cc: DE, imp: 3, tier: 4, checks: [http] }
1205 + - { id: db-contentful-hosts-preview, name: "Contentful hosts preview", host: preview.contentful.com, url: "https://preview.contentful.com/", cat: developer, provider: contentful, svc: contentful, cc: DE, imp: 3, tier: 4, checks: [http] }
1206 + - { id: db-contentful-hosts-api, name: "Contentful hosts API", host: api.contentful.com, url: "https://api.contentful.com/", cat: developer, provider: contentful, svc: contentful, cc: DE, imp: 3, tier: 4, checks: [http] }
1207 + - { id: db-contentful-hosts-images, name: "Contentful hosts image CDN", host: images.ctfassets.net, url: "https://images.ctfassets.net/", cat: developer, provider: contentful, svc: contentful, cc: DE, imp: 3, tier: 4, checks: [http] }
1208 + - { id: db-contentful-hosts-graphql, name: "Contentful hosts graphql", host: graphql.contentful.com, url: "https://graphql.contentful.com/", cat: developer, provider: contentful, svc: contentful, cc: DE, imp: 3, tier: 4, checks: [http] }
1209 + - { id: db-storyblok, name: "Storyblok", host: www.storyblok.com, cat: developer, provider: storyblok, cc: AT, imp: 3, tier: 4, checks: [http] }
1210 + - { id: db-storyblok-status, name: "Storyblok status page", host: status.storyblok.com, cat: developer, provider: storyblok, cc: AT, imp: 3, tier: 4, checks: [http] }
1211 + - { id: db-storyblok-api, name: "Storyblok API", host: api.storyblok.com, url: "https://api.storyblok.com/v2/cdn/spaces/me", cat: developer, provider: storyblok, cc: AT, imp: 3, tier: 4, checks: [http] }
1212 + - { id: db-storyblok-api-us, name: "Storyblok api us", host: api-us.storyblok.com, url: "https://api-us.storyblok.com/v2/cdn/spaces/me", cat: developer, provider: storyblok, cc: AT, imp: 3, tier: 4, checks: [http] }
1213 + - { id: db-storyblok-a, name: "Storyblok a", host: a.storyblok.com, cat: developer, provider: storyblok, cc: AT, imp: 3, tier: 4, checks: [http] }
1214 + - { id: db-hygraph, name: "Hygraph", host: hygraph.com, cat: developer, provider: hygraph, svc: hygraph, cc: DE, imp: 2, tier: 4, checks: [http] }
1215 + - { id: db-hygraph-status, name: "Hygraph status page", host: status.hygraph.com, cat: developer, provider: hygraph, svc: hygraph, cc: DE, imp: 2, tier: 4, checks: [http] }
1216 + - { id: db-prismic, name: "Prismic", host: prismic.io, cat: developer, provider: prismic, svc: prismic, cc: FR, imp: 2, tier: 4, checks: [http] }
1217 + - { id: db-prismic-status, name: "Prismic status page", host: status.prismic.io, cat: developer, provider: prismic, svc: prismic, cc: FR, imp: 2, tier: 4, checks: [http] }
1218 + - { id: db-prismic-community, name: "Prismic community", host: community.prismic.io, cat: developer, provider: prismic, svc: prismic, cc: FR, imp: 2, tier: 4, checks: [http] }
1219 + - { id: db-prismic-cdn, name: "Prismic CDN", host: images.prismic.io, url: "https://images.prismic.io/", cat: developer, provider: prismic, svc: prismic, cc: FR, imp: 2, tier: 4, checks: [http] }
1220 + - { id: db-datocms, name: "DatoCMS", host: www.datocms.com, cat: developer, provider: datocms, cc: IT, imp: 2, tier: 4, checks: [http] }
1221 + - { id: db-datocms-status, name: "DatoCMS status page", host: status.datocms.com, cat: developer, provider: datocms, cc: IT, imp: 2, tier: 4, checks: [http] }
1222 + - { id: db-datocms-site-api, name: "DatoCMS site api", host: site-api.datocms.com, url: "https://site-api.datocms.com/", cat: developer, provider: datocms, cc: IT, imp: 2, tier: 4, checks: [http] }
1223 + - { id: db-datocms-graphql, name: "DatoCMS graphql", host: graphql.datocms.com, url: "https://graphql.datocms.com/", cat: developer, provider: datocms, cc: IT, imp: 2, tier: 4, checks: [http] }
1224 + - { id: db-datocms-images, name: "DatoCMS image CDN", host: www.datocms-assets.com, url: "https://www.datocms-assets.com/", cat: developer, provider: datocms, cc: IT, imp: 2, tier: 4, checks: [http] }
1225 + - { id: db-ghost-status, name: "Ghost status page", host: status.ghost.org, cat: developer, provider: ghost, cc: SG, imp: 3, tier: 4, checks: [http] }
1226 + - { id: db-ghost-forum, name: "Ghost forum", host: forum.ghost.org, cat: developer, provider: ghost, cc: SG, imp: 3, tier: 4, checks: [http] }
1227 + - { id: db-webflow-hosts-status, name: "Webflow hosts status page", host: status.webflow.com, cat: developer, provider: webflow, svc: webflow, cc: US, imp: 3, tier: 4, checks: [http] }
1228 + - { id: db-webflow-hosts-docs, name: "Webflow hosts docs", host: developers.webflow.com, cat: developer, provider: webflow, svc: webflow, cc: US, imp: 3, tier: 4, checks: [http] }
1229 + - { id: db-webflow-hosts-university, name: "Webflow hosts academy", host: university.webflow.com, cat: developer, provider: webflow, svc: webflow, cc: US, imp: 3, tier: 4, checks: [http] }
1230 + - { id: db-webflow-hosts-api, name: "Webflow hosts API", host: api.webflow.com, url: "https://api.webflow.com/v2/", cat: developer, provider: webflow, svc: webflow, cc: US, imp: 3, tier: 4, checks: [http] }
1231 + - { id: db-webflow-hosts-forum, name: "Webflow hosts forum", host: discourse.webflow.com, cat: developer, provider: webflow, svc: webflow, cc: US, imp: 3, tier: 4, checks: [http] }
1232 + - { id: db-webflow-hosts-assets, name: "Webflow hosts static assets", host: assets.website-files.com, url: "https://assets.website-files.com/", cat: developer, provider: webflow, svc: webflow, cc: US, imp: 3, tier: 4, checks: [http] }
1233 + - { id: db-webflow-hosts-webflow-io, name: "Webflow hosts webflow io", host: webflow.io, url: "https://webflow.io/", cat: developer, provider: webflow, svc: webflow, cc: US, imp: 3, tier: 4, checks: [http] }
1234 + - { id: db-webflow-hosts-uploads, name: "Webflow hosts uploads", host: uploads-ssl.webflow.com, url: "https://uploads-ssl.webflow.com/", cat: developer, provider: webflow, svc: webflow, cc: US, imp: 3, tier: 4, checks: [http] }
1235 + - { id: db-webflow-hosts-cdn, name: "Webflow hosts CDN", host: cdn.prod.website-files.com, url: "https://cdn.prod.website-files.com/", cat: developer, provider: webflow, svc: webflow, cc: US, imp: 3, tier: 4, checks: [http] }
1236 + - { id: db-framer, name: "Framer", host: www.framer.com, cat: developer, provider: framer, cc: NL, imp: 3, tier: 4, checks: [http] }
1237 + - { id: db-framer-status, name: "Framer status page", host: status.framer.com, cat: developer, provider: framer, cc: NL, imp: 3, tier: 4, checks: [http] }
1238 + - { id: db-framer-framer-app, name: "Framer framer app", host: framer.app, url: "https://framer.app/", cat: developer, provider: framer, cc: NL, imp: 3, tier: 4, checks: [http] }
1239 + - { id: db-framer-framer-website, name: "Framer framer website", host: framer.website, url: "https://framer.website/", cat: developer, provider: framer, cc: NL, imp: 3, tier: 4, checks: [http] }
1240 + - { id: db-framer-framerusercontent, name: "Framer framerusercontent", host: framerusercontent.com, url: "https://framerusercontent.com/", cat: developer, provider: framer, cc: NL, imp: 3, tier: 4, checks: [http] }
1241 + - { id: db-framer-api, name: "Framer API", host: api.framer.com, url: "https://api.framer.com/", cat: developer, provider: framer, cc: NL, imp: 3, tier: 4, checks: [http] }
1242 + - { id: db-bubble, name: "Bubble", host: bubble.io, cat: developer, provider: bubble, svc: bubble, cc: US, imp: 3, tier: 4, checks: [http] }
1243 + - { id: db-bubble-status, name: "Bubble status page", host: status.bubble.io, cat: developer, provider: bubble, svc: bubble, cc: US, imp: 3, tier: 4, checks: [http] }
1244 + - { id: db-bubble-manual, name: "Bubble manual", host: manual.bubble.io, cat: developer, provider: bubble, svc: bubble, cc: US, imp: 3, tier: 4, checks: [http] }
1245 + - { id: db-bubble-forum, name: "Bubble forum", host: forum.bubble.io, cat: developer, provider: bubble, svc: bubble, cc: US, imp: 3, tier: 4, checks: [http] }
1246 + - { id: db-retool, name: "Retool", host: retool.com, cat: developer, provider: retool, svc: retool, cc: US, imp: 3, tier: 4, checks: [http] }
1247 + - { id: db-retool-docs, name: "Retool docs", host: docs.retool.com, cat: developer, provider: retool, svc: retool, cc: US, imp: 3, tier: 4, checks: [http] }
1248 + - { id: db-retool-status, name: "Retool status page", host: status.retool.com, cat: developer, provider: retool, svc: retool, cc: US, imp: 3, tier: 4, checks: [http] }
1249 + - { id: db-retool-community, name: "Retool community", host: community.retool.com, cat: developer, provider: retool, svc: retool, cc: US, imp: 3, tier: 4, checks: [http] }
1250 + - { id: db-retool-api, name: "Retool API", host: api.retool.com, url: "https://api.retool.com/api/v2/", cat: developer, provider: retool, svc: retool, cc: US, imp: 3, tier: 4, checks: [http] }
1251 + - { id: db-airtable-hosts-status, name: "Airtable hosts status page", host: status.airtable.com, cat: developer, provider: airtable, svc: airtable, cc: US, imp: 3, tier: 4, checks: [http] }
1252 + - { id: db-airtable-hosts-api, name: "Airtable hosts API", host: api.airtable.com, url: "https://api.airtable.com/v0/meta/bases", cat: developer, provider: airtable, svc: airtable, cc: US, imp: 3, tier: 4, checks: [http] }
1253 + - { id: db-airtable-hosts-support, name: "Airtable hosts support", host: support.airtable.com, cat: developer, provider: airtable, svc: airtable, cc: US, imp: 3, tier: 4, checks: [http] }
1254 + - { id: db-airtable-hosts-developers, name: "Airtable hosts developer portal", host: airtable.com, url: "https://airtable.com/developers", cat: developer, provider: airtable, svc: airtable, cc: US, imp: 3, tier: 4, checks: [http] }
1255 + - { id: db-airtable-hosts-community, name: "Airtable hosts community", host: community.airtable.com, cat: developer, provider: airtable, svc: airtable, cc: US, imp: 3, tier: 4, checks: [http] }
1256 + - { id: db-airtable-hosts-dl, name: "Airtable hosts downloads", host: dl.airtable.com, url: "https://dl.airtable.com/", cat: developer, provider: airtable, svc: airtable, cc: US, imp: 3, tier: 4, checks: [http] }
1257 + - { id: db-notion-hosts-status, name: "Notion hosts status page", host: status.notion.so, cat: developer, provider: notion, cc: US, imp: 4, tier: 3, checks: [http] }
1258 + - { id: db-notion-hosts-developers, name: "Notion hosts developer portal", host: developers.notion.com, cat: developer, provider: notion, cc: US, imp: 4, tier: 3, checks: [http] }
1259 + - { id: db-notion-hosts-api, name: "Notion hosts API", host: api.notion.com, url: "https://api.notion.com/v1/users", cat: developer, provider: notion, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1260 + - { id: db-notion-hosts-notion-site, name: "Notion hosts notion site", host: notion.site, url: "https://notion.site/", cat: developer, provider: notion, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1261 + - { id: db-notion-hosts-notion-com, name: "Notion hosts notion com", host: www.notion.com, cat: developer, provider: notion, cc: US, imp: 4, tier: 3, checks: [http] }
1262 + - { id: db-notion-hosts-static, name: "Notion hosts static assets", host: www.notion.so, url: "https://www.notion.so/images/favicon.ico", cat: developer, provider: notion, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1263 + - { id: db-notion-hosts-calendar, name: "Notion hosts calendar", host: calendar.notion.so, cat: developer, provider: notion, cc: US, imp: 4, tier: 3, checks: [http] }
1264 + - { id: db-notion-hosts-mail, name: "Notion hosts mail", host: mail.notion.so, cat: developer, provider: notion, cc: US, imp: 4, tier: 3, checks: [http] }
1265 + - { id: db-coda, name: "Coda", host: coda.io, cat: developer, provider: coda, svc: coda, cc: US, imp: 3, tier: 4, checks: [http] }
1266 + - { id: db-coda-status, name: "Coda status page", host: status.coda.io, cat: developer, provider: coda, svc: coda, cc: US, imp: 3, tier: 4, checks: [http] }
1267 + - { id: db-coda-help, name: "Coda help centre", host: help.coda.io, cat: developer, provider: coda, svc: coda, cc: US, imp: 3, tier: 4, checks: [http] }
1268 + - { id: db-coda-community, name: "Coda community", host: community.coda.io, cat: developer, provider: coda, svc: coda, cc: US, imp: 3, tier: 4, checks: [http] }
1269 + - { id: db-zapier-hosts-status, name: "Zapier hosts status page", host: status.zapier.com, cat: developer, provider: zapier, svc: zapier, cc: US, imp: 4, tier: 3, checks: [http] }
1270 + - { id: db-zapier-hosts-help, name: "Zapier hosts help centre", host: help.zapier.com, cat: developer, provider: zapier, svc: zapier, cc: US, imp: 4, tier: 3, checks: [http] }
1271 + - { id: db-zapier-hosts-api, name: "Zapier hosts API", host: api.zapier.com, url: "https://api.zapier.com/v1/", cat: developer, provider: zapier, svc: zapier, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1272 + - { id: db-zapier-hosts-hooks, name: "Zapier hosts hooks", host: hooks.zapier.com, url: "https://hooks.zapier.com/", cat: developer, provider: zapier, svc: zapier, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1273 + - { id: db-zapier-hosts-developer, name: "Zapier hosts developer portal", host: developer.zapier.com, url: "https://developer.zapier.com/", cat: developer, provider: zapier, svc: zapier, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1274 + - { id: db-zapier-hosts-platform, name: "Zapier hosts platform", host: platform.zapier.com, cat: developer, provider: zapier, svc: zapier, cc: US, imp: 4, tier: 3, checks: [http] }
1275 + - { id: db-zapier-hosts-community, name: "Zapier hosts community", host: community.zapier.com, cat: developer, provider: zapier, svc: zapier, cc: US, imp: 4, tier: 3, checks: [http] }
1276 + - { id: db-zapier-hosts-cdn, name: "Zapier hosts CDN", host: cdn.zapier.com, url: "https://cdn.zapier.com/", cat: developer, provider: zapier, svc: zapier, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1277 + - { id: db-make, name: "Make (Integromat)", host: www.make.com, cat: developer, provider: make, svc: make, cc: CZ, imp: 3, tier: 4, checks: [http] }
1278 + - { id: db-make-status, name: "Make (Integromat) status page", host: status.make.com, cat: developer, provider: make, svc: make, cc: CZ, imp: 3, tier: 4, checks: [http] }
1279 + - { id: db-make-help, name: "Make (Integromat) help centre", host: help.make.com, cat: developer, provider: make, svc: make, cc: CZ, imp: 3, tier: 4, checks: [http] }
1280 + - { id: db-make-community, name: "Make (Integromat) community", host: community.make.com, cat: developer, provider: make, svc: make, cc: CZ, imp: 3, tier: 4, checks: [http] }
1281 + - { id: db-make-developers, name: "Make (Integromat) developer portal", host: developers.make.com, cat: developer, provider: make, svc: make, cc: CZ, imp: 3, tier: 4, checks: [http] }
1282 + - { id: db-make-eu1, name: "Make (Integromat) eu1", host: eu1.make.com, url: "https://eu1.make.com/api/v2/", cat: developer, provider: make, svc: make, cc: CZ, imp: 3, tier: 4, checks: [http] }
1283 + - { id: db-make-hook, name: "Make (Integromat) hook", host: hook.eu1.make.com, url: "https://hook.eu1.make.com/", cat: developer, provider: make, svc: make, cc: CZ, imp: 3, tier: 4, checks: [http] }
1284 + - { id: db-make-us1, name: "Make (Integromat) us1", host: us1.make.com, url: "https://us1.make.com/api/v2/", cat: developer, provider: make, svc: make, cc: CZ, imp: 3, tier: 4, checks: [http] }
1285 + - { id: db-n8n, name: "n8n", host: n8n.io, cat: developer, provider: n8n, cc: DE, imp: 3, tier: 4, checks: [http] }
1286 + - { id: db-n8n-docs, name: "n8n docs", host: docs.n8n.io, cat: developer, provider: n8n, cc: DE, imp: 3, tier: 4, checks: [http] }
1287 + - { id: db-n8n-status, name: "n8n status page", host: status.n8n.cloud, cat: developer, provider: n8n, cc: DE, imp: 3, tier: 4, checks: [http] }
1288 + - { id: db-n8n-community, name: "n8n community", host: community.n8n.io, cat: developer, provider: n8n, cc: DE, imp: 3, tier: 4, checks: [http] }
1289 + - { id: db-n8n-api, name: "n8n API", host: api.n8n.io, url: "https://api.n8n.io/api/templates/collections?limit=1", cat: developer, provider: n8n, cc: DE, imp: 3, tier: 4, checks: [http] }
1290 + - { id: db-pipedream, name: "Pipedream", host: pipedream.com, cat: developer, provider: pipedream, svc: pipedream, cc: US, imp: 2, tier: 4, checks: [http] }
1291 + - { id: db-pipedream-status, name: "Pipedream status page", host: status.pipedream.com, cat: developer, provider: pipedream, svc: pipedream, cc: US, imp: 2, tier: 4, checks: [http] }
1292 + - { id: db-pipedream-api, name: "Pipedream API", host: api.pipedream.com, url: "https://api.pipedream.com/v1/", cat: developer, provider: pipedream, svc: pipedream, cc: US, imp: 2, tier: 4, checks: [http] }
1293 + - { id: db-workato-workato, name: "Workato / Tray / Celigo / Boomi / MuleSoft workato", host: www.workato.com, cat: developer, provider: workato, svc: workato, cc: US, imp: 2, tier: 4, checks: [http] }
1294 + - { id: db-workato-workato-status, name: "Workato / Tray / Celigo / Boomi / MuleSoft workato status", host: status.workato.com, cat: developer, provider: workato, svc: workato, cc: US, imp: 2, tier: 4, checks: [http] }
1295 + - { id: db-workato-workato-docs, name: "Workato / Tray / Celigo / Boomi / MuleSoft workato docs", host: docs.workato.com, cat: developer, provider: workato, svc: workato, cc: US, imp: 2, tier: 4, checks: [http] }
1296 + - { id: db-workato-tray, name: "Workato / Tray / Celigo / Boomi / MuleSoft tray", host: tray.ai, cat: developer, provider: workato, svc: workato, cc: US, imp: 2, tier: 4, checks: [http] }
1297 + - { id: db-workato-tray-status, name: "Workato / Tray / Celigo / Boomi / MuleSoft tray status", host: status.tray.io, cat: developer, provider: workato, svc: workato, cc: US, imp: 2, tier: 4, checks: [http] }
1298 + - { id: db-workato-celigo, name: "Workato / Tray / Celigo / Boomi / MuleSoft celigo", host: www.celigo.com, cat: developer, provider: workato, svc: workato, cc: US, imp: 2, tier: 4, checks: [http] }
1299 + - { id: db-workato-celigo-status, name: "Workato / Tray / Celigo / Boomi / MuleSoft celigo status", host: status.celigo.com, cat: developer, provider: workato, svc: workato, cc: US, imp: 2, tier: 4, checks: [http] }
1300 + - { id: db-workato-boomi, name: "Workato / Tray / Celigo / Boomi / MuleSoft boomi", host: boomi.com, cat: developer, provider: workato, svc: workato, cc: US, imp: 2, tier: 4, checks: [http] }
1301 + - { id: db-workato-boomi-status, name: "Workato / Tray / Celigo / Boomi / MuleSoft boomi status", host: status.boomi.com, cat: developer, provider: workato, svc: workato, cc: US, imp: 2, tier: 4, checks: [http] }
1302 + - { id: db-workato-mulesoft, name: "Workato / Tray / Celigo / Boomi / MuleSoft mulesoft", host: www.mulesoft.com, cat: developer, provider: workato, svc: workato, cc: US, imp: 2, tier: 4, checks: [http] }
1303 + - { id: db-workato-mulesoft-status, name: "Workato / Tray / Celigo / Boomi / MuleSoft mulesoft status", host: status.mulesoft.com, cat: developer, provider: workato, svc: workato, cc: US, imp: 2, tier: 4, checks: [http] }
1304 + - { id: db-workato-anypoint, name: "Workato / Tray / Celigo / Boomi / MuleSoft anypoint", host: anypoint.mulesoft.com, url: "https://anypoint.mulesoft.com/exchange/", cat: developer, provider: workato, svc: workato, cc: US, imp: 2, tier: 4, checks: [http] }
1305 + - { id: db-workato-jitterbit, name: "Workato / Tray / Celigo / Boomi / MuleSoft jitterbit", host: www.jitterbit.com, cat: developer, provider: workato, svc: workato, cc: US, imp: 2, tier: 4, checks: [http] }
1306 + - { id: db-activepieces-activepieces, name: "Automation OSS activepieces", host: www.activepieces.com, cat: developer, provider: activepieces, cc: null, imp: 1, tier: 4, checks: [http] }
1307 + - { id: db-activepieces-windmill, name: "Automation OSS windmill", host: www.windmill.dev, cat: developer, provider: activepieces, cc: null, imp: 1, tier: 4, checks: [http] }
1308 + - { id: db-activepieces-temporal, name: "Automation OSS temporal", host: temporal.io, cat: developer, provider: activepieces, cc: null, imp: 1, tier: 4, checks: [http] }
1309 + - { id: db-activepieces-temporal-status, name: "Automation OSS temporal status", host: status.temporal.io, cat: developer, provider: activepieces, cc: null, imp: 1, tier: 4, checks: [http] }
1310 + - { id: db-activepieces-temporal-docs, name: "Automation OSS temporal docs", host: docs.temporal.io, cat: developer, provider: activepieces, cc: null, imp: 1, tier: 4, checks: [http] }
1311 + - { id: db-activepieces-inngest, name: "Automation OSS inngest", host: www.inngest.com, cat: developer, provider: activepieces, cc: null, imp: 1, tier: 4, checks: [http] }
1312 + - { id: db-activepieces-inngest-status, name: "Automation OSS inngest status", host: status.inngest.com, cat: developer, provider: activepieces, cc: null, imp: 1, tier: 4, checks: [http] }
1313 + - { id: db-activepieces-trigger, name: "Automation OSS trigger", host: trigger.dev, cat: developer, provider: activepieces, cc: null, imp: 1, tier: 4, checks: [http] }
1314 + - { id: db-activepieces-trigger-status, name: "Automation OSS trigger status", host: status.trigger.dev, cat: developer, provider: activepieces, cc: null, imp: 1, tier: 4, checks: [http] }
1315 + - { id: db-activepieces-hatchet, name: "Automation OSS hatchet", host: hatchet.run, cat: developer, provider: activepieces, cc: null, imp: 1, tier: 4, checks: [http] }
1316 + - { id: db-deno-deploy-docs, name: "Deno Deploy docs", host: docs.deno.com, cat: developer, provider: deno, cc: US, imp: 3, tier: 4, checks: [http] }
1317 + - { id: db-deno-deploy-status, name: "Deno Deploy status page", host: status.deno.com, cat: developer, provider: deno, cc: US, imp: 3, tier: 4, checks: [http] }
1318 + - { id: db-deno-deploy-deno-dev, name: "Deno Deploy deno dev", host: deno.dev, url: "https://deno.dev/", cat: developer, provider: deno, cc: US, imp: 3, tier: 4, checks: [http] }
1319 + - { id: db-deno-deploy-api, name: "Deno Deploy API", host: api.deno.com, url: "https://api.deno.com/v1/", cat: developer, provider: deno, cc: US, imp: 3, tier: 4, checks: [http] }
1320 + - { id: db-deno-deploy-jsr-api, name: "Deno Deploy jsr api", host: jsr.io, url: "https://jsr.io/api/packages?limit=1", cat: developer, provider: deno, cc: US, imp: 3, tier: 4, checks: [http] }
1321 + - { id: db-deno-deploy-npm-jsr, name: "Deno Deploy npm jsr", host: npm.jsr.io, url: "https://npm.jsr.io/@jsr/std__path", cat: developer, provider: deno, cc: US, imp: 3, tier: 4, checks: [http] }
1322 + - { id: db-bun-hosts-docs, name: "Bun hosts docs", host: bun.sh, url: "https://bun.sh/docs", cat: developer, provider: oven, cc: US, imp: 3, tier: 4, checks: [http] }
1323 + - { id: db-fly-hosts-status, name: "Fly.io hosts status page", host: status.flyio.net, cat: developer, provider: fly, svc: fly, cc: US, imp: 3, tier: 4, checks: [http] }
1324 + - { id: db-fly-hosts-community, name: "Fly.io hosts community", host: community.fly.io, cat: developer, provider: fly, svc: fly, cc: US, imp: 3, tier: 4, checks: [http] }
1325 + - { id: db-fly-hosts-api, name: "Fly.io hosts API", host: api.machines.dev, url: "https://api.machines.dev/v1/apps", cat: developer, provider: fly, svc: fly, cc: US, imp: 3, tier: 4, checks: [http] }
1326 + - { id: db-fly-hosts-debug, name: "Fly.io hosts debug", host: debug.fly.dev, url: "https://debug.fly.dev/", cat: developer, provider: fly, svc: fly, cc: US, imp: 3, tier: 4, checks: [http] }
1327 + - { id: db-render-hosts-status, name: "Render hosts status page", host: status.render.com, cat: developer, provider: render, svc: render, cc: US, imp: 3, tier: 4, checks: [http] }
1328 + - { id: db-render-hosts-api, name: "Render hosts API", host: api.render.com, url: "https://api.render.com/v1/", cat: developer, provider: render, svc: render, cc: US, imp: 3, tier: 4, checks: [http] }
1329 + - { id: db-render-hosts-community, name: "Render hosts community", host: community.render.com, cat: developer, provider: render, svc: render, cc: US, imp: 3, tier: 4, checks: [http] }
1330 + - { id: db-render-hosts-onrender, name: "Render hosts onrender", host: onrender.com, url: "https://onrender.com/", cat: developer, provider: render, svc: render, cc: US, imp: 3, tier: 4, checks: [http] }
1331 + - { id: db-railway-docs, name: "Railway docs", host: docs.railway.com, cat: developer, provider: railway, cc: US, imp: 3, tier: 4, checks: [http] }
1332 + - { id: db-railway-status, name: "Railway status page", host: status.railway.com, cat: developer, provider: railway, cc: US, imp: 3, tier: 4, checks: [http] }
1333 + - { id: db-railway-backboard, name: "Railway backboard", host: backboard.railway.com, url: "https://backboard.railway.com/graphql/v2", cat: developer, provider: railway, cc: US, imp: 3, tier: 4, checks: [http] }
1334 + - { id: db-railway-up, name: "Railway up", host: up.railway.app, url: "https://up.railway.app/", cat: developer, provider: railway, cc: US, imp: 3, tier: 4, checks: [http] }
1335 + - { id: db-railway-help, name: "Railway help centre", host: help.railway.com, cat: developer, provider: railway, cc: US, imp: 3, tier: 4, checks: [http] }
1336 + - { id: db-railway-blog, name: "Railway blog", host: blog.railway.com, cat: developer, provider: railway, cc: US, imp: 3, tier: 4, checks: [http] }
1337 + - { id: db-koyeb-hosts-status, name: "Koyeb hosts status page", host: status.koyeb.com, cat: developer, provider: koyeb, svc: koyeb, cc: FR, imp: 2, tier: 4, checks: [http] }
1338 + - { id: db-northflank-status, name: "Northflank status page", host: status.northflank.com, cat: developer, provider: northflank, cc: GB, imp: 2, tier: 4, checks: [http] }
1339 + - { id: db-northflank-api, name: "Northflank API", host: api.northflank.com, url: "https://api.northflank.com/v1/", cat: developer, provider: northflank, cc: GB, imp: 2, tier: 4, checks: [http] }
1340 + - { id: db-qovery, name: "Qovery", host: www.qovery.com, cat: developer, provider: qovery, cc: FR, imp: 2, tier: 4, checks: [http] }
1341 + - { id: db-qovery-status, name: "Qovery status page", host: status.qovery.com, cat: developer, provider: qovery, cc: FR, imp: 2, tier: 4, checks: [http] }
1342 + - { id: db-qovery-docs, name: "Qovery docs", host: hub.qovery.com, cat: developer, provider: qovery, cc: FR, imp: 2, tier: 4, checks: [http] }
1343 + - { id: db-qovery-api, name: "Qovery API", host: api.qovery.com, url: "https://api.qovery.com/", cat: developer, provider: qovery, cc: FR, imp: 2, tier: 4, checks: [http] }
1344 + - { id: db-porter, name: "Porter", host: porter.run, cat: developer, provider: porter, cc: US, imp: 2, tier: 4, checks: [http] }
1345 + - { id: db-porter-docs, name: "Porter docs", host: docs.porter.run, cat: developer, provider: porter, cc: US, imp: 2, tier: 4, checks: [http] }
1346 + - { id: db-porter-status, name: "Porter status page", host: status.porter.run, cat: developer, provider: porter, cc: US, imp: 2, tier: 4, checks: [http] }
1347 + - { id: db-coolify, name: "Coolify / Dokku / CapRover / Kamal", host: coolify.io, cat: developer, provider: coolify, cc: null, imp: 2, tier: 4, checks: [http] }
1348 + - { id: db-coolify-coolify-cloud, name: "Coolify / Dokku / CapRover / Kamal coolify cloud", host: app.coolify.io, cat: developer, provider: coolify, cc: null, imp: 2, tier: 4, checks: [http] }
1349 + - { id: db-coolify-kamal, name: "Coolify / Dokku / CapRover / Kamal kamal", host: kamal-deploy.org, cat: developer, provider: coolify, cc: null, imp: 2, tier: 4, checks: [http] }
1350 + - { id: db-coolify-dokku, name: "Coolify / Dokku / CapRover / Kamal dokku", host: dokku.com, cat: developer, provider: coolify, cc: null, imp: 2, tier: 4, checks: [http] }
1351 + - { id: db-coolify-caprover, name: "Coolify / Dokku / CapRover / Kamal caprover", host: caprover.com, cat: developer, provider: coolify, cc: null, imp: 2, tier: 4, checks: [http] }
1352 + - { id: db-heroku-hosts-status, name: "Heroku hosts status page", host: status.heroku.com, cat: developer, provider: heroku, svc: heroku, cc: US, imp: 3, tier: 4, checks: [http] }
1353 + - { id: db-heroku-hosts-devcenter, name: "Heroku hosts devcenter", host: devcenter.heroku.com, cat: developer, provider: heroku, svc: heroku, cc: US, imp: 3, tier: 4, checks: [http] }
1354 + - { id: db-heroku-hosts-api, name: "Heroku hosts API", host: api.heroku.com, url: "https://api.heroku.com/", cat: developer, provider: heroku, svc: heroku, cc: US, imp: 3, tier: 4, checks: [http] }
1355 + - { id: db-heroku-hosts-elements, name: "Heroku hosts elements", host: elements.heroku.com, cat: developer, provider: heroku, svc: heroku, cc: US, imp: 3, tier: 4, checks: [http] }
1356 + - { id: db-heroku-hosts-help, name: "Heroku hosts help centre", host: help.heroku.com, cat: developer, provider: heroku, svc: heroku, cc: US, imp: 3, tier: 4, checks: [http] }
1357 + - { id: db-heroku-hosts-id, name: "Heroku hosts identity", host: id.heroku.com, cat: developer, provider: heroku, svc: heroku, cc: US, imp: 3, tier: 4, checks: [http] }
1358 + - { id: db-heroku-hosts-cli, name: "Heroku hosts CLI", host: cli-assets.heroku.com, url: "https://cli-assets.heroku.com/", cat: developer, provider: heroku, svc: heroku, cc: US, imp: 3, tier: 4, checks: [http] }
1359 + - { id: db-digitalocean-apps-api, name: "DigitalOcean developer hosts API", host: api.digitalocean.com, url: "https://api.digitalocean.com/v2/", cat: developer, provider: digitalocean, svc: digitalocean, cc: US, imp: 3, tier: 4, checks: [http] }
1360 + - { id: db-digitalocean-apps-status, name: "DigitalOcean developer hosts status page", host: status.digitalocean.com, cat: developer, provider: digitalocean, svc: digitalocean, cc: US, imp: 3, tier: 4, checks: [http] }
1361 + - { id: db-digitalocean-apps-community, name: "DigitalOcean developer hosts community", host: www.digitalocean.com, url: "https://www.digitalocean.com/community", cat: developer, provider: digitalocean, svc: digitalocean, cc: US, imp: 3, tier: 4, checks: [http] }
1362 + - { id: db-digitalocean-apps-marketplace, name: "DigitalOcean developer hosts marketplace", host: marketplace.digitalocean.com, cat: developer, provider: digitalocean, svc: digitalocean, cc: US, imp: 3, tier: 4, checks: [http] }
1363 + - { id: db-cloudflare-dev-platform-pages-dev, name: "Cloudflare developer platform pages dev", host: pages.dev, url: "https://pages.dev/", cat: developer, provider: cloudflare, svc: cloudflare, cc: null, imp: 4, tier: 3, checks: [http, dns] }
1364 + - { id: db-cloudflare-dev-platform-workers-dev-www, name: "Cloudflare developer platform workers dev www", host: workers.dev, url: "https://workers.dev/", cat: developer, provider: cloudflare, svc: cloudflare, cc: null, imp: 4, tier: 3, checks: [http, dns] }
1365 + - { id: db-cloudflare-dev-platform-community, name: "Cloudflare developer platform community", host: community.cloudflare.com, cat: developer, provider: cloudflare, svc: cloudflare, cc: null, imp: 4, tier: 3, checks: [http] }
1366 + - { id: db-cloudflare-dev-platform-blog, name: "Cloudflare developer platform blog", host: blog.cloudflare.com, cat: developer, provider: cloudflare, svc: cloudflare, cc: null, imp: 4, tier: 3, checks: [http] }
1367 + - { id: db-cloudflare-dev-platform-d1, name: "Cloudflare developer platform d1", host: developers.cloudflare.com, url: "https://developers.cloudflare.com/d1/", cat: developer, provider: cloudflare, svc: cloudflare, cc: null, imp: 4, tier: 3, checks: [http, dns] }
1368 + - { id: db-cloudflare-dev-platform-tv, name: "Cloudflare developer platform tv", host: cloudflare.tv, cat: developer, provider: cloudflare, svc: cloudflare, cc: null, imp: 4, tier: 3, checks: [http] }
1369 + - { id: db-aws-serverless-awscli, name: "AWS serverless product pages awscli", host: awscli.amazonaws.com, url: "https://awscli.amazonaws.com/v2/documentation/api/latest/index.html", cat: developer, provider: aws, svc: aws, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1370 + - { id: db-aws-serverless-sdk-npm, name: "AWS serverless product pages sdk npm", host: registry.npmjs.org, url: "https://registry.npmjs.org/@aws-sdk%2Fclient-s3", cat: developer, provider: aws, svc: aws, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1371 + - { id: db-aws-serverless-skillbuilder, name: "AWS serverless product pages skillbuilder", host: skillbuilder.aws, cat: developer, provider: aws, svc: aws, cc: US, imp: 4, tier: 3, checks: [http] }
1372 + - { id: db-aws-serverless-workshops, name: "AWS serverless product pages workshops", host: workshops.aws, cat: developer, provider: aws, svc: aws, cc: US, imp: 4, tier: 3, checks: [http] }
1373 + - { id: db-azure-serverless-functions, name: "Azure developer product pages functions", host: azure.microsoft.com, url: "https://azure.microsoft.com/en-us/products/functions", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1374 + - { id: db-azure-serverless-management, name: "Azure developer product pages management", host: management.azure.com, url: "https://management.azure.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1375 + - { id: db-azure-serverless-graph, name: "Azure developer product pages graph", host: graph.microsoft.com, url: "https://graph.microsoft.com/v1.0/$metadata", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1376 + - { id: db-azure-serverless-techcommunity, name: "Azure developer product pages techcommunity", host: techcommunity.microsoft.com, cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 4, tier: 3, checks: [http] }
1377 + - { id: db-gcp-serverless-run-app, name: "Google Cloud developer product pages run app", host: run.app, url: "https://run.app/", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1378 + - { id: db-gcp-serverless-appspot, name: "Google Cloud developer product pages appspot", host: appspot.com, url: "https://appspot.com/", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1379 + - { id: db-gcp-serverless-oauth2, name: "Google Cloud developer product pages oauth2", host: oauth2.googleapis.com, url: "https://oauth2.googleapis.com/tokeninfo", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1380 + - { id: db-gcp-serverless-pubsub, name: "Google Cloud developer product pages pubsub", host: pubsub.googleapis.com, url: "https://pubsub.googleapis.com/$discovery/rest?version=v1", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1381 + - { id: db-gcp-serverless-bigquery, name: "Google Cloud developer product pages bigquery", host: bigquery.googleapis.com, url: "https://bigquery.googleapis.com/$discovery/rest?version=v2", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1382 + - { id: db-gcp-serverless-compute, name: "Google Cloud developer product pages compute", host: compute.googleapis.com, url: "https://compute.googleapis.com/$discovery/rest?version=v1", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1383 + - { id: db-gcp-serverless-codelabs, name: "Google Cloud developer product pages codelabs", host: codelabs.developers.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http] }
1384 + - { id: db-gcp-serverless-issuetracker, name: "Google Cloud developer product pages issuetracker", host: issuetracker.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http] }
1385 + - { id: db-gcp-serverless-skills, name: "Google Cloud developer product pages skills", host: www.cloudskillsboost.google, cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http] }
1386 + - { id: db-fastly-compute-compute, name: "Fastly / Akamai developer pages compute", host: www.fastly.com, url: "https://www.fastly.com/products/edge-compute", cat: developer, provider: fastly, svc: fastly, cc: US, imp: 3, tier: 4, checks: [http] }
1387 + - { id: db-fastly-compute-fastly-docs, name: "Fastly / Akamai developer pages fastly docs", host: docs.fastly.com, cat: developer, provider: fastly, svc: fastly, cc: US, imp: 3, tier: 4, checks: [http] }
1388 + - { id: db-fastly-compute-fastly-developer, name: "Fastly / Akamai developer pages fastly developer", host: developer.fastly.com, cat: developer, provider: fastly, svc: fastly, cc: US, imp: 3, tier: 4, checks: [http] }
1389 + - { id: db-fastly-compute-fastly-api, name: "Fastly / Akamai developer pages fastly api", host: api.fastly.com, url: "https://api.fastly.com/public-ip-list", cat: developer, provider: fastly, svc: fastly, cc: US, imp: 3, tier: 4, checks: [http] }
1390 + - { id: db-fastly-compute-fastly-status, name: "Fastly / Akamai developer pages fastly status", host: www.fastlystatus.com, cat: developer, provider: fastly, svc: fastly, cc: US, imp: 3, tier: 4, checks: [http] }
1391 + - { id: db-fastly-compute-fastly-community, name: "Fastly / Akamai developer pages fastly community", host: community.fastly.com, cat: developer, provider: fastly, svc: fastly, cc: US, imp: 3, tier: 4, checks: [http] }
1392 + - { id: db-fastly-compute-edgeworkers, name: "Fastly / Akamai developer pages edgeworkers", host: techdocs.akamai.com, url: "https://techdocs.akamai.com/edgeworkers/docs", cat: developer, provider: fastly, svc: fastly, cc: US, imp: 3, tier: 4, checks: [http] }
1393 + - { id: db-fastly-compute-akamai-developer, name: "Fastly / Akamai developer pages akamai developer", host: developer.akamai.com, cat: developer, provider: fastly, svc: fastly, cc: US, imp: 3, tier: 4, checks: [http] }
1394 + - { id: db-fastly-compute-akamai-community, name: "Fastly / Akamai developer pages akamai community", host: community.akamai.com, cat: developer, provider: fastly, svc: fastly, cc: US, imp: 3, tier: 4, checks: [http] }
1395 + - { id: db-netlify-hosts-status, name: "Netlify hosts status page", host: www.netlifystatus.com, cat: developer, provider: netlify, svc: netlify, cc: US, imp: 3, tier: 4, checks: [http] }
1396 + - { id: db-netlify-hosts-docs, name: "Netlify hosts docs", host: docs.netlify.com, cat: developer, provider: netlify, svc: netlify, cc: US, imp: 3, tier: 4, checks: [http] }
1397 + - { id: db-netlify-hosts-api, name: "Netlify hosts API", host: api.netlify.com, url: "https://api.netlify.com/api/v1/", cat: developer, provider: netlify, svc: netlify, cc: US, imp: 3, tier: 4, checks: [http] }
1398 + - { id: db-netlify-hosts-answers, name: "Netlify hosts answers", host: answers.netlify.com, cat: developer, provider: netlify, svc: netlify, cc: US, imp: 3, tier: 4, checks: [http] }
1399 + - { id: db-netlify-hosts-netlify-app, name: "Netlify hosts netlify app", host: netlify.app, url: "https://netlify.app/", cat: developer, provider: netlify, svc: netlify, cc: US, imp: 3, tier: 4, checks: [http] }
1400 + - { id: db-netlify-hosts-cli, name: "Netlify hosts CLI", host: cli.netlify.com, cat: developer, provider: netlify, svc: netlify, cc: US, imp: 3, tier: 4, checks: [http] }
1401 + - { id: db-vercel-hosts-vercel-app, name: "Vercel hosts vercel app", host: vercel.app, url: "https://vercel.app/", cat: developer, provider: vercel, svc: vercel, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1402 + - { id: db-vercel-hosts-now-sh, name: "Vercel hosts now sh", host: now.sh, url: "https://now.sh/", cat: developer, provider: vercel, svc: vercel, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1403 + - { id: db-vercel-hosts-vercel-community, name: "Vercel hosts vercel community", host: community.vercel.com, cat: developer, provider: vercel, svc: vercel, cc: US, imp: 4, tier: 3, checks: [http] }
1404 + - { id: db-vercel-hosts-vercel-ai, name: "Vercel hosts vercel ai", host: sdk.vercel.ai, cat: developer, provider: vercel, svc: vercel, cc: US, imp: 4, tier: 3, checks: [http] }
1405 + - { id: db-vercel-hosts-vercel-insights, name: "Vercel hosts vercel insights", host: vitals.vercel-insights.com, url: "https://vitals.vercel-insights.com/", cat: developer, provider: vercel, svc: vercel, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1406 + - { id: db-vercel-hosts-vercel-dns, name: "Vercel hosts vercel dns", host: vercel-dns.com, url: "https://vercel-dns.com/", cat: developer, provider: vercel, svc: vercel, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1407 + - { id: db-vercel-hosts-vercel-storage, name: "Vercel hosts vercel storage", host: blob.vercel-storage.com, url: "https://blob.vercel-storage.com/", cat: developer, provider: vercel, svc: vercel, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1408 + - { id: db-platform-sh-platform-docs, name: "Platform.sh / Upsun / Clever Cloud / Scalingo platform docs", host: docs.platform.sh, cat: developer, provider: platformsh, cc: FR, imp: 2, tier: 4, checks: [http] }
1409 + - { id: db-platform-sh-platform-status, name: "Platform.sh / Upsun / Clever Cloud / Scalingo platform status", host: status.platform.sh, cat: developer, provider: platformsh, cc: FR, imp: 2, tier: 4, checks: [http] }
1410 + - { id: db-platform-sh-clever, name: "Platform.sh / Upsun / Clever Cloud / Scalingo clever", host: www.clever-cloud.com, cat: developer, provider: platformsh, cc: FR, imp: 2, tier: 4, checks: [http] }
1411 + - { id: db-platform-sh-clever-status, name: "Platform.sh / Upsun / Clever Cloud / Scalingo clever status", host: www.clevercloudstatus.com, cat: developer, provider: platformsh, cc: FR, imp: 2, tier: 4, checks: [http] }
1412 + - { id: db-platform-sh-clever-console, name: "Platform.sh / Upsun / Clever Cloud / Scalingo clever console", host: console.clever-cloud.com, cat: developer, provider: platformsh, cc: FR, imp: 2, tier: 4, checks: [http] }
1413 + - { id: db-platform-sh-scalingo, name: "Platform.sh / Upsun / Clever Cloud / Scalingo scalingo", host: scalingo.com, cat: developer, provider: platformsh, cc: FR, imp: 2, tier: 4, checks: [http] }
1414 + - { id: db-platform-sh-scalingo-status, name: "Platform.sh / Upsun / Clever Cloud / Scalingo scalingo status", host: scalingostatus.com, cat: developer, provider: platformsh, cc: FR, imp: 2, tier: 4, checks: [http] }
1415 + - { id: db-platform-sh-scalingo-doc, name: "Platform.sh / Upsun / Clever Cloud / Scalingo scalingo doc", host: doc.scalingo.com, cat: developer, provider: platformsh, cc: FR, imp: 2, tier: 4, checks: [http] }
1416 + - { id: db-platform-sh-alwaysdata, name: "Platform.sh / Upsun / Clever Cloud / Scalingo alwaysdata", host: www.alwaysdata.com, cat: developer, provider: platformsh, cc: FR, imp: 2, tier: 4, checks: [http] }
1417 + - { id: db-cloud66-cloud66, name: "Cloud 66 / Nanobox / Zeabur / Sevalla cloud66", host: www.cloud66.com, cat: developer, provider: cloud66, cc: null, imp: 1, tier: 4, checks: [http] }
1418 + - { id: db-cloud66-cloud66-status, name: "Cloud 66 / Nanobox / Zeabur / Sevalla cloud66 status", host: status.cloud66.com, cat: developer, provider: cloud66, cc: null, imp: 1, tier: 4, checks: [http] }
1419 + - { id: db-cloud66-sevalla, name: "Cloud 66 / Nanobox / Zeabur / Sevalla sevalla", host: sevalla.com, cat: developer, provider: cloud66, cc: null, imp: 1, tier: 4, checks: [http] }
1420 + - { id: db-cloud66-sevalla-status, name: "Cloud 66 / Nanobox / Zeabur / Sevalla sevalla status", host: status.sevalla.com, cat: developer, provider: cloud66, cc: null, imp: 1, tier: 4, checks: [http] }
1421 + - { id: db-cloud66-sliplane, name: "Cloud 66 / Nanobox / Zeabur / Sevalla sliplane", host: sliplane.io, cat: developer, provider: cloud66, cc: null, imp: 1, tier: 4, checks: [http] }
1422 + - { id: db-aiven-aiven, name: "Aiven / Timescale / Crunchy / EDB aiven", host: aiven.io, cat: developer, provider: aiven, svc: aiven, cc: FI, imp: 2, tier: 4, checks: [http] }
1423 + - { id: db-aiven-aiven-status, name: "Aiven / Timescale / Crunchy / EDB aiven status", host: status.aiven.io, cat: developer, provider: aiven, svc: aiven, cc: FI, imp: 2, tier: 4, checks: [http] }
1424 + - { id: db-aiven-aiven-console, name: "Aiven / Timescale / Crunchy / EDB aiven console", host: console.aiven.io, cat: developer, provider: aiven, svc: aiven, cc: FI, imp: 2, tier: 4, checks: [http] }
1425 + - { id: db-aiven-timescale, name: "Aiven / Timescale / Crunchy / EDB timescale", host: www.timescale.com, cat: developer, provider: aiven, svc: aiven, cc: FI, imp: 2, tier: 4, checks: [http] }
1426 + - { id: db-aiven-timescale-docs, name: "Aiven / Timescale / Crunchy / EDB timescale docs", host: docs.timescale.com, cat: developer, provider: aiven, svc: aiven, cc: FI, imp: 2, tier: 4, checks: [http] }
1427 + - { id: db-aiven-tigerdata, name: "Aiven / Timescale / Crunchy / EDB tigerdata", host: www.tigerdata.com, cat: developer, provider: aiven, svc: aiven, cc: FI, imp: 2, tier: 4, checks: [http] }
1428 + - { id: db-aiven-crunchy, name: "Aiven / Timescale / Crunchy / EDB crunchy", host: www.crunchydata.com, cat: developer, provider: aiven, svc: aiven, cc: FI, imp: 2, tier: 4, checks: [http] }
1429 + - { id: db-aiven-crunchy-status, name: "Aiven / Timescale / Crunchy / EDB crunchy status", host: status.crunchybridge.com, cat: developer, provider: aiven, svc: aiven, cc: FI, imp: 2, tier: 4, checks: [http] }
1430 + - { id: db-aiven-crunchy-bridge, name: "Aiven / Timescale / Crunchy / EDB crunchy bridge", host: crunchybridge.com, cat: developer, provider: aiven, svc: aiven, cc: FI, imp: 2, tier: 4, checks: [http] }
1431 + - { id: db-aiven-edb, name: "Aiven / Timescale / Crunchy / EDB edb", host: www.enterprisedb.com, cat: developer, provider: aiven, svc: aiven, cc: FI, imp: 2, tier: 4, checks: [http] }
1432 + - { id: db-aiven-edb-status, name: "Aiven / Timescale / Crunchy / EDB edb status", host: status.enterprisedb.com, cat: developer, provider: aiven, svc: aiven, cc: FI, imp: 2, tier: 4, checks: [http] }
1433 + - { id: db-postgresql, name: "PostgreSQL", host: www.postgresql.org, cat: developer, provider: postgresql, cc: null, imp: 4, tier: 3, checks: [http] }
1434 + - { id: db-postgresql-download, name: "PostgreSQL downloads", host: download.postgresql.org, cat: developer, provider: postgresql, cc: null, imp: 4, tier: 3, checks: [http] }
1435 + - { id: db-postgresql-wiki, name: "PostgreSQL wiki", host: wiki.postgresql.org, cat: developer, provider: postgresql, cc: null, imp: 4, tier: 3, checks: [http] }
1436 + - { id: db-postgresql-pgxn, name: "PostgreSQL pgxn", host: pgxn.org, cat: developer, provider: postgresql, cc: null, imp: 4, tier: 3, checks: [http] }
1437 + - { id: db-postgresql-pgxn-api, name: "PostgreSQL pgxn api", host: api.pgxn.org, url: "https://api.pgxn.org/index.json", cat: developer, provider: postgresql, cc: null, imp: 4, tier: 3, checks: [http, dns] }
1438 + - { id: db-postgresql-planet, name: "PostgreSQL planet", host: planet.postgresql.org, cat: developer, provider: postgresql, cc: null, imp: 4, tier: 3, checks: [http] }
1439 + - { id: db-postgresql-commitfest, name: "PostgreSQL commitfest", host: commitfest.postgresql.org, cat: developer, provider: postgresql, cc: null, imp: 4, tier: 3, checks: [http] }
1440 + - { id: db-postgresql-postgres-git, name: "PostgreSQL postgres git", host: git.postgresql.org, cat: developer, provider: postgresql, cc: null, imp: 4, tier: 3, checks: [http] }
1441 + - { id: db-postgresql-pgadmin, name: "PostgreSQL pgadmin", host: www.pgadmin.org, cat: developer, provider: postgresql, cc: null, imp: 4, tier: 3, checks: [http] }
1442 + - { id: db-mysql-mysql, name: "MySQL / MariaDB / Percona mysql", host: www.mysql.com, cat: developer, provider: oracle, svc: oracle, cc: US, imp: 3, tier: 4, checks: [http] }
1443 + - { id: db-mysql-mariadb, name: "MySQL / MariaDB / Percona mariadb", host: mariadb.org, cat: developer, provider: oracle, svc: oracle, cc: US, imp: 3, tier: 4, checks: [http] }
1444 + - { id: db-mysql-mariadb-com, name: "MySQL / MariaDB / Percona mariadb com", host: mariadb.com, cat: developer, provider: oracle, svc: oracle, cc: US, imp: 3, tier: 4, checks: [http] }
1445 + - { id: db-mysql-mariadb-dl, name: "MySQL / MariaDB / Percona mariadb dl", host: downloads.mariadb.org, cat: developer, provider: oracle, svc: oracle, cc: US, imp: 3, tier: 4, checks: [http] }
1446 + - { id: db-mysql-mariadb-mirror, name: "MySQL / MariaDB / Percona mariadb mirror", host: dlm.mariadb.com, cat: developer, provider: oracle, svc: oracle, cc: US, imp: 3, tier: 4, checks: [http] }
1447 + - { id: db-mysql-percona, name: "MySQL / MariaDB / Percona percona", host: www.percona.com, cat: developer, provider: oracle, svc: oracle, cc: US, imp: 3, tier: 4, checks: [http] }
1448 + - { id: db-mysql-percona-docs, name: "MySQL / MariaDB / Percona percona docs", host: docs.percona.com, cat: developer, provider: oracle, svc: oracle, cc: US, imp: 3, tier: 4, checks: [http] }
1449 + - { id: db-mysql-percona-status, name: "MySQL / MariaDB / Percona percona status", host: status.percona.com, cat: developer, provider: oracle, svc: oracle, cc: US, imp: 3, tier: 4, checks: [http] }
1450 + - { id: db-sqlite-sqlite, name: "SQLite / DuckDB / libSQL sqlite", host: www.sqlite.org, cat: developer, provider: sqlite, cc: US, imp: 3, tier: 4, checks: [http] }
1451 + - { id: db-sqlite-sqlite-forum, name: "SQLite / DuckDB / libSQL sqlite forum", host: sqlite.org, url: "https://sqlite.org/forum/forum", cat: developer, provider: sqlite, cc: US, imp: 3, tier: 4, checks: [http] }
1452 + - { id: db-sqlite-duckdb, name: "SQLite / DuckDB / libSQL duckdb", host: duckdb.org, cat: developer, provider: sqlite, cc: US, imp: 3, tier: 4, checks: [http] }
1453 + - { id: db-sqlite-duckdb-extensions, name: "SQLite / DuckDB / libSQL duckdb extensions", host: extensions.duckdb.org, url: "https://extensions.duckdb.org/", cat: developer, provider: sqlite, cc: US, imp: 3, tier: 4, checks: [http] }
1454 + - { id: db-sqlite-duckdb-install, name: "SQLite / DuckDB / libSQL duckdb install", host: install.duckdb.org, cat: developer, provider: sqlite, cc: US, imp: 3, tier: 4, checks: [http] }
1455 + - { id: db-sqlite-motherduck, name: "SQLite / DuckDB / libSQL motherduck", host: motherduck.com, cat: developer, provider: sqlite, cc: US, imp: 3, tier: 4, checks: [http] }
1456 + - { id: db-sqlite-motherduck-status, name: "SQLite / DuckDB / libSQL motherduck status", host: status.motherduck.com, cat: developer, provider: sqlite, cc: US, imp: 3, tier: 4, checks: [http] }
1457 + - { id: db-sqlite-motherduck-app, name: "SQLite / DuckDB / libSQL motherduck app", host: app.motherduck.com, cat: developer, provider: sqlite, cc: US, imp: 3, tier: 4, checks: [http] }
1458 + - { id: db-clickhouse, name: "ClickHouse", host: clickhouse.com, cat: developer, provider: clickhouse, svc: clickhouse, cc: US, imp: 3, tier: 4, checks: [http] }
1459 + - { id: db-clickhouse-status, name: "ClickHouse status page", host: status.clickhouse.com, cat: developer, provider: clickhouse, svc: clickhouse, cc: US, imp: 3, tier: 4, checks: [http] }
1460 + - { id: db-clickhouse-packages, name: "ClickHouse packages", host: packages.clickhouse.com, url: "https://packages.clickhouse.com/deb/dists/stable/Release", cat: developer, provider: clickhouse, svc: clickhouse, cc: US, imp: 3, tier: 4, checks: [http] }
1461 + - { id: db-clickhouse-play, name: "ClickHouse play", host: play.clickhouse.com, url: "https://play.clickhouse.com/?user=play&query=SELECT%201", cat: developer, provider: clickhouse, svc: clickhouse, cc: US, imp: 3, tier: 4, checks: [http] }
1462 + - { id: db-clickhouse-builds, name: "ClickHouse builds", host: builds.clickhouse.com, cat: developer, provider: clickhouse, svc: clickhouse, cc: US, imp: 3, tier: 4, checks: [http] }
1463 + - { id: db-singlestore-singlestore, name: "SingleStore / Tinybird / Materialize / Firebolt singlestore", host: www.singlestore.com, cat: developer, provider: singlestore, svc: singlestore, cc: US, imp: 2, tier: 4, checks: [http] }
1464 + - { id: db-singlestore-singlestore-status, name: "SingleStore / Tinybird / Materialize / Firebolt singlestore status", host: status.singlestore.com, cat: developer, provider: singlestore, svc: singlestore, cc: US, imp: 2, tier: 4, checks: [http] }
1465 + - { id: db-singlestore-tinybird, name: "SingleStore / Tinybird / Materialize / Firebolt tinybird", host: www.tinybird.co, cat: developer, provider: singlestore, svc: singlestore, cc: US, imp: 2, tier: 4, checks: [http] }
1466 + - { id: db-singlestore-tinybird-status, name: "SingleStore / Tinybird / Materialize / Firebolt tinybird status", host: status.tinybird.co, cat: developer, provider: singlestore, svc: singlestore, cc: US, imp: 2, tier: 4, checks: [http] }
1467 + - { id: db-singlestore-tinybird-api, name: "SingleStore / Tinybird / Materialize / Firebolt tinybird api", host: api.tinybird.co, url: "https://api.tinybird.co/v0/", cat: developer, provider: singlestore, svc: singlestore, cc: US, imp: 2, tier: 4, checks: [http] }
1468 + - { id: db-singlestore-materialize, name: "SingleStore / Tinybird / Materialize / Firebolt materialize", host: materialize.com, cat: developer, provider: singlestore, svc: singlestore, cc: US, imp: 2, tier: 4, checks: [http] }
1469 + - { id: db-singlestore-materialize-status, name: "SingleStore / Tinybird / Materialize / Firebolt materialize status", host: status.materialize.com, cat: developer, provider: singlestore, svc: singlestore, cc: US, imp: 2, tier: 4, checks: [http] }
1470 + - { id: db-singlestore-firebolt, name: "SingleStore / Tinybird / Materialize / Firebolt firebolt", host: www.firebolt.io, cat: developer, provider: singlestore, svc: singlestore, cc: US, imp: 2, tier: 4, checks: [http] }
1471 + - { id: db-singlestore-firebolt-status, name: "SingleStore / Tinybird / Materialize / Firebolt firebolt status", host: status.firebolt.io, cat: developer, provider: singlestore, svc: singlestore, cc: US, imp: 2, tier: 4, checks: [http] }
1472 + - { id: db-singlestore-dremio, name: "SingleStore / Tinybird / Materialize / Firebolt dremio", host: www.dremio.com, cat: developer, provider: singlestore, svc: singlestore, cc: US, imp: 2, tier: 4, checks: [http] }
1473 + - { id: db-singlestore-starburst, name: "SingleStore / Tinybird / Materialize / Firebolt starburst", host: www.starburst.io, cat: developer, provider: singlestore, svc: singlestore, cc: US, imp: 2, tier: 4, checks: [http] }
1474 + - { id: db-influxdata-influx, name: "InfluxData / QuestDB / TimescaleDB influx", host: www.influxdata.com, cat: developer, provider: influxdata, svc: influxdata, cc: US, imp: 2, tier: 4, checks: [http] }
1475 + - { id: db-influxdata-influx-status, name: "InfluxData / QuestDB / TimescaleDB influx status", host: status.influxdata.com, cat: developer, provider: influxdata, svc: influxdata, cc: US, imp: 2, tier: 4, checks: [http] }
1476 + - { id: db-influxdata-influx-docs, name: "InfluxData / QuestDB / TimescaleDB influx docs", host: docs.influxdata.com, cat: developer, provider: influxdata, svc: influxdata, cc: US, imp: 2, tier: 4, checks: [http] }
1477 + - { id: db-influxdata-influx-repos, name: "InfluxData / QuestDB / TimescaleDB influx repos", host: repos.influxdata.com, cat: developer, provider: influxdata, svc: influxdata, cc: US, imp: 2, tier: 4, checks: [http] }
1478 + - { id: db-influxdata-influx-cloud, name: "InfluxData / QuestDB / TimescaleDB influx cloud", host: cloud2.influxdata.com, cat: developer, provider: influxdata, svc: influxdata, cc: US, imp: 2, tier: 4, checks: [http] }
1479 + - { id: db-influxdata-questdb, name: "InfluxData / QuestDB / TimescaleDB questdb", host: questdb.io, cat: developer, provider: influxdata, svc: influxdata, cc: US, imp: 2, tier: 4, checks: [http] }
1480 + - { id: db-influxdata-questdb-status, name: "InfluxData / QuestDB / TimescaleDB questdb status", host: status.questdb.com, cat: developer, provider: influxdata, svc: influxdata, cc: US, imp: 2, tier: 4, checks: [http] }
1481 + - { id: db-cassandra-cassandra, name: "Cassandra / DataStax / ScyllaDB / Couchbase cassandra", host: cassandra.apache.org, cat: developer, provider: datastax, cc: US, imp: 2, tier: 4, checks: [http] }
1482 + - { id: db-cassandra-datastax, name: "Cassandra / DataStax / ScyllaDB / Couchbase datastax", host: www.datastax.com, cat: developer, provider: datastax, cc: US, imp: 2, tier: 4, checks: [http] }
1483 + - { id: db-cassandra-datastax-status, name: "Cassandra / DataStax / ScyllaDB / Couchbase datastax status", host: status.datastax.com, cat: developer, provider: datastax, cc: US, imp: 2, tier: 4, checks: [http] }
1484 + - { id: db-cassandra-astra, name: "Cassandra / DataStax / ScyllaDB / Couchbase astra", host: astra.datastax.com, cat: developer, provider: datastax, cc: US, imp: 2, tier: 4, checks: [http] }
1485 + - { id: db-cassandra-scylla, name: "Cassandra / DataStax / ScyllaDB / Couchbase scylla", host: www.scylladb.com, cat: developer, provider: datastax, cc: US, imp: 2, tier: 4, checks: [http] }
1486 + - { id: db-cassandra-scylla-cloud, name: "Cassandra / DataStax / ScyllaDB / Couchbase scylla cloud", host: cloud.scylladb.com, cat: developer, provider: datastax, cc: US, imp: 2, tier: 4, checks: [http] }
1487 + - { id: db-cassandra-couchbase, name: "Cassandra / DataStax / ScyllaDB / Couchbase couchbase", host: www.couchbase.com, cat: developer, provider: datastax, cc: US, imp: 2, tier: 4, checks: [http] }
1488 + - { id: db-cassandra-couchbase-status, name: "Cassandra / DataStax / ScyllaDB / Couchbase couchbase status", host: status.couchbase.com, cat: developer, provider: datastax, cc: US, imp: 2, tier: 4, checks: [http] }
1489 + - { id: db-cassandra-couchbase-docs, name: "Cassandra / DataStax / ScyllaDB / Couchbase couchbase docs", host: docs.couchbase.com, cat: developer, provider: datastax, cc: US, imp: 2, tier: 4, checks: [http] }
1490 + - { id: db-cassandra-couchbase-packages, name: "Cassandra / DataStax / ScyllaDB / Couchbase couchbase packages", host: packages.couchbase.com, cat: developer, provider: datastax, cc: US, imp: 2, tier: 4, checks: [http] }
1491 + - { id: db-neo4j-neo4j, name: "Graph databases neo4j", host: neo4j.com, cat: developer, provider: neo4j, svc: neo4j, cc: SE, imp: 2, tier: 4, checks: [http] }
1492 + - { id: db-neo4j-neo4j-status, name: "Graph databases neo4j status", host: status.neo4j.io, cat: developer, provider: neo4j, svc: neo4j, cc: SE, imp: 2, tier: 4, checks: [http] }
1493 + - { id: db-neo4j-neo4j-console, name: "Graph databases neo4j console", host: console.neo4j.io, cat: developer, provider: neo4j, svc: neo4j, cc: SE, imp: 2, tier: 4, checks: [http] }
1494 + - { id: db-neo4j-neo4j-dist, name: "Graph databases neo4j dist", host: dist.neo4j.org, cat: developer, provider: neo4j, svc: neo4j, cc: SE, imp: 2, tier: 4, checks: [http] }
1495 + - { id: db-neo4j-arangodb, name: "Graph databases arangodb", host: arangodb.com, cat: developer, provider: neo4j, svc: neo4j, cc: SE, imp: 2, tier: 4, checks: [http] }
1496 + - { id: db-neo4j-dgraph, name: "Graph databases dgraph", host: dgraph.io, cat: developer, provider: neo4j, svc: neo4j, cc: SE, imp: 2, tier: 4, checks: [http] }
1497 + - { id: db-neo4j-tigergraph, name: "Graph databases tigergraph", host: www.tigergraph.com, cat: developer, provider: neo4j, svc: neo4j, cc: SE, imp: 2, tier: 4, checks: [http] }
1498 + - { id: db-neo4j-memgraph, name: "Graph databases memgraph", host: memgraph.com, cat: developer, provider: neo4j, svc: neo4j, cc: SE, imp: 2, tier: 4, checks: [http] }
1499 + - { id: db-neo4j-surrealdb, name: "Graph databases surrealdb", host: surrealdb.com, cat: developer, provider: neo4j, svc: neo4j, cc: SE, imp: 2, tier: 4, checks: [http] }
1500 + - { id: db-neo4j-surrealdb-status, name: "Graph databases surrealdb status", host: status.surrealdb.com, cat: developer, provider: neo4j, svc: neo4j, cc: SE, imp: 2, tier: 4, checks: [http] }
1501 + - { id: db-elastic-search-vendors-meilisearch, name: "Search-as-a-service meilisearch", host: www.meilisearch.com, cat: developer, provider: meilisearch, cc: null, imp: 3, tier: 4, checks: [http] }
1502 + - { id: db-elastic-search-vendors-meilisearch-status, name: "Search-as-a-service meilisearch status", host: status.meilisearch.com, cat: developer, provider: meilisearch, cc: null, imp: 3, tier: 4, checks: [http] }
1503 + - { id: db-elastic-search-vendors-meilisearch-cloud, name: "Search-as-a-service meilisearch cloud", host: cloud.meilisearch.com, cat: developer, provider: meilisearch, cc: null, imp: 3, tier: 4, checks: [http] }
1504 + - { id: db-elastic-search-vendors-typesense, name: "Search-as-a-service typesense", host: typesense.org, cat: developer, provider: meilisearch, cc: null, imp: 3, tier: 4, checks: [http] }
1505 + - { id: db-elastic-search-vendors-typesense-cloud, name: "Search-as-a-service typesense cloud", host: cloud.typesense.org, cat: developer, provider: meilisearch, cc: null, imp: 3, tier: 4, checks: [http] }
1506 + - { id: db-elastic-search-vendors-typesense-dl, name: "Search-as-a-service typesense dl", host: dl.typesense.org, cat: developer, provider: meilisearch, cc: null, imp: 3, tier: 4, checks: [http] }
1507 + - { id: db-elastic-search-vendors-coveo, name: "Search-as-a-service coveo", host: www.coveo.com, cat: developer, provider: meilisearch, cc: null, imp: 3, tier: 4, checks: [http] }
1508 + - { id: db-elastic-search-vendors-coveo-status, name: "Search-as-a-service coveo status", host: status.coveo.com, cat: developer, provider: meilisearch, cc: null, imp: 3, tier: 4, checks: [http] }
1509 + - { id: db-elastic-search-vendors-constructor, name: "Search-as-a-service constructor", host: constructor.com, cat: developer, provider: meilisearch, cc: null, imp: 3, tier: 4, checks: [http] }
1510 + - { id: db-elastic-search-vendors-bloomreach, name: "Search-as-a-service bloomreach", host: www.bloomreach.com, cat: developer, provider: meilisearch, cc: null, imp: 3, tier: 4, checks: [http] }
1511 + - { id: db-elastic-search-vendors-bloomreach-status, name: "Search-as-a-service bloomreach status", host: status.bloomreach.com, cat: developer, provider: meilisearch, cc: null, imp: 3, tier: 4, checks: [http] }
1512 + - { id: db-elastic-search-vendors-searchstax, name: "Search-as-a-service searchstax", host: www.searchstax.com, cat: developer, provider: meilisearch, cc: null, imp: 3, tier: 4, checks: [http] }
1513 + - { id: db-elastic-search-vendors-bonsai, name: "Search-as-a-service bonsai", host: bonsai.io, cat: developer, provider: meilisearch, cc: null, imp: 3, tier: 4, checks: [http] }
1514 + - { id: db-vector-dbs-pinecone, name: "Vector databases pinecone", host: www.pinecone.io, cat: developer, provider: pinecone, svc: pinecone, cc: null, imp: 3, tier: 4, checks: [http] }
1515 + - { id: db-vector-dbs-pinecone-status, name: "Vector databases pinecone status", host: status.pinecone.io, cat: developer, provider: pinecone, svc: pinecone, cc: null, imp: 3, tier: 4, checks: [http] }
1516 + - { id: db-vector-dbs-pinecone-docs, name: "Vector databases pinecone docs", host: docs.pinecone.io, cat: developer, provider: pinecone, svc: pinecone, cc: null, imp: 3, tier: 4, checks: [http] }
1517 + - { id: db-vector-dbs-pinecone-app, name: "Vector databases pinecone app", host: app.pinecone.io, cat: developer, provider: pinecone, svc: pinecone, cc: null, imp: 3, tier: 4, checks: [http] }
1518 + - { id: db-vector-dbs-pinecone-api, name: "Vector databases pinecone api", host: api.pinecone.io, url: "https://api.pinecone.io/indexes", cat: developer, provider: pinecone, svc: pinecone, cc: null, imp: 3, tier: 4, checks: [http] }
1519 + - { id: db-vector-dbs-weaviate, name: "Vector databases weaviate", host: weaviate.io, cat: developer, provider: pinecone, svc: pinecone, cc: null, imp: 3, tier: 4, checks: [http] }
1520 + - { id: db-vector-dbs-weaviate-console, name: "Vector databases weaviate console", host: console.weaviate.cloud, cat: developer, provider: pinecone, svc: pinecone, cc: null, imp: 3, tier: 4, checks: [http] }
1521 + - { id: db-vector-dbs-qdrant, name: "Vector databases qdrant", host: qdrant.tech, cat: developer, provider: pinecone, svc: pinecone, cc: null, imp: 3, tier: 4, checks: [http] }
1522 + - { id: db-vector-dbs-qdrant-status, name: "Vector databases qdrant status", host: status.qdrant.io, cat: developer, provider: pinecone, svc: pinecone, cc: null, imp: 3, tier: 4, checks: [http] }
1523 + - { id: db-vector-dbs-qdrant-cloud, name: "Vector databases qdrant cloud", host: cloud.qdrant.io, cat: developer, provider: pinecone, svc: pinecone, cc: null, imp: 3, tier: 4, checks: [http] }
1524 + - { id: db-vector-dbs-qdrant-api, name: "Vector databases qdrant api", host: api.cloud.qdrant.io, url: "https://api.cloud.qdrant.io/", cat: developer, provider: pinecone, svc: pinecone, cc: null, imp: 3, tier: 4, checks: [http] }
1525 + - { id: db-vector-dbs-zilliz, name: "Vector databases zilliz", host: zilliz.com, cat: developer, provider: pinecone, svc: pinecone, cc: null, imp: 3, tier: 4, checks: [http] }
1526 + - { id: db-vector-dbs-zilliz-status, name: "Vector databases zilliz status", host: status.zilliz.com, cat: developer, provider: pinecone, svc: pinecone, cc: null, imp: 3, tier: 4, checks: [http] }
1527 + - { id: db-vector-dbs-zilliz-cloud, name: "Vector databases zilliz cloud", host: cloud.zilliz.com, cat: developer, provider: pinecone, svc: pinecone, cc: null, imp: 3, tier: 4, checks: [http] }
1528 + - { id: db-vector-dbs-milvus, name: "Vector databases milvus", host: milvus.io, cat: developer, provider: pinecone, svc: pinecone, cc: null, imp: 3, tier: 4, checks: [http] }
1529 + - { id: db-vector-dbs-chroma, name: "Vector databases chroma", host: www.trychroma.com, cat: developer, provider: pinecone, svc: pinecone, cc: null, imp: 3, tier: 4, checks: [http] }
1530 + - { id: db-vector-dbs-chroma-docs, name: "Vector databases chroma docs", host: docs.trychroma.com, cat: developer, provider: pinecone, svc: pinecone, cc: null, imp: 3, tier: 4, checks: [http] }
1531 + - { id: db-vector-dbs-chroma-api, name: "Vector databases chroma api", host: api.trychroma.com, url: "https://api.trychroma.com/api/v2/heartbeat", cat: developer, provider: pinecone, svc: pinecone, cc: null, imp: 3, tier: 4, checks: [http] }
1532 + - { id: db-vector-dbs-lancedb, name: "Vector databases lancedb", host: lancedb.com, cat: developer, provider: pinecone, svc: pinecone, cc: null, imp: 3, tier: 4, checks: [http] }
1533 + - { id: db-vector-dbs-marqo, name: "Vector databases marqo", host: www.marqo.ai, cat: developer, provider: pinecone, svc: pinecone, cc: null, imp: 3, tier: 4, checks: [http] }
1534 + - { id: db-vector-dbs-vespa, name: "Vector databases vespa", host: vespa.ai, cat: developer, provider: pinecone, svc: pinecone, cc: null, imp: 3, tier: 4, checks: [http] }
1535 + - { id: db-vector-dbs-vespa-status, name: "Vector databases vespa status", host: status.vespa.ai, cat: developer, provider: pinecone, svc: pinecone, cc: null, imp: 3, tier: 4, checks: [http] }
1536 + - { id: db-vector-dbs-turbopuffer, name: "Vector databases turbopuffer", host: turbopuffer.com, cat: developer, provider: pinecone, svc: pinecone, cc: null, imp: 3, tier: 4, checks: [http] }
1537 + - { id: db-vector-dbs-turbopuffer-status, name: "Vector databases turbopuffer status", host: status.turbopuffer.com, cat: developer, provider: pinecone, svc: pinecone, cc: null, imp: 3, tier: 4, checks: [http] }
1538 + - { id: db-kafka-vendors-confluent-status, name: "Streaming & messaging platforms confluent status", host: status.confluent.cloud, cat: developer, provider: confluent, svc: confluent, cc: null, imp: 3, tier: 4, checks: [http] }
1539 + - { id: db-kafka-vendors-confluent-docs, name: "Streaming & messaging platforms confluent docs", host: docs.confluent.io, cat: developer, provider: confluent, svc: confluent, cc: null, imp: 3, tier: 4, checks: [http] }
1540 + - { id: db-kafka-vendors-confluent-packages, name: "Streaming & messaging platforms confluent packages", host: packages.confluent.io, cat: developer, provider: confluent, svc: confluent, cc: null, imp: 3, tier: 4, checks: [http] }
1541 + - { id: db-kafka-vendors-confluent-hub, name: "Streaming & messaging platforms confluent hub", host: www.confluent.io, url: "https://www.confluent.io/hub/", cat: developer, provider: confluent, svc: confluent, cc: null, imp: 3, tier: 4, checks: [http] }
1542 + - { id: db-kafka-vendors-confluent-api, name: "Streaming & messaging platforms confluent api", host: api.confluent.cloud, url: "https://api.confluent.cloud/", cat: developer, provider: confluent, svc: confluent, cc: null, imp: 3, tier: 4, checks: [http] }
1543 + - { id: db-kafka-vendors-kafka, name: "Streaming & messaging platforms kafka", host: kafka.apache.org, cat: developer, provider: confluent, svc: confluent, cc: null, imp: 3, tier: 4, checks: [http] }
1544 + - { id: db-kafka-vendors-redpanda, name: "Streaming & messaging platforms redpanda", host: www.redpanda.com, cat: developer, provider: confluent, svc: confluent, cc: null, imp: 3, tier: 4, checks: [http] }
1545 + - { id: db-kafka-vendors-redpanda-status, name: "Streaming & messaging platforms redpanda status", host: status.redpanda.com, cat: developer, provider: confluent, svc: confluent, cc: null, imp: 3, tier: 4, checks: [http] }
1546 + - { id: db-kafka-vendors-redpanda-docs, name: "Streaming & messaging platforms redpanda docs", host: docs.redpanda.com, cat: developer, provider: confluent, svc: confluent, cc: null, imp: 3, tier: 4, checks: [http] }
1547 + - { id: db-kafka-vendors-rabbitmq, name: "Streaming & messaging platforms rabbitmq", host: www.rabbitmq.com, cat: developer, provider: confluent, svc: confluent, cc: null, imp: 3, tier: 4, checks: [http] }
1548 + - { id: db-kafka-vendors-cloudamqp, name: "Streaming & messaging platforms cloudamqp", host: www.cloudamqp.com, cat: developer, provider: confluent, svc: confluent, cc: null, imp: 3, tier: 4, checks: [http] }
1549 + - { id: db-kafka-vendors-cloudamqp-status, name: "Streaming & messaging platforms cloudamqp status", host: status.cloudamqp.com, cat: developer, provider: confluent, svc: confluent, cc: null, imp: 3, tier: 4, checks: [http] }
1550 + - { id: db-kafka-vendors-nats, name: "Streaming & messaging platforms nats", host: nats.io, cat: developer, provider: confluent, svc: confluent, cc: null, imp: 3, tier: 4, checks: [http] }
1551 + - { id: db-kafka-vendors-synadia, name: "Streaming & messaging platforms synadia", host: www.synadia.com, cat: developer, provider: confluent, svc: confluent, cc: null, imp: 3, tier: 4, checks: [http] }
1552 + - { id: db-kafka-vendors-pulsar, name: "Streaming & messaging platforms pulsar", host: pulsar.apache.org, cat: developer, provider: confluent, svc: confluent, cc: null, imp: 3, tier: 4, checks: [http] }
1553 + - { id: db-kafka-vendors-streamnative, name: "Streaming & messaging platforms streamnative", host: streamnative.io, cat: developer, provider: confluent, svc: confluent, cc: null, imp: 3, tier: 4, checks: [http] }
1554 + - { id: db-kafka-vendors-warpstream, name: "Streaming & messaging platforms warpstream", host: www.warpstream.com, cat: developer, provider: confluent, svc: confluent, cc: null, imp: 3, tier: 4, checks: [http] }
1555 + - { id: db-snowflake-hosts-snowflake-status, name: "Data cloud platforms snowflake status", host: status.snowflake.com, cat: developer, provider: snowflake, svc: snowflake, cc: US, imp: 4, tier: 3, checks: [http] }
1556 + - { id: db-snowflake-hosts-snowflake-docs, name: "Data cloud platforms snowflake docs", host: docs.snowflake.com, cat: developer, provider: snowflake, svc: snowflake, cc: US, imp: 4, tier: 3, checks: [http] }
1557 + - { id: db-snowflake-hosts-snowflake-community, name: "Data cloud platforms snowflake community", host: community.snowflake.com, cat: developer, provider: snowflake, svc: snowflake, cc: US, imp: 4, tier: 3, checks: [http] }
1558 + - { id: db-snowflake-hosts-snowflake-app, name: "Data cloud platforms snowflake app", host: app.snowflake.com, cat: developer, provider: snowflake, svc: snowflake, cc: US, imp: 4, tier: 3, checks: [http] }
1559 + - { id: db-snowflake-hosts-snowflake-repo, name: "Data cloud platforms snowflake repo", host: repo.anaconda.com, url: "https://repo.anaconda.com/pkgs/snowflake/", cat: developer, provider: snowflake, svc: snowflake, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1560 + - { id: db-snowflake-hosts-databricks-status, name: "Data cloud platforms databricks status", host: status.databricks.com, cat: developer, provider: snowflake, svc: snowflake, cc: US, imp: 4, tier: 3, checks: [http] }
1561 + - { id: db-snowflake-hosts-databricks-docs, name: "Data cloud platforms databricks docs", host: docs.databricks.com, cat: developer, provider: snowflake, svc: snowflake, cc: US, imp: 4, tier: 3, checks: [http] }
1562 + - { id: db-snowflake-hosts-databricks-community, name: "Data cloud platforms databricks community", host: community.databricks.com, cat: developer, provider: snowflake, svc: snowflake, cc: US, imp: 4, tier: 3, checks: [http] }
1563 + - { id: db-snowflake-hosts-databricks-accounts, name: "Data cloud platforms databricks accounts", host: accounts.cloud.databricks.com, cat: developer, provider: snowflake, svc: snowflake, cc: US, imp: 4, tier: 3, checks: [http] }
1564 + - { id: db-snowflake-hosts-databricks-help, name: "Data cloud platforms databricks help", host: help.databricks.com, cat: developer, provider: snowflake, svc: snowflake, cc: US, imp: 4, tier: 3, checks: [http] }
1565 + - { id: db-snowflake-hosts-dbt, name: "Data cloud platforms dbt", host: www.getdbt.com, cat: developer, provider: snowflake, svc: snowflake, cc: US, imp: 4, tier: 3, checks: [http] }
1566 + - { id: db-snowflake-hosts-dbt-status, name: "Data cloud platforms dbt status", host: status.getdbt.com, cat: developer, provider: snowflake, svc: snowflake, cc: US, imp: 4, tier: 3, checks: [http] }
1567 + - { id: db-snowflake-hosts-dbt-docs, name: "Data cloud platforms dbt docs", host: docs.getdbt.com, cat: developer, provider: snowflake, svc: snowflake, cc: US, imp: 4, tier: 3, checks: [http] }
1568 + - { id: db-snowflake-hosts-dbt-hub, name: "Data cloud platforms dbt hub", host: hub.getdbt.com, cat: developer, provider: snowflake, svc: snowflake, cc: US, imp: 4, tier: 3, checks: [http] }
1569 + - { id: db-snowflake-hosts-dbt-cloud, name: "Data cloud platforms dbt cloud", host: cloud.getdbt.com, cat: developer, provider: snowflake, svc: snowflake, cc: US, imp: 4, tier: 3, checks: [http] }
1570 + - { id: db-snowflake-hosts-fivetran, name: "Data cloud platforms fivetran", host: www.fivetran.com, cat: developer, provider: snowflake, svc: snowflake, cc: US, imp: 4, tier: 3, checks: [http] }
1571 + - { id: db-snowflake-hosts-fivetran-status, name: "Data cloud platforms fivetran status", host: status.fivetran.com, cat: developer, provider: snowflake, svc: snowflake, cc: US, imp: 4, tier: 3, checks: [http] }
1572 + - { id: db-snowflake-hosts-fivetran-docs, name: "Data cloud platforms fivetran docs", host: fivetran.com, url: "https://fivetran.com/docs", cat: developer, provider: snowflake, svc: snowflake, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1573 + - { id: db-snowflake-hosts-airbyte, name: "Data cloud platforms airbyte", host: airbyte.com, cat: developer, provider: snowflake, svc: snowflake, cc: US, imp: 4, tier: 3, checks: [http] }
1574 + - { id: db-snowflake-hosts-airbyte-status, name: "Data cloud platforms airbyte status", host: status.airbyte.com, cat: developer, provider: snowflake, svc: snowflake, cc: US, imp: 4, tier: 3, checks: [http] }
1575 + - { id: db-snowflake-hosts-airbyte-docs, name: "Data cloud platforms airbyte docs", host: docs.airbyte.com, cat: developer, provider: snowflake, svc: snowflake, cc: US, imp: 4, tier: 3, checks: [http] }
1576 + - { id: db-snowflake-hosts-airbyte-cloud, name: "Data cloud platforms airbyte cloud", host: cloud.airbyte.com, cat: developer, provider: snowflake, svc: snowflake, cc: US, imp: 4, tier: 3, checks: [http] }
1577 + - { id: db-etl-vendors-census, name: "ETL / reverse ETL / CDP census", host: www.getcensus.com, cat: developer, provider: census, svc: census, cc: US, imp: 2, tier: 4, checks: [http] }
1578 + - { id: db-etl-vendors-census-status, name: "ETL / reverse ETL / CDP census status", host: status.getcensus.com, cat: developer, provider: census, svc: census, cc: US, imp: 2, tier: 4, checks: [http] }
1579 + - { id: db-etl-vendors-hightouch, name: "ETL / reverse ETL / CDP hightouch", host: hightouch.com, cat: developer, provider: census, svc: census, cc: US, imp: 2, tier: 4, checks: [http] }
1580 + - { id: db-etl-vendors-rudderstack, name: "ETL / reverse ETL / CDP rudderstack", host: www.rudderstack.com, cat: developer, provider: census, svc: census, cc: US, imp: 2, tier: 4, checks: [http] }
1581 + - { id: db-etl-vendors-rudderstack-status, name: "ETL / reverse ETL / CDP rudderstack status", host: status.rudderstack.com, cat: developer, provider: census, svc: census, cc: US, imp: 2, tier: 4, checks: [http] }
1582 + - { id: db-etl-vendors-mparticle, name: "ETL / reverse ETL / CDP mparticle", host: www.mparticle.com, cat: developer, provider: census, svc: census, cc: US, imp: 2, tier: 4, checks: [http] }
1583 + - { id: db-etl-vendors-mparticle-status, name: "ETL / reverse ETL / CDP mparticle status", host: status.mparticle.com, cat: developer, provider: census, svc: census, cc: US, imp: 2, tier: 4, checks: [http] }
1584 + - { id: db-etl-vendors-tealium, name: "ETL / reverse ETL / CDP tealium", host: tealium.com, cat: developer, provider: census, svc: census, cc: US, imp: 2, tier: 4, checks: [http] }
1585 + - { id: db-etl-vendors-tealium-status, name: "ETL / reverse ETL / CDP tealium status", host: status.tealium.com, cat: developer, provider: census, svc: census, cc: US, imp: 2, tier: 4, checks: [http] }
1586 + - { id: db-etl-vendors-snowplow, name: "ETL / reverse ETL / CDP snowplow", host: snowplow.io, cat: developer, provider: census, svc: census, cc: US, imp: 2, tier: 4, checks: [http] }
1587 + - { id: db-etl-vendors-stitch, name: "ETL / reverse ETL / CDP stitch", host: www.stitchdata.com, cat: developer, provider: census, svc: census, cc: US, imp: 2, tier: 4, checks: [http] }
1588 + - { id: db-etl-vendors-stitch-status, name: "ETL / reverse ETL / CDP stitch status", host: status.stitchdata.com, cat: developer, provider: census, svc: census, cc: US, imp: 2, tier: 4, checks: [http] }
1589 + - { id: db-etl-vendors-matillion, name: "ETL / reverse ETL / CDP matillion", host: www.matillion.com, cat: developer, provider: census, svc: census, cc: US, imp: 2, tier: 4, checks: [http] }
1590 + - { id: db-etl-vendors-matillion-status, name: "ETL / reverse ETL / CDP matillion status", host: status.matillion.com, cat: developer, provider: census, svc: census, cc: US, imp: 2, tier: 4, checks: [http] }
1591 + - { id: db-etl-vendors-talend, name: "ETL / reverse ETL / CDP talend", host: www.talend.com, cat: developer, provider: census, svc: census, cc: US, imp: 2, tier: 4, checks: [http] }
1592 + - { id: db-etl-vendors-informatica, name: "ETL / reverse ETL / CDP informatica", host: www.informatica.com, cat: developer, provider: census, svc: census, cc: US, imp: 2, tier: 4, checks: [http] }
1593 + - { id: db-etl-vendors-informatica-status, name: "ETL / reverse ETL / CDP informatica status", host: status.informatica.com, cat: developer, provider: census, svc: census, cc: US, imp: 2, tier: 4, checks: [http] }
1594 + - { id: db-etl-vendors-estuary, name: "ETL / reverse ETL / CDP estuary", host: estuary.dev, cat: developer, provider: census, svc: census, cc: US, imp: 2, tier: 4, checks: [http] }
1595 + - { id: db-etl-vendors-meltano, name: "ETL / reverse ETL / CDP meltano", host: meltano.com, cat: developer, provider: census, svc: census, cc: US, imp: 2, tier: 4, checks: [http] }
1596 + - { id: db-etl-vendors-segment-status, name: "ETL / reverse ETL / CDP segment status", host: status.segment.com, cat: developer, provider: census, svc: census, cc: US, imp: 2, tier: 4, checks: [http] }
1597 + - { id: db-etl-vendors-segment-docs, name: "ETL / reverse ETL / CDP segment docs", host: segment.com, url: "https://segment.com/docs/", cat: developer, provider: census, svc: census, cc: US, imp: 2, tier: 4, checks: [http] }
1598 + - { id: db-etl-vendors-segment-api, name: "ETL / reverse ETL / CDP segment api", host: api.segment.io, url: "https://api.segment.io/v1/batch", cat: developer, provider: census, svc: census, cc: US, imp: 2, tier: 4, checks: [http] }
1599 + - { id: db-etl-vendors-segment-cdn, name: "ETL / reverse ETL / CDP segment cdn", host: cdn.segment.com, url: "https://cdn.segment.com/analytics.js/v1/", cat: developer, provider: census, svc: census, cc: US, imp: 2, tier: 4, checks: [http] }
1600 + - { id: db-bi-vendors-metabase, name: "BI & analytics platforms metabase", host: www.metabase.com, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1601 + - { id: db-bi-vendors-metabase-status, name: "BI & analytics platforms metabase status", host: status.metabase.com, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1602 + - { id: db-bi-vendors-mode, name: "BI & analytics platforms mode", host: mode.com, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1603 + - { id: db-bi-vendors-mode-status, name: "BI & analytics platforms mode status", host: status.modeanalytics.com, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1604 + - { id: db-bi-vendors-hex, name: "BI & analytics platforms hex", host: hex.tech, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1605 + - { id: db-bi-vendors-hex-status, name: "BI & analytics platforms hex status", host: status.hex.tech, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1606 + - { id: db-bi-vendors-sigma, name: "BI & analytics platforms sigma", host: www.sigmacomputing.com, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1607 + - { id: db-bi-vendors-sigma-status, name: "BI & analytics platforms sigma status", host: status.sigmacomputing.com, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1608 + - { id: db-bi-vendors-thoughtspot, name: "BI & analytics platforms thoughtspot", host: www.thoughtspot.com, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1609 + - { id: db-bi-vendors-domo, name: "BI & analytics platforms domo", host: www.domo.com, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1610 + - { id: db-bi-vendors-domo-status, name: "BI & analytics platforms domo status", host: status.domo.com, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1611 + - { id: db-bi-vendors-qlik, name: "BI & analytics platforms qlik", host: www.qlik.com, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1612 + - { id: db-bi-vendors-qlik-status, name: "BI & analytics platforms qlik status", host: status.qlikcloud.com, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1613 + - { id: db-bi-vendors-tableau, name: "BI & analytics platforms tableau", host: www.tableau.com, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1614 + - { id: db-bi-vendors-tableau-status, name: "BI & analytics platforms tableau status", host: trust.tableau.com, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1615 + - { id: db-bi-vendors-tableau-public, name: "BI & analytics platforms tableau public", host: public.tableau.com, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1616 + - { id: db-bi-vendors-powerbi, name: "BI & analytics platforms powerbi", host: www.microsoft.com, url: "https://www.microsoft.com/en-us/power-platform/products/power-bi", cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1617 + - { id: db-bi-vendors-powerbi-app, name: "BI & analytics platforms powerbi app", host: app.powerbi.com, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1618 + - { id: db-bi-vendors-superset, name: "BI & analytics platforms superset", host: superset.apache.org, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1619 + - { id: db-bi-vendors-preset, name: "BI & analytics platforms preset", host: preset.io, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1620 + - { id: db-bi-vendors-preset-status, name: "BI & analytics platforms preset status", host: status.preset.io, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1621 + - { id: db-bi-vendors-redash, name: "BI & analytics platforms redash", host: redash.io, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1622 + - { id: db-bi-vendors-lightdash, name: "BI & analytics platforms lightdash", host: www.lightdash.com, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1623 + - { id: db-bi-vendors-evidence, name: "BI & analytics platforms evidence", host: evidence.dev, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1624 + - { id: db-bi-vendors-observable, name: "BI & analytics platforms observable", host: observablehq.com, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1625 + - { id: db-bi-vendors-observable-status, name: "BI & analytics platforms observable status", host: status.observablehq.com, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1626 + - { id: db-bi-vendors-count, name: "BI & analytics platforms count", host: count.co, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1627 + - { id: db-bi-vendors-omni, name: "BI & analytics platforms omni", host: omni.co, cat: developer, provider: metabase, svc: metabase, cc: US, imp: 2, tier: 4, checks: [http] }
1628 + - { id: db-orchestration-airflow, name: "Data orchestration airflow", host: airflow.apache.org, cat: developer, provider: astronomer, svc: astronomer, cc: US, imp: 2, tier: 4, checks: [http] }
1629 + - { id: db-orchestration-astronomer, name: "Data orchestration astronomer", host: www.astronomer.io, cat: developer, provider: astronomer, svc: astronomer, cc: US, imp: 2, tier: 4, checks: [http] }
1630 + - { id: db-orchestration-astronomer-status, name: "Data orchestration astronomer status", host: status.astronomer.io, cat: developer, provider: astronomer, svc: astronomer, cc: US, imp: 2, tier: 4, checks: [http] }
1631 + - { id: db-orchestration-prefect, name: "Data orchestration prefect", host: www.prefect.io, cat: developer, provider: astronomer, svc: astronomer, cc: US, imp: 2, tier: 4, checks: [http] }
1632 + - { id: db-orchestration-prefect-status, name: "Data orchestration prefect status", host: status.prefect.io, cat: developer, provider: astronomer, svc: astronomer, cc: US, imp: 2, tier: 4, checks: [http] }
1633 + - { id: db-orchestration-prefect-docs, name: "Data orchestration prefect docs", host: docs.prefect.io, cat: developer, provider: astronomer, svc: astronomer, cc: US, imp: 2, tier: 4, checks: [http] }
1634 + - { id: db-orchestration-prefect-api, name: "Data orchestration prefect api", host: api.prefect.cloud, url: "https://api.prefect.cloud/api/health", cat: developer, provider: astronomer, svc: astronomer, cc: US, imp: 2, tier: 4, checks: [http] }
1635 + - { id: db-orchestration-dagster, name: "Data orchestration dagster", host: dagster.io, cat: developer, provider: astronomer, svc: astronomer, cc: US, imp: 2, tier: 4, checks: [http] }
1636 + - { id: db-orchestration-dagster-status, name: "Data orchestration dagster status", host: status.dagster.cloud, cat: developer, provider: astronomer, svc: astronomer, cc: US, imp: 2, tier: 4, checks: [http] }
1637 + - { id: db-orchestration-dagster-docs, name: "Data orchestration dagster docs", host: docs.dagster.io, cat: developer, provider: astronomer, svc: astronomer, cc: US, imp: 2, tier: 4, checks: [http] }
1638 + - { id: db-orchestration-mage, name: "Data orchestration mage", host: www.mage.ai, cat: developer, provider: astronomer, svc: astronomer, cc: US, imp: 2, tier: 4, checks: [http] }
1639 + - { id: db-orchestration-kestra, name: "Data orchestration kestra", host: kestra.io, cat: developer, provider: astronomer, svc: astronomer, cc: US, imp: 2, tier: 4, checks: [http] }
1640 + - { id: db-orchestration-flyte, name: "Data orchestration flyte", host: flyte.org, cat: developer, provider: astronomer, svc: astronomer, cc: US, imp: 2, tier: 4, checks: [http] }
1641 + - { id: db-hadoop-cloudera-cloudera, name: "Big data platforms cloudera", host: www.cloudera.com, cat: developer, provider: apache, svc: maven, cc: US, imp: 2, tier: 4, checks: [http] }
1642 + - { id: db-hadoop-cloudera-cloudera-docs, name: "Big data platforms cloudera docs", host: docs.cloudera.com, cat: developer, provider: apache, svc: maven, cc: US, imp: 2, tier: 4, checks: [http] }
1643 + - { id: db-hadoop-cloudera-spark, name: "Big data platforms spark", host: spark.apache.org, cat: developer, provider: apache, svc: maven, cc: US, imp: 2, tier: 4, checks: [http] }
1644 + - { id: db-hadoop-cloudera-flink, name: "Big data platforms flink", host: flink.apache.org, cat: developer, provider: apache, svc: maven, cc: US, imp: 2, tier: 4, checks: [http] }
1645 + - { id: db-hadoop-cloudera-hadoop, name: "Big data platforms hadoop", host: hadoop.apache.org, cat: developer, provider: apache, svc: maven, cc: US, imp: 2, tier: 4, checks: [http] }
1646 + - { id: db-hadoop-cloudera-iceberg, name: "Big data platforms iceberg", host: iceberg.apache.org, cat: developer, provider: apache, svc: maven, cc: US, imp: 2, tier: 4, checks: [http] }
1647 + - { id: db-hadoop-cloudera-delta, name: "Big data platforms delta", host: delta.io, cat: developer, provider: apache, svc: maven, cc: US, imp: 2, tier: 4, checks: [http] }
1648 + - { id: db-hadoop-cloudera-hudi, name: "Big data platforms hudi", host: hudi.apache.org, cat: developer, provider: apache, svc: maven, cc: US, imp: 2, tier: 4, checks: [http] }
1649 + - { id: db-hadoop-cloudera-trino, name: "Big data platforms trino", host: trino.io, cat: developer, provider: apache, svc: maven, cc: US, imp: 2, tier: 4, checks: [http] }
1650 + - { id: db-hadoop-cloudera-presto, name: "Big data platforms presto", host: prestodb.io, cat: developer, provider: apache, svc: maven, cc: US, imp: 2, tier: 4, checks: [http] }
1651 + - { id: db-hadoop-cloudera-druid, name: "Big data platforms druid", host: druid.apache.org, cat: developer, provider: apache, svc: maven, cc: US, imp: 2, tier: 4, checks: [http] }
1652 + - { id: db-hadoop-cloudera-pinot, name: "Big data platforms pinot", host: pinot.apache.org, cat: developer, provider: apache, svc: maven, cc: US, imp: 2, tier: 4, checks: [http] }
1653 + - { id: db-auth-baas-parse, name: "Auth & BaaS extras parse", host: parseplatform.org, cat: developer, provider: parse, cc: null, imp: 2, tier: 4, checks: [http] }
1654 + - { id: db-auth-baas-back4app, name: "Auth & BaaS extras back4app", host: www.back4app.com, cat: developer, provider: parse, cc: null, imp: 2, tier: 4, checks: [http] }
1655 + - { id: db-auth-baas-back4app-api, name: "Auth & BaaS extras back4app api", host: parseapi.back4app.com, url: "https://parseapi.back4app.com/health", cat: developer, provider: parse, cc: null, imp: 2, tier: 4, checks: [http] }
1656 + - { id: db-auth-baas-kinvey, name: "Auth & BaaS extras kinvey", host: www.progress.com, url: "https://www.progress.com/kinvey", cat: developer, provider: parse, cc: null, imp: 2, tier: 4, checks: [http] }
1657 + - { id: db-auth-baas-backendless, name: "Auth & BaaS extras backendless", host: backendless.com, cat: developer, provider: parse, cc: null, imp: 2, tier: 4, checks: [http] }
1658 + - { id: db-auth-baas-8base, name: "Auth & BaaS extras 8base", host: www.8base.com, cat: developer, provider: parse, cc: null, imp: 2, tier: 4, checks: [http] }
1659 + - { id: db-auth-baas-pubnub-status, name: "Auth & BaaS extras pubnub status", host: status.pubnub.com, cat: developer, provider: parse, cc: null, imp: 2, tier: 4, checks: [http] }
1660 + - { id: db-cms-others-wordpress-status, name: "Other CMS / site builders wordpress status", host: wordpress.com, url: "https://wordpress.com/support/", cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1661 + - { id: db-cms-others-wpvip, name: "Other CMS / site builders wpvip", host: wpvip.com, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1662 + - { id: db-cms-others-wpvip-status, name: "Other CMS / site builders wpvip status", host: status.wpvip.com, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1663 + - { id: db-cms-others-jetpack, name: "Other CMS / site builders jetpack", host: jetpack.com, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1664 + - { id: db-cms-others-jetpack-status, name: "Other CMS / site builders jetpack status", host: jetpack.statuspage.io, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1665 + - { id: db-cms-others-gravatar-api, name: "Other CMS / site builders gravatar api", host: www.gravatar.com, url: "https://www.gravatar.com/avatar/00000000000000000000000000000000?d=404", cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1666 + - { id: db-cms-others-wordpress-api, name: "Other CMS / site builders wordpress api", host: api.wordpress.org, url: "https://api.wordpress.org/core/version-check/1.7/", cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1667 + - { id: db-cms-others-drupal, name: "Other CMS / site builders drupal", host: www.drupal.org, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1668 + - { id: db-cms-others-drupal-ftp, name: "Other CMS / site builders drupal ftp", host: ftp.drupal.org, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1669 + - { id: db-cms-others-drupal-updates, name: "Other CMS / site builders drupal updates", host: updates.drupal.org, url: "https://updates.drupal.org/release-history/drupal/current", cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1670 + - { id: db-cms-others-joomla, name: "Other CMS / site builders joomla", host: www.joomla.org, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1671 + - { id: db-cms-others-joomla-downloads, name: "Other CMS / site builders joomla downloads", host: downloads.joomla.org, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1672 + - { id: db-cms-others-joomla-api, name: "Other CMS / site builders joomla api", host: api.joomla.org, url: "https://api.joomla.org/", cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1673 + - { id: db-cms-others-joomla-update, name: "Other CMS / site builders joomla update", host: update.joomla.org, url: "https://update.joomla.org/core/list.xml", cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1674 + - { id: db-cms-others-typo3, name: "Other CMS / site builders typo3", host: typo3.org, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1675 + - { id: db-cms-others-typo3-get, name: "Other CMS / site builders typo3 get", host: get.typo3.org, url: "https://get.typo3.org/json", cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1676 + - { id: db-cms-others-craft, name: "Other CMS / site builders craft", host: craftcms.com, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1677 + - { id: db-cms-others-craft-status, name: "Other CMS / site builders craft status", host: status.craftcms.com, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1678 + - { id: db-cms-others-craft-composer, name: "Other CMS / site builders craft composer", host: composer.craftcms.com, url: "https://composer.craftcms.com/packages.json", cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1679 + - { id: db-cms-others-statamic, name: "Other CMS / site builders statamic", host: statamic.com, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1680 + - { id: db-cms-others-kirby, name: "Other CMS / site builders kirby", host: getkirby.com, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1681 + - { id: db-cms-others-concrete, name: "Other CMS / site builders concrete", host: www.concretecms.com, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1682 + - { id: db-cms-others-umbraco, name: "Other CMS / site builders umbraco", host: umbraco.com, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1683 + - { id: db-cms-others-umbraco-status, name: "Other CMS / site builders umbraco status", host: status.umbraco.io, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1684 + - { id: db-cms-others-sitecore, name: "Other CMS / site builders sitecore", host: www.sitecore.com, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1685 + - { id: db-cms-others-contentstack, name: "Other CMS / site builders contentstack", host: www.contentstack.com, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1686 + - { id: db-cms-others-contentstack-status, name: "Other CMS / site builders contentstack status", host: status.contentstack.com, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1687 + - { id: db-cms-others-kontent, name: "Other CMS / site builders kontent", host: kontent.ai, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1688 + - { id: db-cms-others-kontent-status, name: "Other CMS / site builders kontent status", host: status.kontent.ai, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1689 + - { id: db-cms-others-agility, name: "Other CMS / site builders agility", host: agilitycms.com, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1690 + - { id: db-cms-others-butter, name: "Other CMS / site builders butter", host: buttercms.com, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1691 + - { id: db-cms-others-butter-status, name: "Other CMS / site builders butter status", host: status.buttercms.com, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1692 + - { id: db-cms-others-payload, name: "Other CMS / site builders payload", host: payloadcms.com, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1693 + - { id: db-cms-others-tina, name: "Other CMS / site builders tina", host: tina.io, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1694 + - { id: db-cms-others-keystone, name: "Other CMS / site builders keystone", host: keystonejs.com, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1695 + - { id: db-cms-others-builder, name: "Other CMS / site builders builder", host: www.builder.io, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1696 + - { id: db-cms-others-builder-status, name: "Other CMS / site builders builder status", host: status.builder.io, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1697 + - { id: db-cms-others-plasmic, name: "Other CMS / site builders plasmic", host: www.plasmic.app, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1698 + - { id: db-cms-others-duda, name: "Other CMS / site builders duda", host: www.duda.co, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1699 + - { id: db-cms-others-duda-status, name: "Other CMS / site builders duda status", host: status.duda.co, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1700 + - { id: db-cms-others-weebly-status, name: "Other CMS / site builders weebly status", host: status.weebly.com, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1701 + - { id: db-cms-others-jimdo, name: "Other CMS / site builders jimdo", host: www.jimdo.com, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1702 + - { id: db-cms-others-strikingly, name: "Other CMS / site builders strikingly", host: www.strikingly.com, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1703 + - { id: db-cms-others-ucraft, name: "Other CMS / site builders ucraft", host: www.ucraft.com, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1704 + - { id: db-cms-others-hostinger-builder, name: "Other CMS / site builders hostinger builder", host: www.hostinger.com, url: "https://www.hostinger.com/website-builder", cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1705 + - { id: db-cms-others-tilda, name: "Other CMS / site builders tilda", host: tilda.cc, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1706 + - { id: db-cms-others-readymag, name: "Other CMS / site builders readymag", host: readymag.com, cat: developer, provider: automattic, cc: null, imp: 2, tier: 4, checks: [http] }
1707 + - { id: db-hugo-jamstack-gohugo, name: "Static site generators & Jamstack gohugo", host: gohugo.io, cat: developer, provider: hugo, cc: null, imp: 2, tier: 4, checks: [http] }
1708 + - { id: db-hugo-jamstack-jekyll, name: "Static site generators & Jamstack jekyll", host: jekyllrb.com, cat: developer, provider: hugo, cc: null, imp: 2, tier: 4, checks: [http] }
1709 + - { id: db-hugo-jamstack-gatsby, name: "Static site generators & Jamstack gatsby", host: www.gatsbyjs.com, cat: developer, provider: hugo, cc: null, imp: 2, tier: 4, checks: [http] }
1710 + - { id: db-hugo-jamstack-eleventy, name: "Static site generators & Jamstack eleventy", host: www.11ty.dev, cat: developer, provider: hugo, cc: null, imp: 2, tier: 4, checks: [http] }
1711 + - { id: db-hugo-jamstack-hexo, name: "Static site generators & Jamstack hexo", host: hexo.io, cat: developer, provider: hugo, cc: null, imp: 2, tier: 4, checks: [http] }
1712 + - { id: db-hugo-jamstack-mkdocs, name: "Static site generators & Jamstack mkdocs", host: www.mkdocs.org, cat: developer, provider: hugo, cc: null, imp: 2, tier: 4, checks: [http] }
1713 + - { id: db-hugo-jamstack-mkdocs-material, name: "Static site generators & Jamstack mkdocs material", host: squidfunk.github.io, url: "https://squidfunk.github.io/mkdocs-material/", cat: developer, provider: hugo, cc: null, imp: 2, tier: 4, checks: [http] }
1714 + - { id: db-hugo-jamstack-sphinx, name: "Static site generators & Jamstack sphinx", host: www.sphinx-doc.org, cat: developer, provider: hugo, cc: null, imp: 2, tier: 4, checks: [http] }
1715 + - { id: db-hugo-jamstack-vitepress, name: "Static site generators & Jamstack vitepress", host: vitepress.dev, cat: developer, provider: hugo, cc: null, imp: 2, tier: 4, checks: [http] }
1716 + - { id: db-hugo-jamstack-docsify, name: "Static site generators & Jamstack docsify", host: docsify.js.org, cat: developer, provider: hugo, cc: null, imp: 2, tier: 4, checks: [http] }
1717 + - { id: db-hugo-jamstack-jamstack, name: "Static site generators & Jamstack jamstack", host: jamstack.org, cat: developer, provider: hugo, cc: null, imp: 2, tier: 4, checks: [http] }
1718 + - { id: db-hugo-jamstack-zola, name: "Static site generators & Jamstack zola", host: www.getzola.org, cat: developer, provider: hugo, cc: null, imp: 2, tier: 4, checks: [http] }
1719 + - { id: db-hugo-jamstack-pelican, name: "Static site generators & Jamstack pelican", host: getpelican.com, cat: developer, provider: hugo, cc: null, imp: 2, tier: 4, checks: [http] }
1720 + - { id: db-vscode-alt-ides-vim, name: "IDEs & editors vim", host: www.vim.org, cat: developer, provider: editors, cc: null, imp: 2, tier: 4, checks: [http] }
1721 + - { id: db-vscode-alt-ides-neovim, name: "IDEs & editors neovim", host: neovim.io, cat: developer, provider: editors, cc: null, imp: 2, tier: 4, checks: [http] }
1722 + - { id: db-vscode-alt-ides-sublime, name: "IDEs & editors sublime", host: www.sublimetext.com, cat: developer, provider: editors, cc: null, imp: 2, tier: 4, checks: [http] }
1723 + - { id: db-vscode-alt-ides-zed, name: "IDEs & editors zed", host: zed.dev, cat: developer, provider: editors, cc: null, imp: 2, tier: 4, checks: [http] }
1724 + - { id: db-vscode-alt-ides-zed-status, name: "IDEs & editors zed status", host: status.zed.dev, cat: developer, provider: editors, cc: null, imp: 2, tier: 4, checks: [http] }
1725 + - { id: db-vscode-alt-ides-nova, name: "IDEs & editors nova", host: nova.app, cat: developer, provider: editors, cc: null, imp: 2, tier: 4, checks: [http] }
1726 + - { id: db-vscode-alt-ides-bbedit, name: "IDEs & editors bbedit", host: www.barebones.com, cat: developer, provider: editors, cc: null, imp: 2, tier: 4, checks: [http] }
1727 + - { id: db-vscode-alt-ides-notepadpp, name: "IDEs & editors notepadpp", host: notepad-plus-plus.org, cat: developer, provider: editors, cc: null, imp: 2, tier: 4, checks: [http] }
1728 + - { id: db-vscode-alt-ides-eclipse-che, name: "IDEs & editors eclipse che", host: eclipse.dev, url: "https://eclipse.dev/che/", cat: developer, provider: editors, cc: null, imp: 2, tier: 4, checks: [http] }
1729 + - { id: db-vscode-alt-ides-theia, name: "IDEs & editors theia", host: theia-ide.org, cat: developer, provider: editors, cc: null, imp: 2, tier: 4, checks: [http] }
1730 + - { id: db-vscode-alt-ides-lapce, name: "IDEs & editors lapce", host: lapce.dev, cat: developer, provider: editors, cc: null, imp: 2, tier: 4, checks: [http] }
1731 + - { id: db-vscode-alt-ides-helix, name: "IDEs & editors helix", host: helix-editor.com, cat: developer, provider: editors, cc: null, imp: 2, tier: 4, checks: [http] }
1732 + # ───────── Communication APIs, media/storage APIs, identity, maps & free public APIs (772)
1733 + - { id: api-mailgun-hosts-status, name: "Mailgun hosts status page", host: status.mailgun.com, cat: messaging, provider: mailgun, svc: mailgun, cc: US, imp: 3, tier: 4, checks: [http] }
1734 + - { id: api-mailgun-hosts-docs, name: "Mailgun hosts docs", host: documentation.mailgun.com, cat: messaging, provider: mailgun, svc: mailgun, cc: US, imp: 3, tier: 4, checks: [http] }
1735 + - { id: api-mailgun-hosts-eu, name: "Mailgun hosts eu", host: api.eu.mailgun.net, url: "https://api.eu.mailgun.net/v3/domains", cat: messaging, provider: mailgun, svc: mailgun, cc: US, imp: 3, tier: 4, checks: [http] }
1736 + - { id: api-mailgun-hosts-help, name: "Mailgun hosts help centre", host: help.mailgun.com, cat: messaging, provider: mailgun, svc: mailgun, cc: US, imp: 3, tier: 4, checks: [http] }
1737 + - { id: api-postmark-hosts-status, name: "Postmark hosts status page", host: status.postmarkapp.com, cat: messaging, provider: postmark, cc: US, imp: 3, tier: 4, checks: [http] }
1738 + - { id: api-postmark-hosts-docs, name: "Postmark hosts docs", host: postmarkapp.com, url: "https://postmarkapp.com/developer", cat: messaging, provider: postmark, cc: US, imp: 3, tier: 4, checks: [http] }
1739 + - { id: api-mailchimp-status, name: "Mailchimp / Mandrill status page", host: status.mailchimp.com, cat: messaging, provider: intuit, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1740 + - { id: api-mailchimp-api, name: "Mailchimp / Mandrill API", host: us1.api.mailchimp.com, url: "https://us1.api.mailchimp.com/3.0/ping", cat: messaging, provider: intuit, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1741 + - { id: api-mailchimp-mandrill, name: "Mailchimp / Mandrill mandrill", host: mandrillapp.com, cat: messaging, provider: intuit, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1742 + - { id: api-mailchimp-cdn, name: "Mailchimp / Mandrill CDN", host: cdn-images.mailchimp.com, url: "https://cdn-images.mailchimp.com/", cat: messaging, provider: intuit, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1743 + - { id: api-brevo-hosts-status, name: "Brevo hosts status page", host: status.brevo.com, cat: messaging, provider: brevo, svc: brevo, cc: FR, imp: 3, tier: 4, checks: [http] }
1744 + - { id: api-brevo-hosts-developers, name: "Brevo hosts developer portal", host: developers.brevo.com, cat: messaging, provider: brevo, svc: brevo, cc: FR, imp: 3, tier: 4, checks: [http] }
1745 + - { id: api-brevo-hosts-api, name: "Brevo hosts API", host: api.brevo.com, url: "https://api.brevo.com/v3/account", cat: messaging, provider: brevo, svc: brevo, cc: FR, imp: 3, tier: 4, checks: [http] }
1746 + - { id: api-brevo-hosts-help, name: "Brevo hosts help centre", host: help.brevo.com, cat: messaging, provider: brevo, svc: brevo, cc: FR, imp: 3, tier: 4, checks: [http] }
1747 + - { id: api-resend-status, name: "Resend status page", host: resend-status.com, cat: messaging, provider: resend, svc: resend, cc: US, imp: 3, tier: 4, checks: [http] }
1748 + - { id: api-resend-api, name: "Resend API", host: api.resend.com, url: "https://api.resend.com/domains", cat: messaging, provider: resend, svc: resend, cc: US, imp: 3, tier: 4, checks: [http] }
1749 + - { id: api-resend-react-email, name: "Resend react email", host: react.email, cat: messaging, provider: resend, svc: resend, cc: US, imp: 3, tier: 4, checks: [http] }
1750 + - { id: api-ses-ses-api, name: "Amazon SES / Pinpoint / SNS pages ses api", host: email.us-east-1.amazonaws.com, url: "https://email.us-east-1.amazonaws.com/", cat: messaging, provider: aws, svc: aws, cc: US, imp: 3, tier: 4, checks: [http] }
1751 + - { id: api-ses-ses-eu, name: "Amazon SES / Pinpoint / SNS pages ses eu", host: email.eu-west-1.amazonaws.com, url: "https://email.eu-west-1.amazonaws.com/", cat: messaging, provider: aws, svc: aws, cc: US, imp: 3, tier: 4, checks: [http] }
1752 + - { id: api-sparkpost, name: "SparkPost (Bird)", host: www.sparkpost.com, cat: messaging, provider: bird, svc: bird, cc: US, imp: 2, tier: 4, checks: [http] }
1753 + - { id: api-sparkpost-status, name: "SparkPost (Bird) status page", host: status.sparkpost.com, cat: messaging, provider: bird, svc: bird, cc: US, imp: 2, tier: 4, checks: [http] }
1754 + - { id: api-sparkpost-api, name: "SparkPost (Bird) API", host: api.sparkpost.com, url: "https://api.sparkpost.com/api/v1/", cat: messaging, provider: bird, svc: bird, cc: US, imp: 2, tier: 4, checks: [http] }
1755 + - { id: api-sparkpost-developers, name: "SparkPost (Bird) developer portal", host: developers.sparkpost.com, cat: messaging, provider: bird, svc: bird, cc: US, imp: 2, tier: 4, checks: [http] }
1756 + - { id: api-sparkpost-eu, name: "SparkPost (Bird) eu", host: api.eu.sparkpost.com, url: "https://api.eu.sparkpost.com/api/v1/", cat: messaging, provider: bird, svc: bird, cc: US, imp: 2, tier: 4, checks: [http] }
1757 + - { id: api-bird, name: "Bird (MessageBird)", host: bird.com, cat: messaging, provider: bird, svc: bird, cc: NL, imp: 3, tier: 4, checks: [http] }
1758 + - { id: api-bird-docs, name: "Bird (MessageBird) docs", host: docs.bird.com, cat: messaging, provider: bird, svc: bird, cc: NL, imp: 3, tier: 4, checks: [http] }
1759 + - { id: api-bird-status, name: "Bird (MessageBird) status page", host: status.bird.com, cat: messaging, provider: bird, svc: bird, cc: NL, imp: 3, tier: 4, checks: [http] }
1760 + - { id: api-bird-messagebird, name: "Bird (MessageBird) messagebird", host: www.messagebird.com, cat: messaging, provider: bird, svc: bird, cc: NL, imp: 3, tier: 4, checks: [http] }
1761 + - { id: api-bird-messagebird-status, name: "Bird (MessageBird) messagebird status", host: status.messagebird.com, cat: messaging, provider: bird, svc: bird, cc: NL, imp: 3, tier: 4, checks: [http] }
1762 + - { id: api-bird-rest, name: "Bird (MessageBird) rest", host: rest.messagebird.com, url: "https://rest.messagebird.com/balance", cat: messaging, provider: bird, svc: bird, cc: NL, imp: 3, tier: 4, checks: [http] }
1763 + - { id: api-bird-api, name: "Bird (MessageBird) API", host: api.bird.com, url: "https://api.bird.com/", cat: messaging, provider: bird, svc: bird, cc: NL, imp: 3, tier: 4, checks: [http] }
1764 + - { id: api-vonage-developer, name: "Vonage developer portal", host: developer.vonage.com, cat: messaging, provider: vonage, cc: US, imp: 3, tier: 4, checks: [http] }
1765 + - { id: api-vonage-api-status, name: "Vonage api status", host: api.vonage.com, url: "https://api.vonage.com/", cat: messaging, provider: vonage, cc: US, imp: 3, tier: 4, checks: [http] }
1766 + - { id: api-vonage-rest, name: "Vonage rest", host: rest.nexmo.com, url: "https://rest.nexmo.com/account/get-balance", cat: messaging, provider: vonage, cc: US, imp: 3, tier: 4, checks: [http] }
1767 + - { id: api-vonage-api-nexmo, name: "Vonage api nexmo", host: api.nexmo.com, url: "https://api.nexmo.com/", cat: messaging, provider: vonage, cc: US, imp: 3, tier: 4, checks: [http] }
1768 + - { id: api-sinch-hosts, name: "Sinch hosts", host: www.sinch.com, cat: messaging, provider: sinch, svc: sinch, cc: SE, imp: 3, tier: 4, checks: [http] }
1769 + - { id: api-sinch-hosts-developers, name: "Sinch hosts developer portal", host: developers.sinch.com, cat: messaging, provider: sinch, svc: sinch, cc: SE, imp: 3, tier: 4, checks: [http] }
1770 + - { id: api-sinch-hosts-status, name: "Sinch hosts status page", host: status.sinch.com, cat: messaging, provider: sinch, svc: sinch, cc: SE, imp: 3, tier: 4, checks: [http] }
1771 + - { id: api-sinch-hosts-sms-api, name: "Sinch hosts sms api", host: sms.api.sinch.com, url: "https://sms.api.sinch.com/", cat: messaging, provider: sinch, svc: sinch, cc: SE, imp: 3, tier: 4, checks: [http] }
1772 + - { id: api-sinch-hosts-mailjet, name: "Sinch hosts mailjet", host: www.mailjet.com, cat: messaging, provider: sinch, svc: sinch, cc: SE, imp: 3, tier: 4, checks: [http] }
1773 + - { id: api-sinch-hosts-mailjet-status, name: "Sinch hosts mailjet status", host: status.mailjet.com, cat: messaging, provider: sinch, svc: sinch, cc: SE, imp: 3, tier: 4, checks: [http] }
1774 + - { id: api-sinch-hosts-mailjet-api, name: "Sinch hosts mailjet api", host: api.mailjet.com, url: "https://api.mailjet.com/v3/REST/", cat: messaging, provider: sinch, svc: sinch, cc: SE, imp: 3, tier: 4, checks: [http] }
1775 + - { id: api-sinch-hosts-mailjet-dev, name: "Sinch hosts mailjet dev", host: dev.mailjet.com, cat: messaging, provider: sinch, svc: sinch, cc: SE, imp: 3, tier: 4, checks: [http] }
1776 + - { id: api-plivo, name: "Plivo", host: www.plivo.com, cat: messaging, provider: plivo, svc: plivo, cc: US, imp: 2, tier: 4, checks: [http] }
1777 + - { id: api-plivo-status, name: "Plivo status page", host: status.plivo.com, cat: messaging, provider: plivo, svc: plivo, cc: US, imp: 2, tier: 4, checks: [http] }
1778 + - { id: api-plivo-api, name: "Plivo API", host: api.plivo.com, url: "https://api.plivo.com/v1/", cat: messaging, provider: plivo, svc: plivo, cc: US, imp: 2, tier: 4, checks: [http] }
1779 + - { id: api-telnyx-hosts-status, name: "Telnyx hosts status page", host: status.telnyx.com, cat: messaging, provider: telnyx, svc: telnyx, cc: US, imp: 3, tier: 4, checks: [http] }
1780 + - { id: api-telnyx-hosts-developers, name: "Telnyx hosts developer portal", host: developers.telnyx.com, cat: messaging, provider: telnyx, svc: telnyx, cc: US, imp: 3, tier: 4, checks: [http] }
1781 + - { id: api-telnyx-hosts-api, name: "Telnyx hosts API", host: api.telnyx.com, url: "https://api.telnyx.com/v2/", cat: messaging, provider: telnyx, svc: telnyx, cc: US, imp: 3, tier: 4, checks: [http] }
1782 + - { id: api-telnyx-hosts-support, name: "Telnyx hosts support", host: support.telnyx.com, cat: messaging, provider: telnyx, svc: telnyx, cc: US, imp: 3, tier: 4, checks: [http] }
1783 + - { id: api-infobip, name: "Infobip", host: www.infobip.com, cat: messaging, provider: infobip, svc: infobip, cc: GB, imp: 3, tier: 4, checks: [http] }
1784 + - { id: api-infobip-status, name: "Infobip status page", host: status.infobip.com, cat: messaging, provider: infobip, svc: infobip, cc: GB, imp: 3, tier: 4, checks: [http] }
1785 + - { id: api-infobip-api, name: "Infobip API", host: api.infobip.com, url: "https://api.infobip.com/", cat: messaging, provider: infobip, svc: infobip, cc: GB, imp: 3, tier: 4, checks: [http] }
1786 + - { id: api-bandwidth-hosts-status, name: "Bandwidth hosts status page", host: status.bandwidth.com, cat: messaging, provider: bandwidth, svc: bandwidth, cc: US, imp: 2, tier: 4, checks: [http] }
1787 + - { id: api-bandwidth-hosts-dev, name: "Bandwidth hosts dev", host: dev.bandwidth.com, cat: messaging, provider: bandwidth, svc: bandwidth, cc: US, imp: 2, tier: 4, checks: [http] }
1788 + - { id: api-bandwidth-hosts-api, name: "Bandwidth hosts API", host: api.bandwidth.com, url: "https://api.bandwidth.com/", cat: messaging, provider: bandwidth, svc: bandwidth, cc: US, imp: 2, tier: 4, checks: [http] }
1789 + - { id: api-twilio-hosts-status, name: "Twilio hosts status page", host: status.twilio.com, cat: messaging, provider: twilio, svc: twilio, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1790 + - { id: api-twilio-hosts-docs, name: "Twilio hosts docs", host: www.twilio.com, url: "https://www.twilio.com/docs", cat: messaging, provider: twilio, svc: twilio, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1791 + - { id: api-twilio-hosts-help, name: "Twilio hosts help centre", host: help.twilio.com, cat: messaging, provider: twilio, svc: twilio, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1792 + - { id: api-twilio-hosts-lookups, name: "Twilio hosts lookups", host: lookups.twilio.com, url: "https://lookups.twilio.com/v2/", cat: messaging, provider: twilio, svc: twilio, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1793 + - { id: api-twilio-hosts-messaging, name: "Twilio hosts messaging", host: messaging.twilio.com, url: "https://messaging.twilio.com/v1/", cat: messaging, provider: twilio, svc: twilio, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1794 + - { id: api-twilio-hosts-verify, name: "Twilio hosts verify", host: verify.twilio.com, url: "https://verify.twilio.com/v2/", cat: messaging, provider: twilio, svc: twilio, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1795 + - { id: api-twilio-hosts-video, name: "Twilio hosts video", host: video.twilio.com, url: "https://video.twilio.com/v1/", cat: messaging, provider: twilio, svc: twilio, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1796 + - { id: api-twilio-hosts-conversations, name: "Twilio hosts conversations", host: conversations.twilio.com, url: "https://conversations.twilio.com/v1/", cat: messaging, provider: twilio, svc: twilio, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1797 + - { id: api-twilio-hosts-sdk, name: "Twilio hosts SDK", host: sdk.twilio.com, url: "https://sdk.twilio.com/", cat: messaging, provider: twilio, svc: twilio, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1798 + - { id: api-twilio-hosts-media, name: "Twilio hosts media", host: media.twiliocdn.com, url: "https://media.twiliocdn.com/", cat: messaging, provider: twilio, svc: twilio, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1799 + - { id: api-twilio-hosts-sendgrid-status, name: "Twilio hosts sendgrid status", host: status.sendgrid.com, cat: messaging, provider: twilio, svc: twilio, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1800 + - { id: api-twilio-hosts-sendgrid-docs, name: "Twilio hosts sendgrid docs", host: docs.sendgrid.com, cat: messaging, provider: twilio, svc: twilio, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1801 + - { id: api-twilio-hosts-sendgrid-eu, name: "Twilio hosts sendgrid eu", host: api.eu.sendgrid.com, url: "https://api.eu.sendgrid.com/v3/", cat: messaging, provider: twilio, svc: twilio, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1802 + - { id: api-twilio-hosts-sendgrid-app, name: "Twilio hosts sendgrid app", host: app.sendgrid.com, cat: messaging, provider: twilio, svc: twilio, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1803 + - { id: api-customerio-customerio, name: "Customer messaging platforms customerio", host: customer.io, cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1804 + - { id: api-customerio-customerio-status, name: "Customer messaging platforms customerio status", host: status.customer.io, cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1805 + - { id: api-customerio-customerio-track, name: "Customer messaging platforms customerio track", host: track.customer.io, url: "https://track.customer.io/api/v1/", cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1806 + - { id: api-customerio-onesignal, name: "Customer messaging platforms onesignal", host: onesignal.com, cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1807 + - { id: api-customerio-onesignal-status, name: "Customer messaging platforms onesignal status", host: status.onesignal.com, cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1808 + - { id: api-customerio-onesignal-docs, name: "Customer messaging platforms onesignal docs", host: documentation.onesignal.com, cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1809 + - { id: api-customerio-airship, name: "Customer messaging platforms airship", host: www.airship.com, cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1810 + - { id: api-customerio-airship-status, name: "Customer messaging platforms airship status", host: status.airship.com, cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1811 + - { id: api-customerio-airship-api, name: "Customer messaging platforms airship api", host: go.urbanairship.com, url: "https://go.urbanairship.com/api/", cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1812 + - { id: api-customerio-courier, name: "Customer messaging platforms courier", host: www.courier.com, cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1813 + - { id: api-customerio-courier-status, name: "Customer messaging platforms courier status", host: status.courier.com, cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1814 + - { id: api-customerio-courier-api, name: "Customer messaging platforms courier api", host: api.courier.com, url: "https://api.courier.com/", cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1815 + - { id: api-customerio-knock, name: "Customer messaging platforms knock", host: knock.app, cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1816 + - { id: api-customerio-knock-status, name: "Customer messaging platforms knock status", host: status.knock.app, cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1817 + - { id: api-customerio-knock-api, name: "Customer messaging platforms knock api", host: api.knock.app, url: "https://api.knock.app/", cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1818 + - { id: api-customerio-novu, name: "Customer messaging platforms novu", host: novu.co, cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1819 + - { id: api-customerio-novu-api, name: "Customer messaging platforms novu api", host: api.novu.co, url: "https://api.novu.co/v1/health-check", cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1820 + - { id: api-customerio-pushwoosh, name: "Customer messaging platforms pushwoosh", host: www.pushwoosh.com, cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1821 + - { id: api-customerio-pushwoosh-status, name: "Customer messaging platforms pushwoosh status", host: status.pushwoosh.com, cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1822 + - { id: api-customerio-pusher-status, name: "Customer messaging platforms pusher status", host: status.pusher.com, cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1823 + - { id: api-customerio-pusher-docs, name: "Customer messaging platforms pusher docs", host: pusher.com, url: "https://pusher.com/docs/", cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1824 + - { id: api-customerio-pusher-api, name: "Customer messaging platforms pusher api", host: api-eu.pusher.com, url: "https://api-eu.pusher.com/", cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1825 + - { id: api-customerio-ably-status, name: "Customer messaging platforms ably status", host: status.ably.com, cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1826 + - { id: api-customerio-ably-docs, name: "Customer messaging platforms ably docs", host: ably.com, url: "https://ably.com/docs", cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1827 + - { id: api-customerio-ably-rest, name: "Customer messaging platforms ably rest", host: rest.ably.io, url: "https://rest.ably.io/time", cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1828 + - { id: api-customerio-ably-realtime, name: "Customer messaging platforms ably realtime", host: realtime.ably.io, url: "https://realtime.ably.io/", cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1829 + - { id: api-customerio-pubnub-docs, name: "Customer messaging platforms pubnub docs", host: www.pubnub.com, url: "https://www.pubnub.com/docs", cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1830 + - { id: api-customerio-pubnub-ps, name: "Customer messaging platforms pubnub ps", host: ps.pndsn.com, url: "https://ps.pndsn.com/time/0", cat: messaging, provider: customerio, cc: US, imp: 2, tier: 4, checks: [http] }
1831 + - { id: api-getstream, name: "Stream", host: getstream.io, cat: messaging, provider: getstream, svc: getstream, cc: US, imp: 3, tier: 4, checks: [http] }
1832 + - { id: api-getstream-status, name: "Stream status page", host: status.getstream.io, cat: messaging, provider: getstream, svc: getstream, cc: US, imp: 3, tier: 4, checks: [http] }
1833 + - { id: api-getstream-api, name: "Stream API", host: chat.stream-io-api.com, url: "https://chat.stream-io-api.com/", cat: messaging, provider: getstream, svc: getstream, cc: US, imp: 3, tier: 4, checks: [http] }
1834 + - { id: api-agora-agora, name: "Agora / Daily / 100ms / LiveKit / Dyte agora", host: www.agora.io, cat: messaging, provider: agora, cc: US, imp: 3, tier: 4, checks: [http] }
1835 + - { id: api-agora-agora-status, name: "Agora / Daily / 100ms / LiveKit / Dyte agora status", host: status.agora.io, cat: messaging, provider: agora, cc: US, imp: 3, tier: 4, checks: [http] }
1836 + - { id: api-agora-agora-docs, name: "Agora / Daily / 100ms / LiveKit / Dyte agora docs", host: docs.agora.io, cat: messaging, provider: agora, cc: US, imp: 3, tier: 4, checks: [http] }
1837 + - { id: api-agora-agora-api, name: "Agora / Daily / 100ms / LiveKit / Dyte agora api", host: api.agora.io, url: "https://api.agora.io/", cat: messaging, provider: agora, cc: US, imp: 3, tier: 4, checks: [http] }
1838 + - { id: api-agora-agora-console, name: "Agora / Daily / 100ms / LiveKit / Dyte agora console", host: console.agora.io, cat: messaging, provider: agora, cc: US, imp: 3, tier: 4, checks: [http] }
1839 + - { id: api-agora-daily, name: "Agora / Daily / 100ms / LiveKit / Dyte daily", host: www.daily.co, cat: messaging, provider: agora, cc: US, imp: 3, tier: 4, checks: [http] }
1840 + - { id: api-agora-daily-status, name: "Agora / Daily / 100ms / LiveKit / Dyte daily status", host: status.daily.co, cat: messaging, provider: agora, cc: US, imp: 3, tier: 4, checks: [http] }
1841 + - { id: api-agora-daily-docs, name: "Agora / Daily / 100ms / LiveKit / Dyte daily docs", host: docs.daily.co, cat: messaging, provider: agora, cc: US, imp: 3, tier: 4, checks: [http] }
1842 + - { id: api-agora-daily-api, name: "Agora / Daily / 100ms / LiveKit / Dyte daily api", host: api.daily.co, url: "https://api.daily.co/v1/", cat: messaging, provider: agora, cc: US, imp: 3, tier: 4, checks: [http] }
1843 + - { id: api-agora-100ms, name: "Agora / Daily / 100ms / LiveKit / Dyte 100ms", host: www.100ms.live, cat: messaging, provider: agora, cc: US, imp: 3, tier: 4, checks: [http] }
1844 + - { id: api-agora-100ms-status, name: "Agora / Daily / 100ms / LiveKit / Dyte 100ms status", host: status.100ms.live, cat: messaging, provider: agora, cc: US, imp: 3, tier: 4, checks: [http] }
1845 + - { id: api-agora-100ms-api, name: "Agora / Daily / 100ms / LiveKit / Dyte 100ms api", host: api.100ms.live, url: "https://api.100ms.live/v2/", cat: messaging, provider: agora, cc: US, imp: 3, tier: 4, checks: [http] }
1846 + - { id: api-agora-livekit, name: "Agora / Daily / 100ms / LiveKit / Dyte livekit", host: livekit.io, cat: messaging, provider: agora, cc: US, imp: 3, tier: 4, checks: [http] }
1847 + - { id: api-agora-livekit-status, name: "Agora / Daily / 100ms / LiveKit / Dyte livekit status", host: status.livekit.io, cat: messaging, provider: agora, cc: US, imp: 3, tier: 4, checks: [http] }
1848 + - { id: api-agora-livekit-docs, name: "Agora / Daily / 100ms / LiveKit / Dyte livekit docs", host: docs.livekit.io, cat: messaging, provider: agora, cc: US, imp: 3, tier: 4, checks: [http] }
1849 + - { id: api-agora-livekit-cloud, name: "Agora / Daily / 100ms / LiveKit / Dyte livekit cloud", host: cloud.livekit.io, cat: messaging, provider: agora, cc: US, imp: 3, tier: 4, checks: [http] }
1850 + - { id: api-agora-dyte, name: "Agora / Daily / 100ms / LiveKit / Dyte dyte", host: dyte.io, cat: messaging, provider: agora, cc: US, imp: 3, tier: 4, checks: [http] }
1851 + - { id: api-agora-vonage-video, name: "Agora / Daily / 100ms / LiveKit / Dyte vonage video", host: tokbox.com, cat: messaging, provider: agora, cc: US, imp: 3, tier: 4, checks: [http] }
1852 + - { id: api-mux-hosts-mux-status, name: "Video APIs mux status", host: status.mux.com, cat: messaging, provider: mux, svc: mux, cc: US, imp: 3, tier: 4, checks: [http] }
1853 + - { id: api-mux-hosts-mux-docs, name: "Video APIs mux docs", host: docs.mux.com, cat: messaging, provider: mux, svc: mux, cc: US, imp: 3, tier: 4, checks: [http] }
1854 + - { id: api-mux-hosts-mux-api, name: "Video APIs mux api", host: api.mux.com, url: "https://api.mux.com/video/v1/assets", cat: messaging, provider: mux, svc: mux, cc: US, imp: 3, tier: 4, checks: [http] }
1855 + - { id: api-mux-hosts-mux-stream, name: "Video APIs mux stream", host: stream.mux.com, url: "https://stream.mux.com/", cat: messaging, provider: mux, svc: mux, cc: US, imp: 3, tier: 4, checks: [http] }
1856 + - { id: api-mux-hosts-mux-image, name: "Video APIs mux image", host: image.mux.com, url: "https://image.mux.com/", cat: messaging, provider: mux, svc: mux, cc: US, imp: 3, tier: 4, checks: [http] }
1857 + - { id: api-mux-hosts-mux-dashboard, name: "Video APIs mux dashboard", host: dashboard.mux.com, cat: messaging, provider: mux, svc: mux, cc: US, imp: 3, tier: 4, checks: [http] }
1858 + - { id: api-mux-hosts-api-video, name: "Video APIs api video", host: api.video, cat: messaging, provider: mux, svc: mux, cc: US, imp: 3, tier: 4, checks: [http] }
1859 + - { id: api-mux-hosts-api-video-status, name: "Video APIs api video status", host: status.api.video, cat: messaging, provider: mux, svc: mux, cc: US, imp: 3, tier: 4, checks: [http] }
1860 + - { id: api-mux-hosts-api-video-ws, name: "Video APIs api video ws", host: ws.api.video, url: "https://ws.api.video/", cat: messaging, provider: mux, svc: mux, cc: US, imp: 3, tier: 4, checks: [http] }
1861 + - { id: api-mux-hosts-videosdk, name: "Video APIs videosdk", host: www.videosdk.live, cat: messaging, provider: mux, svc: mux, cc: US, imp: 3, tier: 4, checks: [http] }
1862 + - { id: api-mux-hosts-vimeo-api, name: "Video APIs vimeo api", host: developer.vimeo.com, cat: messaging, provider: mux, svc: mux, cc: US, imp: 3, tier: 4, checks: [http] }
1863 + - { id: api-mux-hosts-wistia-status, name: "Video APIs wistia status", host: status.wistia.com, cat: messaging, provider: mux, svc: mux, cc: US, imp: 3, tier: 4, checks: [http] }
1864 + - { id: api-mux-hosts-wistia-api, name: "Video APIs wistia api", host: api.wistia.com, url: "https://api.wistia.com/v1/", cat: messaging, provider: mux, svc: mux, cc: US, imp: 3, tier: 4, checks: [http] }
1865 + - { id: api-mux-hosts-vidyard-status, name: "Video APIs vidyard status", host: status.vidyard.com, cat: messaging, provider: mux, svc: mux, cc: US, imp: 3, tier: 4, checks: [http] }
1866 + - { id: api-mux-hosts-jwplayer-status, name: "Video APIs jwplayer status", host: status.jwplayer.com, cat: messaging, provider: mux, svc: mux, cc: US, imp: 3, tier: 4, checks: [http] }
1867 + - { id: api-mux-hosts-jwplayer-cdn, name: "Video APIs jwplayer cdn", host: cdn.jwplayer.com, url: "https://cdn.jwplayer.com/", cat: messaging, provider: mux, svc: mux, cc: US, imp: 3, tier: 4, checks: [http] }
1868 + - { id: api-mux-hosts-brightcove-status, name: "Video APIs brightcove status", host: status.brightcove.com, cat: messaging, provider: mux, svc: mux, cc: US, imp: 3, tier: 4, checks: [http] }
1869 + - { id: api-mux-hosts-bitmovin, name: "Video APIs bitmovin", host: bitmovin.com, cat: messaging, provider: mux, svc: mux, cc: US, imp: 3, tier: 4, checks: [http] }
1870 + - { id: api-mux-hosts-bitmovin-status, name: "Video APIs bitmovin status", host: status.bitmovin.com, cat: messaging, provider: mux, svc: mux, cc: US, imp: 3, tier: 4, checks: [http] }
1871 + - { id: api-mux-hosts-theoplayer, name: "Video APIs theoplayer", host: www.theoplayer.com, cat: messaging, provider: mux, svc: mux, cc: US, imp: 3, tier: 4, checks: [http] }
1872 + - { id: api-mux-hosts-dolby-io, name: "Video APIs dolby io", host: dolby.io, cat: messaging, provider: mux, svc: mux, cc: US, imp: 3, tier: 4, checks: [http] }
1873 + - { id: api-mux-hosts-ziggeo, name: "Video APIs ziggeo", host: ziggeo.com, cat: messaging, provider: mux, svc: mux, cc: US, imp: 3, tier: 4, checks: [http] }
1874 + - { id: api-cloudinary-hosts-cloudinary-status, name: "Media & file APIs cloudinary status", host: status.cloudinary.com, cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1875 + - { id: api-cloudinary-hosts-cloudinary-docs, name: "Media & file APIs cloudinary docs", host: cloudinary.com, url: "https://cloudinary.com/documentation", cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1876 + - { id: api-cloudinary-hosts-cloudinary-res, name: "Media & file APIs cloudinary res", host: res.cloudinary.com, url: "https://res.cloudinary.com/demo/image/upload/sample.jpg", cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1877 + - { id: api-cloudinary-hosts-cloudinary-api, name: "Media & file APIs cloudinary api", host: api.cloudinary.com, url: "https://api.cloudinary.com/v1_1/demo/ping", cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1878 + - { id: api-cloudinary-hosts-cloudinary-support, name: "Media & file APIs cloudinary support", host: support.cloudinary.com, cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1879 + - { id: api-cloudinary-hosts-imgix-status, name: "Media & file APIs imgix status", host: status.imgix.com, cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1880 + - { id: api-cloudinary-hosts-imgix-docs, name: "Media & file APIs imgix docs", host: docs.imgix.com, cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1881 + - { id: api-cloudinary-hosts-imgix-assets, name: "Media & file APIs imgix assets", host: assets.imgix.net, url: "https://assets.imgix.net/examples/pione.jpg?w=10", cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1882 + - { id: api-cloudinary-hosts-uploadcare, name: "Media & file APIs uploadcare", host: uploadcare.com, cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1883 + - { id: api-cloudinary-hosts-uploadcare-status, name: "Media & file APIs uploadcare status", host: status.uploadcare.com, cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1884 + - { id: api-cloudinary-hosts-uploadcare-api, name: "Media & file APIs uploadcare api", host: api.uploadcare.com, url: "https://api.uploadcare.com/", cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1885 + - { id: api-cloudinary-hosts-uploadcare-cdn, name: "Media & file APIs uploadcare cdn", host: ucarecdn.com, url: "https://ucarecdn.com/", cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1886 + - { id: api-cloudinary-hosts-filestack, name: "Media & file APIs filestack", host: www.filestack.com, cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1887 + - { id: api-cloudinary-hosts-filestack-status, name: "Media & file APIs filestack status", host: status.filestack.com, cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1888 + - { id: api-cloudinary-hosts-filestack-cdn, name: "Media & file APIs filestack cdn", host: cdn.filestackcontent.com, url: "https://cdn.filestackcontent.com/", cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1889 + - { id: api-cloudinary-hosts-filestack-api, name: "Media & file APIs filestack api", host: www.filestackapi.com, url: "https://www.filestackapi.com/api/store/S3", cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1890 + - { id: api-cloudinary-hosts-imagekit, name: "Media & file APIs imagekit", host: imagekit.io, cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1891 + - { id: api-cloudinary-hosts-imagekit-cdn, name: "Media & file APIs imagekit cdn", host: ik.imagekit.io, url: "https://ik.imagekit.io/demo/tr:w-10/medium_cafe_B1iTdD0C.jpg", cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1892 + - { id: api-cloudinary-hosts-cloudimage, name: "Media & file APIs cloudimage", host: www.cloudimage.io, cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1893 + - { id: api-cloudinary-hosts-sirv, name: "Media & file APIs sirv", host: sirv.com, cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1894 + - { id: api-cloudinary-hosts-sirv-status, name: "Media & file APIs sirv status", host: status.sirv.com, cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1895 + - { id: api-cloudinary-hosts-transloadit, name: "Media & file APIs transloadit", host: transloadit.com, cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1896 + - { id: api-cloudinary-hosts-uploadthing, name: "Media & file APIs uploadthing", host: uploadthing.com, cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1897 + - { id: api-cloudinary-hosts-bytescale, name: "Media & file APIs bytescale", host: www.bytescale.com, cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1898 + - { id: api-cloudinary-hosts-tinypng, name: "Media & file APIs tinypng", host: tinypng.com, cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1899 + - { id: api-cloudinary-hosts-tinify-api, name: "Media & file APIs tinify api", host: api.tinify.com, url: "https://api.tinify.com/shrink", cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1900 + - { id: api-cloudinary-hosts-imgproxy, name: "Media & file APIs imgproxy", host: imgproxy.net, cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1901 + - { id: api-cloudinary-hosts-thumbor, name: "Media & file APIs thumbor", host: thumbor.readthedocs.io, cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1902 + - { id: api-cloudinary-hosts-wsrv, name: "Media & file APIs wsrv", host: wsrv.nl, url: "https://wsrv.nl/?url=wsrv.nl/lichtenstein.jpg&w=10", cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1903 + - { id: api-cloudinary-hosts-images-weserv, name: "Media & file APIs images weserv", host: images.weserv.nl, url: "https://images.weserv.nl/?url=wsrv.nl/lichtenstein.jpg&w=10", cat: developer, provider: cloudinary, svc: cloudinary, cc: US, imp: 3, tier: 4, checks: [http] }
1904 + - { id: api-storage-apis-s3-us-east-1, name: "Object storage APIs & S3-compatibles s3 us east 1", host: s3.us-east-1.amazonaws.com, url: "https://s3.us-east-1.amazonaws.com/", cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1905 + - { id: api-storage-apis-s3-eu-west-1, name: "Object storage APIs & S3-compatibles s3 eu west 1", host: s3.eu-west-1.amazonaws.com, url: "https://s3.eu-west-1.amazonaws.com/", cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1906 + - { id: api-storage-apis-s3-ap-southeast-1, name: "Object storage APIs & S3-compatibles s3 ap southeast 1", host: s3.ap-southeast-1.amazonaws.com, url: "https://s3.ap-southeast-1.amazonaws.com/", cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1907 + - { id: api-storage-apis-s3-ca-central-1, name: "Object storage APIs & S3-compatibles s3 ca central 1", host: s3.ca-central-1.amazonaws.com, url: "https://s3.ca-central-1.amazonaws.com/", cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1908 + - { id: api-storage-apis-backblaze-api, name: "Object storage APIs & S3-compatibles backblaze api", host: api.backblazeb2.com, url: "https://api.backblazeb2.com/b2api/v2/b2_authorize_account", cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1909 + - { id: api-storage-apis-backblaze-f000, name: "Object storage APIs & S3-compatibles backblaze f000", host: f000.backblazeb2.com, url: "https://f000.backblazeb2.com/", cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1910 + - { id: api-storage-apis-wasabi-status, name: "Object storage APIs & S3-compatibles wasabi status", host: status.wasabi.com, cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1911 + - { id: api-storage-apis-wasabi-s3, name: "Object storage APIs & S3-compatibles wasabi s3", host: s3.wasabisys.com, url: "https://s3.wasabisys.com/", cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1912 + - { id: api-storage-apis-wasabi-eu, name: "Object storage APIs & S3-compatibles wasabi eu", host: s3.eu-central-1.wasabisys.com, url: "https://s3.eu-central-1.wasabisys.com/", cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1913 + - { id: api-storage-apis-minio, name: "Object storage APIs & S3-compatibles minio", host: min.io, cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1914 + - { id: api-storage-apis-minio-dl, name: "Object storage APIs & S3-compatibles minio dl", host: dl.min.io, url: "https://dl.min.io/server/minio/release/linux-amd64/minio.sha256sum", cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1915 + - { id: api-storage-apis-minio-play, name: "Object storage APIs & S3-compatibles minio play", host: play.min.io, url: "https://play.min.io/", cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1916 + - { id: api-storage-apis-minio-docs, name: "Object storage APIs & S3-compatibles minio docs", host: docs.min.io, cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1917 + - { id: api-storage-apis-storj, name: "Object storage APIs & S3-compatibles storj", host: www.storj.io, cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1918 + - { id: api-storage-apis-storj-status, name: "Object storage APIs & S3-compatibles storj status", host: status.storj.io, cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1919 + - { id: api-storage-apis-storj-gateway, name: "Object storage APIs & S3-compatibles storj gateway", host: gateway.storjshare.io, url: "https://gateway.storjshare.io/", cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1920 + - { id: api-storage-apis-tigris, name: "Object storage APIs & S3-compatibles tigris", host: www.tigrisdata.com, cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1921 + - { id: api-storage-apis-tigris-status, name: "Object storage APIs & S3-compatibles tigris status", host: status.tigrisdata.com, cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1922 + - { id: api-storage-apis-tigris-fly, name: "Object storage APIs & S3-compatibles tigris fly", host: fly.storage.tigris.dev, url: "https://fly.storage.tigris.dev/", cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1923 + - { id: api-storage-apis-scaleway-s3, name: "Object storage APIs & S3-compatibles scaleway s3", host: s3.fr-par.scw.cloud, url: "https://s3.fr-par.scw.cloud/", cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1924 + - { id: api-storage-apis-ovh-s3, name: "Object storage APIs & S3-compatibles ovh s3", host: s3.gra.io.cloud.ovh.net, url: "https://s3.gra.io.cloud.ovh.net/", cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1925 + - { id: api-storage-apis-do-spaces, name: "Object storage APIs & S3-compatibles do spaces", host: nyc3.digitaloceanspaces.com, url: "https://nyc3.digitaloceanspaces.com/", cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1926 + - { id: api-storage-apis-linode-obj, name: "Object storage APIs & S3-compatibles linode obj", host: us-east-1.linodeobjects.com, url: "https://us-east-1.linodeobjects.com/", cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1927 + - { id: api-storage-apis-hetzner-obj, name: "Object storage APIs & S3-compatibles hetzner obj", host: fsn1.your-objectstorage.com, url: "https://fsn1.your-objectstorage.com/", cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1928 + - { id: api-storage-apis-idrive-e2, name: "Object storage APIs & S3-compatibles idrive e2", host: www.idrive.com, url: "https://www.idrive.com/s3-storage-e2/", cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1929 + - { id: api-storage-apis-filebase, name: "Object storage APIs & S3-compatibles filebase", host: filebase.com, cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1930 + - { id: api-storage-apis-filebase-s3, name: "Object storage APIs & S3-compatibles filebase s3", host: s3.filebase.com, url: "https://s3.filebase.com/", cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1931 + - { id: api-storage-apis-web3-storage, name: "Object storage APIs & S3-compatibles web3 storage", host: web3.storage, cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1932 + - { id: api-storage-apis-pinata, name: "Object storage APIs & S3-compatibles pinata", host: pinata.cloud, cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1933 + - { id: api-storage-apis-pinata-gateway, name: "Object storage APIs & S3-compatibles pinata gateway", host: gateway.pinata.cloud, url: "https://gateway.pinata.cloud/ipfs/QmUNLLsPACCz1vLxQVkXqqLX5R1X345qqfHbsf67hvA3Nn", cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1934 + - { id: api-storage-apis-ipfs-io, name: "Object storage APIs & S3-compatibles ipfs io", host: ipfs.io, url: "https://ipfs.io/ipfs/QmUNLLsPACCz1vLxQVkXqqLX5R1X345qqfHbsf67hvA3Nn", cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1935 + - { id: api-storage-apis-dweb-link, name: "Object storage APIs & S3-compatibles dweb link", host: dweb.link, url: "https://dweb.link/ipfs/QmUNLLsPACCz1vLxQVkXqqLX5R1X345qqfHbsf67hvA3Nn", cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1936 + - { id: api-storage-apis-nftstorage, name: "Object storage APIs & S3-compatibles nftstorage", host: nft.storage, cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1937 + - { id: api-storage-apis-arweave, name: "Object storage APIs & S3-compatibles arweave", host: arweave.net, url: "https://arweave.net/info", cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1938 + - { id: api-storage-apis-ar-io, name: "Object storage APIs & S3-compatibles ar io", host: ar.io, cat: developer, provider: s3, cc: null, imp: 3, tier: 4, checks: [http] }
1939 + - { id: api-clerk, name: "Clerk", host: clerk.com, cat: developer, provider: clerk, svc: clerk, cc: US, imp: 3, tier: 4, checks: [http] }
1940 + - { id: api-clerk-status, name: "Clerk status page", host: status.clerk.com, cat: developer, provider: clerk, svc: clerk, cc: US, imp: 3, tier: 4, checks: [http] }
1941 + - { id: api-clerk-api, name: "Clerk API", host: api.clerk.com, url: "https://api.clerk.com/v1/", cat: developer, provider: clerk, svc: clerk, cc: US, imp: 3, tier: 4, checks: [http] }
1942 + - { id: api-stytch, name: "Stytch", host: stytch.com, cat: developer, provider: stytch, cc: US, imp: 2, tier: 4, checks: [http] }
1943 + - { id: api-stytch-status, name: "Stytch status page", host: status.stytch.com, cat: developer, provider: stytch, cc: US, imp: 2, tier: 4, checks: [http] }
1944 + - { id: api-stytch-api, name: "Stytch API", host: api.stytch.com, url: "https://api.stytch.com/v1/", cat: developer, provider: stytch, cc: US, imp: 2, tier: 4, checks: [http] }
1945 + - { id: api-stytch-test, name: "Stytch test", host: test.stytch.com, url: "https://test.stytch.com/v1/", cat: developer, provider: stytch, cc: US, imp: 2, tier: 4, checks: [http] }
1946 + - { id: api-fusionauth-fusionauth, name: "FusionAuth / Keycloak / Ory / Zitadel / Authelia fusionauth", host: fusionauth.io, cat: developer, provider: fusionauth, svc: fusionauth, cc: null, imp: 2, tier: 4, checks: [http] }
1947 + - { id: api-fusionauth-fusionauth-status, name: "FusionAuth / Keycloak / Ory / Zitadel / Authelia fusionauth status", host: status.fusionauth.io, cat: developer, provider: fusionauth, svc: fusionauth, cc: null, imp: 2, tier: 4, checks: [http] }
1948 + - { id: api-fusionauth-fusionauth-files, name: "FusionAuth / Keycloak / Ory / Zitadel / Authelia fusionauth files", host: files.fusionauth.io, cat: developer, provider: fusionauth, svc: fusionauth, cc: null, imp: 2, tier: 4, checks: [http] }
1949 + - { id: api-fusionauth-keycloak, name: "FusionAuth / Keycloak / Ory / Zitadel / Authelia keycloak", host: www.keycloak.org, cat: developer, provider: fusionauth, svc: fusionauth, cc: null, imp: 2, tier: 4, checks: [http] }
1950 + - { id: api-fusionauth-ory, name: "FusionAuth / Keycloak / Ory / Zitadel / Authelia ory", host: www.ory.sh, cat: developer, provider: fusionauth, svc: fusionauth, cc: null, imp: 2, tier: 4, checks: [http] }
1951 + - { id: api-fusionauth-ory-status, name: "FusionAuth / Keycloak / Ory / Zitadel / Authelia ory status", host: status.ory.sh, cat: developer, provider: fusionauth, svc: fusionauth, cc: null, imp: 2, tier: 4, checks: [http] }
1952 + - { id: api-fusionauth-ory-console, name: "FusionAuth / Keycloak / Ory / Zitadel / Authelia ory console", host: console.ory.sh, cat: developer, provider: fusionauth, svc: fusionauth, cc: null, imp: 2, tier: 4, checks: [http] }
1953 + - { id: api-fusionauth-zitadel, name: "FusionAuth / Keycloak / Ory / Zitadel / Authelia zitadel", host: zitadel.com, cat: developer, provider: fusionauth, svc: fusionauth, cc: null, imp: 2, tier: 4, checks: [http] }
1954 + - { id: api-fusionauth-zitadel-status, name: "FusionAuth / Keycloak / Ory / Zitadel / Authelia zitadel status", host: status.zitadel.com, cat: developer, provider: fusionauth, svc: fusionauth, cc: null, imp: 2, tier: 4, checks: [http] }
1955 + - { id: api-fusionauth-authelia, name: "FusionAuth / Keycloak / Ory / Zitadel / Authelia authelia", host: www.authelia.com, cat: developer, provider: fusionauth, svc: fusionauth, cc: null, imp: 2, tier: 4, checks: [http] }
1956 + - { id: api-fusionauth-authentik, name: "FusionAuth / Keycloak / Ory / Zitadel / Authelia authentik", host: goauthentik.io, cat: developer, provider: fusionauth, svc: fusionauth, cc: null, imp: 2, tier: 4, checks: [http] }
1957 + - { id: api-fusionauth-supertokens, name: "FusionAuth / Keycloak / Ory / Zitadel / Authelia supertokens", host: supertokens.com, cat: developer, provider: fusionauth, svc: fusionauth, cc: null, imp: 2, tier: 4, checks: [http] }
1958 + - { id: api-fusionauth-hanko, name: "FusionAuth / Keycloak / Ory / Zitadel / Authelia hanko", host: www.hanko.io, cat: developer, provider: fusionauth, svc: fusionauth, cc: null, imp: 2, tier: 4, checks: [http] }
1959 + - { id: api-fusionauth-logto, name: "FusionAuth / Keycloak / Ory / Zitadel / Authelia logto", host: logto.io, cat: developer, provider: fusionauth, svc: fusionauth, cc: null, imp: 2, tier: 4, checks: [http] }
1960 + - { id: api-fusionauth-casdoor, name: "FusionAuth / Keycloak / Ory / Zitadel / Authelia casdoor", host: casdoor.org, cat: developer, provider: fusionauth, svc: fusionauth, cc: null, imp: 2, tier: 4, checks: [http] }
1961 + - { id: api-fusionauth-dex, name: "FusionAuth / Keycloak / Ory / Zitadel / Authelia dex", host: dexidp.io, cat: developer, provider: fusionauth, svc: fusionauth, cc: null, imp: 2, tier: 4, checks: [http] }
1962 + - { id: api-auth0-hosts-auth0-docs, name: "Auth0 / Okta hosts auth0 docs", host: auth0.com, url: "https://auth0.com/docs", cat: developer, provider: okta, svc: okta, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1963 + - { id: api-auth0-hosts-auth0-status, name: "Auth0 / Okta hosts auth0 status", host: status.auth0.com, cat: developer, provider: okta, svc: okta, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1964 + - { id: api-auth0-hosts-auth0-community, name: "Auth0 / Okta hosts auth0 community", host: community.auth0.com, cat: developer, provider: okta, svc: okta, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1965 + - { id: api-auth0-hosts-auth0-cdn, name: "Auth0 / Okta hosts auth0 cdn", host: cdn.auth0.com, url: "https://cdn.auth0.com/js/auth0/9.23.0/auth0.min.js", cat: developer, provider: okta, svc: okta, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1966 + - { id: api-auth0-hosts-auth0-manage, name: "Auth0 / Okta hosts auth0 manage", host: manage.auth0.com, cat: developer, provider: okta, svc: okta, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1967 + - { id: api-auth0-hosts-auth0-jwt, name: "Auth0 / Okta hosts auth0 jwt", host: jwt.io, cat: developer, provider: okta, svc: okta, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1968 + - { id: api-auth0-hosts-auth0-us, name: "Auth0 / Okta hosts auth0 us", host: us.auth0.com, url: "https://us.auth0.com/", cat: developer, provider: okta, svc: okta, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1969 + - { id: api-auth0-hosts-auth0-eu, name: "Auth0 / Okta hosts auth0 eu", host: eu.auth0.com, url: "https://eu.auth0.com/", cat: developer, provider: okta, svc: okta, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1970 + - { id: api-auth0-hosts-okta-developer, name: "Auth0 / Okta hosts okta developer", host: developer.okta.com, cat: developer, provider: okta, svc: okta, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1971 + - { id: api-auth0-hosts-okta-help, name: "Auth0 / Okta hosts okta help", host: help.okta.com, cat: developer, provider: okta, svc: okta, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1972 + - { id: api-auth0-hosts-okta-support, name: "Auth0 / Okta hosts okta support", host: support.okta.com, cat: developer, provider: okta, svc: okta, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1973 + - { id: api-auth0-hosts-okta-trust, name: "Auth0 / Okta hosts okta trust", host: trust.okta.com, cat: developer, provider: okta, svc: okta, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1974 + - { id: api-auth0-hosts-okta-login, name: "Auth0 / Okta hosts okta login", host: login.okta.com, cat: developer, provider: okta, svc: okta, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1975 + - { id: api-auth0-hosts-okta-cdn, name: "Auth0 / Okta hosts okta cdn", host: ok12static.oktacdn.com, url: "https://ok12static.oktacdn.com/", cat: developer, provider: okta, svc: okta, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1976 + - { id: api-auth0-hosts-okta-com, name: "Auth0 / Okta hosts okta com", host: okta.com, url: "https://okta.com/", cat: developer, provider: okta, svc: okta, cc: US, imp: 4, tier: 3, checks: [http, dns] }
1977 + - { id: api-ping-hosts-ping-docs, name: "Ping Identity / ForgeRock hosts ping docs", host: docs.pingidentity.com, cat: developer, provider: pingidentity, svc: pingidentity, cc: US, imp: 3, tier: 4, checks: [http] }
1978 + - { id: api-ping-hosts-ping-status, name: "Ping Identity / ForgeRock hosts ping status", host: status.pingidentity.com, cat: developer, provider: pingidentity, svc: pingidentity, cc: US, imp: 3, tier: 4, checks: [http] }
1979 + - { id: api-ping-hosts-ping-support, name: "Ping Identity / ForgeRock hosts ping support", host: support.pingidentity.com, cat: developer, provider: pingidentity, svc: pingidentity, cc: US, imp: 3, tier: 4, checks: [http] }
1980 + - { id: api-ping-hosts-ping-auth, name: "Ping Identity / ForgeRock hosts ping auth", host: auth.pingone.com, url: "https://auth.pingone.com/", cat: developer, provider: pingidentity, svc: pingidentity, cc: US, imp: 3, tier: 4, checks: [http] }
1981 + - { id: api-ping-hosts-ping-api, name: "Ping Identity / ForgeRock hosts ping api", host: api.pingone.com, url: "https://api.pingone.com/v1/", cat: developer, provider: pingidentity, svc: pingidentity, cc: US, imp: 3, tier: 4, checks: [http] }
1982 + - { id: api-ping-hosts-ping-eu, name: "Ping Identity / ForgeRock hosts ping eu", host: auth.pingone.eu, url: "https://auth.pingone.eu/", cat: developer, provider: pingidentity, svc: pingidentity, cc: US, imp: 3, tier: 4, checks: [http] }
1983 + - { id: api-ping-hosts-forgerock, name: "Ping Identity / ForgeRock hosts forgerock", host: www.forgerock.com, cat: developer, provider: pingidentity, svc: pingidentity, cc: US, imp: 3, tier: 4, checks: [http] }
1984 + - { id: api-ping-hosts-forgerock-backstage, name: "Ping Identity / ForgeRock hosts forgerock backstage", host: backstage.forgerock.com, cat: developer, provider: pingidentity, svc: pingidentity, cc: US, imp: 3, tier: 4, checks: [http] }
1985 + - { id: api-onelogin, name: "OneLogin (One Identity)", host: www.onelogin.com, cat: developer, provider: onelogin, cc: US, imp: 2, tier: 4, checks: [http] }
1986 + - { id: api-onelogin-status, name: "OneLogin (One Identity) status page", host: onelogin.statuspage.io, cat: developer, provider: onelogin, cc: US, imp: 2, tier: 4, checks: [http] }
1987 + - { id: api-onelogin-developers, name: "OneLogin (One Identity) developer portal", host: developers.onelogin.com, cat: developer, provider: onelogin, cc: US, imp: 2, tier: 4, checks: [http] }
1988 + - { id: api-onelogin-support, name: "OneLogin (One Identity) support", host: support.onelogin.com, cat: developer, provider: onelogin, cc: US, imp: 2, tier: 4, checks: [http] }
1989 + - { id: api-onelogin-api, name: "OneLogin (One Identity) API", host: api.us.onelogin.com, url: "https://api.us.onelogin.com/", cat: developer, provider: onelogin, cc: US, imp: 2, tier: 4, checks: [http] }
1990 + - { id: api-onelogin-oneidentity, name: "OneLogin (One Identity) oneidentity", host: www.oneidentity.com, cat: developer, provider: onelogin, cc: US, imp: 2, tier: 4, checks: [http] }
1991 + - { id: api-duo-hosts-status, name: "Cisco Duo hosts status page", host: status.duo.com, cat: developer, provider: duo, svc: duo, cc: US, imp: 3, tier: 4, checks: [http] }
1992 + - { id: api-duo-hosts-docs, name: "Cisco Duo hosts docs", host: duo.com, url: "https://duo.com/docs", cat: developer, provider: duo, svc: duo, cc: US, imp: 3, tier: 4, checks: [http] }
1993 + - { id: api-duo-hosts-help, name: "Cisco Duo hosts help centre", host: help.duo.com, cat: developer, provider: duo, svc: duo, cc: US, imp: 3, tier: 4, checks: [http] }
1994 + - { id: api-duo-hosts-api, name: "Cisco Duo hosts API", host: api-a1b2c3d4.duosecurity.com, url: "https://api-a1b2c3d4.duosecurity.com/", cat: developer, provider: duo, svc: duo, cc: US, imp: 3, tier: 4, checks: [http] }
1995 + - { id: api-duo-hosts-duosecurity, name: "Cisco Duo hosts duosecurity", host: duosecurity.com, url: "https://duosecurity.com/", cat: developer, provider: duo, svc: duo, cc: US, imp: 3, tier: 4, checks: [http] }
1996 + - { id: api-duo-hosts-cisco-secure, name: "Cisco Duo hosts cisco secure", host: www.cisco.com, url: "https://www.cisco.com/site/us/en/products/security/index.html", cat: developer, provider: duo, svc: duo, cc: US, imp: 3, tier: 4, checks: [http] }
1997 + - { id: api-yubico, name: "Yubico", host: www.yubico.com, cat: developer, provider: yubico, svc: yubico, cc: SE, imp: 3, tier: 4, checks: [http] }
1998 + - { id: api-yubico-status, name: "Yubico status page", host: status.yubico.com, cat: developer, provider: yubico, svc: yubico, cc: SE, imp: 3, tier: 4, checks: [http] }
1999 + - { id: api-yubico-developers, name: "Yubico developer portal", host: developers.yubico.com, cat: developer, provider: yubico, svc: yubico, cc: SE, imp: 3, tier: 4, checks: [http] }
2000 + - { id: api-yubico-docs, name: "Yubico docs", host: docs.yubico.com, cat: developer, provider: yubico, svc: yubico, cc: SE, imp: 3, tier: 4, checks: [http] }
2001 + - { id: api-yubico-api, name: "Yubico API", host: api.yubico.com, url: "https://api.yubico.com/wsapi/2.0/verify", cat: developer, provider: yubico, svc: yubico, cc: SE, imp: 3, tier: 4, checks: [http] }
2002 + - { id: api-yubico-support, name: "Yubico support", host: support.yubico.com, cat: developer, provider: yubico, svc: yubico, cc: SE, imp: 3, tier: 4, checks: [http] }
2003 + - { id: api-yubico-upgrade, name: "Yubico upgrade", host: upgrade.yubico.com, cat: developer, provider: yubico, svc: yubico, cc: SE, imp: 3, tier: 4, checks: [http] }
2004 + - { id: api-bitwarden-hosts-status, name: "Bitwarden hosts status page", host: status.bitwarden.com, cat: developer, provider: bitwarden, cc: US, imp: 3, tier: 4, checks: [http] }
2005 + - { id: api-bitwarden-hosts-api, name: "Bitwarden hosts API", host: api.bitwarden.com, url: "https://api.bitwarden.com/alive", cat: developer, provider: bitwarden, cc: US, imp: 3, tier: 4, checks: [http] }
2006 + - { id: api-bitwarden-hosts-vault, name: "Bitwarden hosts vault", host: vault.bitwarden.com, cat: developer, provider: bitwarden, cc: US, imp: 3, tier: 4, checks: [http] }
2007 + - { id: api-bitwarden-hosts-eu, name: "Bitwarden hosts eu", host: vault.bitwarden.eu, cat: developer, provider: bitwarden, cc: US, imp: 3, tier: 4, checks: [http] }
2008 + - { id: api-bitwarden-hosts-community, name: "Bitwarden hosts community", host: community.bitwarden.com, cat: developer, provider: bitwarden, cc: US, imp: 3, tier: 4, checks: [http] }
2009 + - { id: api-bitwarden-hosts-help, name: "Bitwarden hosts help centre", host: bitwarden.com, url: "https://bitwarden.com/help/", cat: developer, provider: bitwarden, cc: US, imp: 3, tier: 4, checks: [http] }
2010 + - { id: api-bitwarden-hosts-sends, name: "Bitwarden hosts sends", host: send.bitwarden.com, cat: developer, provider: bitwarden, cc: US, imp: 3, tier: 4, checks: [http] }
2011 + - { id: api-1password-hosts-status, name: "1Password hosts status page", host: status.1password.com, cat: developer, provider: 1password, svc: 1password, cc: CA, imp: 3, tier: 4, checks: [http] }
2012 + - { id: api-1password-hosts-support, name: "1Password hosts support", host: support.1password.com, cat: developer, provider: 1password, svc: 1password, cc: CA, imp: 3, tier: 4, checks: [http] }
2013 + - { id: api-1password-hosts-developer, name: "1Password hosts developer portal", host: developer.1password.com, cat: developer, provider: 1password, svc: 1password, cc: CA, imp: 3, tier: 4, checks: [http] }
2014 + - { id: api-1password-hosts-eu, name: "1Password hosts eu", host: my.1password.eu, url: "https://my.1password.eu/", cat: developer, provider: 1password, svc: 1password, cc: CA, imp: 3, tier: 4, checks: [http] }
2015 + - { id: api-1password-hosts-ca, name: "1Password hosts ca", host: my.1password.ca, url: "https://my.1password.ca/", cat: developer, provider: 1password, svc: 1password, cc: CA, imp: 3, tier: 4, checks: [http] }
2016 + - { id: api-1password-hosts-start, name: "1Password hosts start", host: start.1password.com, url: "https://start.1password.com/", cat: developer, provider: 1password, svc: 1password, cc: CA, imp: 3, tier: 4, checks: [http] }
2017 + - { id: api-1password-hosts-blog, name: "1Password hosts blog", host: blog.1password.com, cat: developer, provider: 1password, svc: 1password, cc: CA, imp: 3, tier: 4, checks: [http] }
2018 + - { id: api-1password-hosts-cache, name: "1Password hosts cache", host: cache.agilebits.com, url: "https://cache.agilebits.com/", cat: developer, provider: 1password, svc: 1password, cc: CA, imp: 3, tier: 4, checks: [http] }
2019 + - { id: api-lastpass-hosts-status, name: "LastPass hosts status page", host: status.lastpass.com, cat: developer, provider: lastpass, cc: US, imp: 3, tier: 4, checks: [http] }
2020 + - { id: api-lastpass-hosts-support, name: "LastPass hosts support", host: support.lastpass.com, cat: developer, provider: lastpass, cc: US, imp: 3, tier: 4, checks: [http] }
2021 + - { id: api-lastpass-hosts-lastpass, name: "LastPass hosts lastpass", host: lastpass.com, url: "https://lastpass.com/", cat: developer, provider: lastpass, cc: US, imp: 3, tier: 4, checks: [http] }
2022 + - { id: api-lastpass-hosts-eu, name: "LastPass hosts eu", host: lastpass.eu, url: "https://lastpass.eu/", cat: developer, provider: lastpass, cc: US, imp: 3, tier: 4, checks: [http] }
2023 + - { id: api-lastpass-hosts-blog, name: "LastPass hosts blog", host: blog.lastpass.com, cat: developer, provider: lastpass, cc: US, imp: 3, tier: 4, checks: [http] }
2024 + - { id: api-dashlane, name: "Dashlane", host: www.dashlane.com, cat: developer, provider: dashlane, svc: dashlane, cc: FR, imp: 2, tier: 4, checks: [http] }
2025 + - { id: api-dashlane-status, name: "Dashlane status page", host: status.dashlane.com, cat: developer, provider: dashlane, svc: dashlane, cc: FR, imp: 2, tier: 4, checks: [http] }
2026 + - { id: api-dashlane-support, name: "Dashlane support", host: support.dashlane.com, cat: developer, provider: dashlane, svc: dashlane, cc: FR, imp: 2, tier: 4, checks: [http] }
2027 + - { id: api-dashlane-api, name: "Dashlane API", host: api.dashlane.com, url: "https://api.dashlane.com/", cat: developer, provider: dashlane, svc: dashlane, cc: FR, imp: 2, tier: 4, checks: [http] }
2028 + - { id: api-dashlane-blog, name: "Dashlane blog", host: blog.dashlane.com, cat: developer, provider: dashlane, svc: dashlane, cc: FR, imp: 2, tier: 4, checks: [http] }
2029 + - { id: api-proton-pass-pass, name: "Proton hosts pass", host: proton.me, url: "https://proton.me/pass", cat: developer, provider: proton, svc: proton, cc: CH, imp: 3, tier: 4, checks: [http] }
2030 + - { id: api-proton-pass-status, name: "Proton hosts status page", host: status.proton.me, cat: developer, provider: proton, svc: proton, cc: CH, imp: 3, tier: 4, checks: [http] }
2031 + - { id: api-proton-pass-mail, name: "Proton hosts mail", host: mail.proton.me, url: "https://mail.proton.me/", cat: developer, provider: proton, svc: proton, cc: CH, imp: 3, tier: 4, checks: [http] }
2032 + - { id: api-proton-pass-api, name: "Proton hosts API", host: api.protonmail.ch, url: "https://api.protonmail.ch/tests/ping", cat: developer, provider: proton, svc: proton, cc: CH, imp: 3, tier: 4, checks: [http] }
2033 + - { id: api-proton-pass-pass-api, name: "Proton hosts pass api", host: pass.proton.me, url: "https://pass.proton.me/", cat: developer, provider: proton, svc: proton, cc: CH, imp: 3, tier: 4, checks: [http] }
2034 + - { id: api-proton-pass-drive, name: "Proton hosts drive", host: drive.proton.me, url: "https://drive.proton.me/", cat: developer, provider: proton, svc: proton, cc: CH, imp: 3, tier: 4, checks: [http] }
2035 + - { id: api-proton-pass-calendar, name: "Proton hosts calendar", host: calendar.proton.me, url: "https://calendar.proton.me/", cat: developer, provider: proton, svc: proton, cc: CH, imp: 3, tier: 4, checks: [http] }
2036 + - { id: api-proton-pass-vpn-api, name: "Proton hosts vpn api", host: api.protonvpn.ch, url: "https://api.protonvpn.ch/vpn/logicals", cat: developer, provider: proton, svc: proton, cc: CH, imp: 3, tier: 4, checks: [http] }
2037 + - { id: api-nordpass-nordpass, name: "NordPass / Keeper / RoboForm / Enpass / KeePass nordpass", host: nordpass.com, cat: developer, provider: nordsec, cc: null, imp: 2, tier: 4, checks: [http] }
2038 + - { id: api-nordpass-nordaccount, name: "NordPass / Keeper / RoboForm / Enpass / KeePass nordaccount", host: my.nordaccount.com, cat: developer, provider: nordsec, cc: null, imp: 2, tier: 4, checks: [http] }
2039 + - { id: api-nordpass-keeper, name: "NordPass / Keeper / RoboForm / Enpass / KeePass keeper", host: www.keepersecurity.com, cat: developer, provider: nordsec, cc: null, imp: 2, tier: 4, checks: [http] }
2040 + - { id: api-nordpass-keeper-status, name: "NordPass / Keeper / RoboForm / Enpass / KeePass keeper status", host: statuspage.keeper.io, cat: developer, provider: nordsec, cc: null, imp: 2, tier: 4, checks: [http] }
2041 + - { id: api-nordpass-keeper-docs, name: "NordPass / Keeper / RoboForm / Enpass / KeePass keeper docs", host: docs.keeper.io, cat: developer, provider: nordsec, cc: null, imp: 2, tier: 4, checks: [http] }
2042 + - { id: api-nordpass-roboform, name: "NordPass / Keeper / RoboForm / Enpass / KeePass roboform", host: www.roboform.com, cat: developer, provider: nordsec, cc: null, imp: 2, tier: 4, checks: [http] }
2043 + - { id: api-nordpass-enpass, name: "NordPass / Keeper / RoboForm / Enpass / KeePass enpass", host: www.enpass.io, cat: developer, provider: nordsec, cc: null, imp: 2, tier: 4, checks: [http] }
2044 + - { id: api-nordpass-keepass, name: "NordPass / Keeper / RoboForm / Enpass / KeePass keepass", host: keepass.info, cat: developer, provider: nordsec, cc: null, imp: 2, tier: 4, checks: [http] }
2045 + - { id: api-nordpass-keepassxc, name: "NordPass / Keeper / RoboForm / Enpass / KeePass keepassxc", host: keepassxc.org, cat: developer, provider: nordsec, cc: null, imp: 2, tier: 4, checks: [http] }
2046 + - { id: api-passkeys-fido, name: "Passkeys / FIDO / WebAuthn fido", host: fidoalliance.org, cat: developer, provider: fido, cc: null, imp: 2, tier: 4, checks: [http] }
2047 + - { id: api-passkeys-passkeys, name: "Passkeys / FIDO / WebAuthn passkeys", host: passkeys.dev, cat: developer, provider: fido, cc: null, imp: 2, tier: 4, checks: [http] }
2048 + - { id: api-passkeys-webauthn-io, name: "Passkeys / FIDO / WebAuthn webauthn io", host: webauthn.io, cat: developer, provider: fido, cc: null, imp: 2, tier: 4, checks: [http] }
2049 + - { id: api-passkeys-passkeys-directory, name: "Passkeys / FIDO / WebAuthn passkeys directory", host: passkeys.directory, cat: developer, provider: fido, cc: null, imp: 2, tier: 4, checks: [http] }
2050 + - { id: api-passkeys-webauthn-guide, name: "Passkeys / FIDO / WebAuthn webauthn guide", host: webauthn.guide, cat: developer, provider: fido, cc: null, imp: 2, tier: 4, checks: [http] }
2051 + - { id: api-passkeys-corbado, name: "Passkeys / FIDO / WebAuthn corbado", host: www.corbado.com, cat: developer, provider: fido, cc: null, imp: 2, tier: 4, checks: [http] }
2052 + - { id: api-passkeys-passage, name: "Passkeys / FIDO / WebAuthn passage", host: passage.1password.com, cat: developer, provider: fido, cc: null, imp: 2, tier: 4, checks: [http] }
2053 + - { id: api-passkeys-descope, name: "Passkeys / FIDO / WebAuthn descope", host: www.descope.com, cat: developer, provider: fido, cc: null, imp: 2, tier: 4, checks: [http] }
2054 + - { id: api-passkeys-descope-status, name: "Passkeys / FIDO / WebAuthn descope status", host: status.descope.com, cat: developer, provider: fido, cc: null, imp: 2, tier: 4, checks: [http] }
2055 + - { id: api-passkeys-descope-api, name: "Passkeys / FIDO / WebAuthn descope api", host: api.descope.com, url: "https://api.descope.com/v1/health", cat: developer, provider: fido, cc: null, imp: 2, tier: 4, checks: [http] }
2056 + - { id: api-passkeys-authsignal, name: "Passkeys / FIDO / WebAuthn authsignal", host: www.authsignal.com, cat: developer, provider: fido, cc: null, imp: 2, tier: 4, checks: [http] }
2057 + - { id: api-passkeys-beyond-identity, name: "Passkeys / FIDO / WebAuthn beyond identity", host: www.beyondidentity.com, cat: developer, provider: fido, cc: null, imp: 2, tier: 4, checks: [http] }
2058 + - { id: api-workos-workos, name: "WorkOS / Frontegg / PropelAuth / Cerbos workos", host: workos.com, cat: developer, provider: workos, svc: workos, cc: US, imp: 2, tier: 4, checks: [http] }
2059 + - { id: api-workos-workos-status, name: "WorkOS / Frontegg / PropelAuth / Cerbos workos status", host: status.workos.com, cat: developer, provider: workos, svc: workos, cc: US, imp: 2, tier: 4, checks: [http] }
2060 + - { id: api-workos-workos-api, name: "WorkOS / Frontegg / PropelAuth / Cerbos workos api", host: api.workos.com, url: "https://api.workos.com/", cat: developer, provider: workos, svc: workos, cc: US, imp: 2, tier: 4, checks: [http] }
2061 + - { id: api-workos-frontegg, name: "WorkOS / Frontegg / PropelAuth / Cerbos frontegg", host: frontegg.com, cat: developer, provider: workos, svc: workos, cc: US, imp: 2, tier: 4, checks: [http] }
2062 + - { id: api-workos-frontegg-status, name: "WorkOS / Frontegg / PropelAuth / Cerbos frontegg status", host: status.frontegg.com, cat: developer, provider: workos, svc: workos, cc: US, imp: 2, tier: 4, checks: [http] }
2063 + - { id: api-workos-propelauth, name: "WorkOS / Frontegg / PropelAuth / Cerbos propelauth", host: www.propelauth.com, cat: developer, provider: workos, svc: workos, cc: US, imp: 2, tier: 4, checks: [http] }
2064 + - { id: api-workos-cerbos, name: "WorkOS / Frontegg / PropelAuth / Cerbos cerbos", host: www.cerbos.dev, cat: developer, provider: workos, svc: workos, cc: US, imp: 2, tier: 4, checks: [http] }
2065 + - { id: api-workos-oso, name: "WorkOS / Frontegg / PropelAuth / Cerbos oso", host: www.osohq.com, cat: developer, provider: workos, svc: workos, cc: US, imp: 2, tier: 4, checks: [http] }
2066 + - { id: api-workos-permit, name: "WorkOS / Frontegg / PropelAuth / Cerbos permit", host: www.permit.io, cat: developer, provider: workos, svc: workos, cc: US, imp: 2, tier: 4, checks: [http] }
2067 + - { id: api-workos-aserto, name: "WorkOS / Frontegg / PropelAuth / Cerbos aserto", host: www.aserto.com, cat: developer, provider: workos, svc: workos, cc: US, imp: 2, tier: 4, checks: [http] }
2068 + - { id: api-workos-openfga, name: "WorkOS / Frontegg / PropelAuth / Cerbos openfga", host: openfga.dev, cat: developer, provider: workos, svc: workos, cc: US, imp: 2, tier: 4, checks: [http] }
2069 + - { id: api-mapbox-status, name: "Mapbox status page", host: status.mapbox.com, cat: developer, provider: mapbox, svc: mapbox, cc: US, imp: 4, tier: 3, checks: [http, dns] }
2070 + - { id: api-mapbox-docs, name: "Mapbox docs", host: docs.mapbox.com, cat: developer, provider: mapbox, svc: mapbox, cc: US, imp: 4, tier: 3, checks: [http, dns] }
2071 + - { id: api-mapbox-api, name: "Mapbox API", host: api.mapbox.com, url: "https://api.mapbox.com/", cat: developer, provider: mapbox, svc: mapbox, cc: US, imp: 4, tier: 3, checks: [http, dns] }
2072 + - { id: api-mapbox-events, name: "Mapbox events", host: events.mapbox.com, url: "https://events.mapbox.com/", cat: developer, provider: mapbox, svc: mapbox, cc: US, imp: 4, tier: 3, checks: [http, dns] }
2073 + - { id: api-mapbox-studio, name: "Mapbox studio", host: studio.mapbox.com, cat: developer, provider: mapbox, svc: mapbox, cc: US, imp: 4, tier: 3, checks: [http, dns] }
2074 + - { id: api-mapbox-blog, name: "Mapbox blog", host: blog.mapbox.com, cat: developer, provider: mapbox, svc: mapbox, cc: US, imp: 4, tier: 3, checks: [http, dns] }
2075 + - { id: api-mapbox-labs, name: "Mapbox labs", host: labs.mapbox.com, cat: developer, provider: mapbox, svc: mapbox, cc: US, imp: 4, tier: 3, checks: [http, dns] }
2076 + - { id: api-maplibre-maplibre-demotiles, name: "MapLibre / Leaflet / OpenLayers / deck.gl maplibre demotiles", host: demotiles.maplibre.org, url: "https://demotiles.maplibre.org/style.json", cat: developer, provider: maplibre, cc: null, imp: 3, tier: 4, checks: [http] }
2077 + - { id: api-maplibre-leaflet, name: "MapLibre / Leaflet / OpenLayers / deck.gl leaflet", host: leafletjs.com, cat: developer, provider: maplibre, cc: null, imp: 3, tier: 4, checks: [http] }
2078 + - { id: api-maplibre-openlayers, name: "MapLibre / Leaflet / OpenLayers / deck.gl openlayers", host: openlayers.org, cat: developer, provider: maplibre, cc: null, imp: 3, tier: 4, checks: [http] }
2079 + - { id: api-maplibre-deckgl, name: "MapLibre / Leaflet / OpenLayers / deck.gl deckgl", host: deck.gl, cat: developer, provider: maplibre, cc: null, imp: 3, tier: 4, checks: [http] }
2080 + - { id: api-maplibre-cesium, name: "MapLibre / Leaflet / OpenLayers / deck.gl cesium", host: cesium.com, cat: developer, provider: maplibre, cc: null, imp: 3, tier: 4, checks: [http] }
2081 + - { id: api-maplibre-cesium-ion, name: "MapLibre / Leaflet / OpenLayers / deck.gl cesium ion", host: ion.cesium.com, cat: developer, provider: maplibre, cc: null, imp: 3, tier: 4, checks: [http] }
2082 + - { id: api-maplibre-cesium-status, name: "MapLibre / Leaflet / OpenLayers / deck.gl cesium status", host: status.cesium.com, cat: developer, provider: maplibre, cc: null, imp: 3, tier: 4, checks: [http] }
2083 + - { id: api-maplibre-kepler, name: "MapLibre / Leaflet / OpenLayers / deck.gl kepler", host: kepler.gl, cat: developer, provider: maplibre, cc: null, imp: 3, tier: 4, checks: [http] }
2084 + - { id: api-maplibre-turf, name: "MapLibre / Leaflet / OpenLayers / deck.gl turf", host: turfjs.org, cat: developer, provider: maplibre, cc: null, imp: 3, tier: 4, checks: [http] }
2085 + - { id: api-maptiler-status, name: "MapTiler status page", host: status.maptiler.com, cat: developer, provider: maptiler, cc: CH, imp: 3, tier: 4, checks: [http] }
2086 + - { id: api-maptiler-docs, name: "MapTiler docs", host: docs.maptiler.com, cat: developer, provider: maptiler, cc: CH, imp: 3, tier: 4, checks: [http] }
2087 + - { id: api-maptiler-api, name: "MapTiler API", host: api.maptiler.com, url: "https://api.maptiler.com/", cat: developer, provider: maptiler, cc: CH, imp: 3, tier: 4, checks: [http] }
2088 + - { id: api-maptiler-cloud, name: "MapTiler cloud", host: cloud.maptiler.com, cat: developer, provider: maptiler, cc: CH, imp: 3, tier: 4, checks: [http] }
2089 + - { id: api-maptiler-data, name: "MapTiler data", host: data.maptiler.com, cat: developer, provider: maptiler, cc: CH, imp: 3, tier: 4, checks: [http] }
2090 + - { id: api-maptiler-openmaptiles, name: "MapTiler openmaptiles", host: openmaptiles.org, cat: developer, provider: maptiler, cc: CH, imp: 3, tier: 4, checks: [http] }
2091 + - { id: api-here-status, name: "HERE Technologies status page", host: status.here.com, cat: developer, provider: here, cc: NL, imp: 3, tier: 4, checks: [http] }
2092 + - { id: api-here-developer, name: "HERE Technologies developer portal", host: developer.here.com, cat: developer, provider: here, cc: NL, imp: 3, tier: 4, checks: [http] }
2093 + - { id: api-here-platform, name: "HERE Technologies platform", host: platform.here.com, cat: developer, provider: here, cc: NL, imp: 3, tier: 4, checks: [http] }
2094 + - { id: api-here-api, name: "HERE Technologies API", host: router.hereapi.com, url: "https://router.hereapi.com/v8/routes", cat: developer, provider: here, cc: NL, imp: 3, tier: 4, checks: [http] }
2095 + - { id: api-here-geocode, name: "HERE Technologies geocode", host: geocode.search.hereapi.com, url: "https://geocode.search.hereapi.com/v1/geocode?q=Montreal", cat: developer, provider: here, cc: NL, imp: 3, tier: 4, checks: [http] }
2096 + - { id: api-here-tiles, name: "HERE Technologies tiles", host: maps.hereapi.com, url: "https://maps.hereapi.com/v3/base/mc/1/1/1/png8", cat: developer, provider: here, cc: NL, imp: 3, tier: 4, checks: [http] }
2097 + - { id: api-tomtom-developer, name: "TomTom developer portal", host: developer.tomtom.com, cat: developer, provider: tomtom, cc: NL, imp: 3, tier: 4, checks: [http] }
2098 + - { id: api-tomtom-status, name: "TomTom status page", host: status.tomtom.com, cat: developer, provider: tomtom, cc: NL, imp: 3, tier: 4, checks: [http] }
2099 + - { id: api-tomtom-api, name: "TomTom API", host: api.tomtom.com, url: "https://api.tomtom.com/search/2/geocode/Montreal.json", cat: developer, provider: tomtom, cc: NL, imp: 3, tier: 4, checks: [http] }
2100 + - { id: api-tomtom-mydrive, name: "TomTom mydrive", host: mydrive.tomtom.com, cat: developer, provider: tomtom, cc: NL, imp: 3, tier: 4, checks: [http] }
2101 + - { id: api-tomtom-plan, name: "TomTom plan", host: plan.tomtom.com, cat: developer, provider: tomtom, cc: NL, imp: 3, tier: 4, checks: [http] }
2102 + - { id: api-google-maps-platform-mapsplatform, name: "Google Maps Platform mapsplatform", host: mapsplatform.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
2103 + - { id: api-google-maps-platform-developers, name: "Google Maps Platform developer portal", host: developers.google.com, url: "https://developers.google.com/maps", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
2104 + - { id: api-google-maps-platform-maps-api, name: "Google Maps Platform maps api", host: maps.googleapis.com, url: "https://maps.googleapis.com/maps/api/geocode/json?address=Montreal", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
2105 + - { id: api-google-maps-platform-maps-www, name: "Google Maps Platform maps www", host: www.google.com, url: "https://www.google.com/maps", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
2106 + - { id: api-google-maps-platform-maps-goo, name: "Google Maps Platform maps goo", host: maps.app.goo.gl, url: "https://maps.app.goo.gl/", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
2107 + - { id: api-google-maps-platform-earth, name: "Google Maps Platform earth", host: earth.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
2108 + - { id: api-google-maps-platform-earthengine, name: "Google Maps Platform earthengine", host: earthengine.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
2109 + - { id: api-google-maps-platform-roads, name: "Google Maps Platform roads", host: roads.googleapis.com, url: "https://roads.googleapis.com/v1/snapToRoads", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
2110 + - { id: api-google-maps-platform-places, name: "Google Maps Platform places", host: places.googleapis.com, url: "https://places.googleapis.com/v1/places:searchText", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
2111 + - { id: api-apple-maps-mapkit-js, name: "Apple MapKit / Bing Maps / Azure Maps mapkit js", host: cdn.apple-mapkit.com, url: "https://cdn.apple-mapkit.com/mk/5.x.x/mapkit.js", cat: developer, provider: apple, svc: apple, cc: US, imp: 3, tier: 4, checks: [http] }
2112 + - { id: api-apple-maps-apple-maps-web, name: "Apple MapKit / Bing Maps / Azure Maps apple maps web", host: maps.apple.com, url: "https://maps.apple.com/", cat: developer, provider: apple, svc: apple, cc: US, imp: 3, tier: 4, checks: [http] }
2113 + - { id: api-apple-maps-atlas, name: "Apple MapKit / Bing Maps / Azure Maps atlas", host: atlas.microsoft.com, url: "https://atlas.microsoft.com/", cat: developer, provider: apple, svc: apple, cc: US, imp: 3, tier: 4, checks: [http] }
2114 + - { id: api-apple-maps-bing-maps, name: "Apple MapKit / Bing Maps / Azure Maps bing maps", host: www.bingmapsportal.com, cat: developer, provider: apple, svc: apple, cc: US, imp: 3, tier: 4, checks: [http] }
2115 + - { id: api-apple-maps-bing-dev, name: "Apple MapKit / Bing Maps / Azure Maps bing dev", host: dev.virtualearth.net, url: "https://dev.virtualearth.net/REST/v1/Locations?q=Montreal", cat: developer, provider: apple, svc: apple, cc: US, imp: 3, tier: 4, checks: [http] }
2116 + - { id: api-apple-maps-bing-maps-www, name: "Apple MapKit / Bing Maps / Azure Maps bing maps www", host: www.bing.com, url: "https://www.bing.com/maps", cat: developer, provider: apple, svc: apple, cc: US, imp: 3, tier: 4, checks: [http] }
2117 + - { id: api-openstreetmap-api, name: "OpenStreetMap API", host: api.openstreetmap.org, url: "https://api.openstreetmap.org/api/0.6/capabilities", cat: developer, provider: osmf, cc: GB, imp: 4, tier: 2, checks: [http, dns] }
2118 + - { id: api-openstreetmap-tile, name: "OpenStreetMap tile", host: tile.openstreetmap.org, url: "https://tile.openstreetmap.org/0/0/0.png", cat: developer, provider: osmf, cc: GB, imp: 4, tier: 2, checks: [http, dns] }
2119 + - { id: api-openstreetmap-tile-a, name: "OpenStreetMap tile a", host: a.tile.openstreetmap.org, url: "https://a.tile.openstreetmap.org/1/1/1.png", cat: developer, provider: osmf, cc: GB, imp: 4, tier: 3, checks: [http, dns] }
2120 + - { id: api-openstreetmap-nominatim, name: "OpenStreetMap Nominatim", host: nominatim.openstreetmap.org, url: "https://nominatim.openstreetmap.org/status", cat: developer, provider: osmf, cc: GB, imp: 4, tier: 2, checks: [http, dns] }
2121 + - { id: api-openstreetmap-wiki, name: "OpenStreetMap wiki", host: wiki.openstreetmap.org, cat: developer, provider: osmf, cc: GB, imp: 4, tier: 3, checks: [http, dns] }
2122 + - { id: api-openstreetmap-planet, name: "OpenStreetMap planet", host: planet.openstreetmap.org, url: "https://planet.openstreetmap.org/", cat: developer, provider: osmf, cc: GB, imp: 4, tier: 3, checks: [http, dns] }
2123 + - { id: api-openstreetmap-osmf, name: "OpenStreetMap osmf", host: osmfoundation.org, cat: developer, provider: osmf, cc: GB, imp: 4, tier: 3, checks: [http, dns] }
2124 + - { id: api-openstreetmap-overpass, name: "OpenStreetMap overpass", host: overpass-api.de, url: "https://overpass-api.de/api/status", cat: developer, provider: osmf, cc: GB, imp: 4, tier: 2, checks: [http, dns] }
2125 + - { id: api-openstreetmap-overpass-kumi, name: "OpenStreetMap overpass kumi", host: overpass.kumi.systems, url: "https://overpass.kumi.systems/api/status", cat: developer, provider: osmf, cc: GB, imp: 4, tier: 3, checks: [http, dns] }
2126 + - { id: api-openstreetmap-taginfo, name: "OpenStreetMap taginfo", host: taginfo.openstreetmap.org, url: "https://taginfo.openstreetmap.org/api/4/key/stats?key=highway", cat: developer, provider: osmf, cc: GB, imp: 4, tier: 3, checks: [http, dns] }
2127 + - { id: api-openstreetmap-osmcha, name: "OpenStreetMap osmcha", host: osmcha.org, cat: developer, provider: osmf, cc: GB, imp: 4, tier: 3, checks: [http, dns] }
2128 + - { id: api-openstreetmap-community, name: "OpenStreetMap community", host: community.openstreetmap.org, cat: developer, provider: osmf, cc: GB, imp: 4, tier: 3, checks: [http, dns] }
2129 + - { id: api-openstreetmap-geofabrik, name: "OpenStreetMap geofabrik", host: download.geofabrik.de, url: "https://download.geofabrik.de/index-v1-nogeom.json", cat: developer, provider: osmf, cc: GB, imp: 4, tier: 3, checks: [http, dns] }
2130 + - { id: api-openstreetmap-osm-fr, name: "OpenStreetMap osm fr", host: tile.openstreetmap.fr, url: "https://tile.openstreetmap.fr/hot/1/1/1.png", cat: developer, provider: osmf, cc: GB, imp: 4, tier: 3, checks: [http, dns] }
2131 + - { id: api-openstreetmap-osm-de, name: "OpenStreetMap osm de", host: tile.openstreetmap.de, url: "https://tile.openstreetmap.de/1/1/1.png", cat: developer, provider: osmf, cc: GB, imp: 4, tier: 3, checks: [http, dns] }
2132 + - { id: api-openstreetmap-opentopomap, name: "OpenStreetMap opentopomap", host: a.tile.opentopomap.org, url: "https://a.tile.opentopomap.org/1/1/1.png", cat: developer, provider: osmf, cc: GB, imp: 4, tier: 2, checks: [http, dns] }
2133 + - { id: api-openstreetmap-cyclosm, name: "OpenStreetMap cyclosm", host: a.tile-cyclosm.openstreetmap.fr, url: "https://a.tile-cyclosm.openstreetmap.fr/cyclosm/1/1/1.png", cat: developer, provider: osmf, cc: GB, imp: 4, tier: 2, checks: [http, dns] }
2134 + - { id: api-openstreetmap-photon, name: "OpenStreetMap photon", host: photon.komoot.io, url: "https://photon.komoot.io/api/?q=Montreal&limit=1", cat: developer, provider: osmf, cc: GB, imp: 4, tier: 2, checks: [http, dns] }
2135 + - { id: api-openstreetmap-osrm, name: "OpenStreetMap osrm", host: router.project-osrm.org, url: "https://router.project-osrm.org/route/v1/driving/-73.6,45.5;-73.5,45.5", cat: developer, provider: osmf, cc: GB, imp: 4, tier: 2, checks: [http, dns] }
2136 + - { id: api-openstreetmap-graphhopper, name: "OpenStreetMap graphhopper", host: graphhopper.com, cat: developer, provider: osmf, cc: GB, imp: 4, tier: 3, checks: [http, dns] }
2137 + - { id: api-openstreetmap-openrouteservice, name: "OpenStreetMap openrouteservice", host: openrouteservice.org, cat: developer, provider: osmf, cc: GB, imp: 4, tier: 3, checks: [http, dns] }
2138 + - { id: api-openstreetmap-valhalla, name: "OpenStreetMap valhalla", host: valhalla.openstreetmap.de, url: "https://valhalla.openstreetmap.de/status", cat: developer, provider: osmf, cc: GB, imp: 4, tier: 2, checks: [http, dns] }
2139 + - { id: api-protomaps-protomaps, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto protomaps", host: protomaps.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2140 + - { id: api-protomaps-protomaps-api, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto protomaps api", host: api.protomaps.com, url: "https://api.protomaps.com/", cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2141 + - { id: api-protomaps-protomaps-docs, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto protomaps docs", host: docs.protomaps.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2142 + - { id: api-protomaps-protomaps-builds, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto protomaps builds", host: build.protomaps.com, url: "https://build.protomaps.com/", cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2143 + - { id: api-protomaps-stadia, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto stadia", host: stadiamaps.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2144 + - { id: api-protomaps-stadia-status, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto stadia status", host: status.stadiamaps.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2145 + - { id: api-protomaps-stadia-tiles, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto stadia tiles", host: tiles.stadiamaps.com, url: "https://tiles.stadiamaps.com/tiles/alidade_smooth/1/1/1.png", cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2146 + - { id: api-protomaps-stadia-docs, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto stadia docs", host: docs.stadiamaps.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2147 + - { id: api-protomaps-openfreemap, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto openfreemap", host: openfreemap.org, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2148 + - { id: api-protomaps-openfreemap-tiles, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto openfreemap tiles", host: tiles.openfreemap.org, url: "https://tiles.openfreemap.org/styles/liberty", cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2149 + - { id: api-protomaps-thunderforest, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto thunderforest", host: www.thunderforest.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2150 + - { id: api-protomaps-carto, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto carto", host: carto.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2151 + - { id: api-protomaps-carto-status, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto carto status", host: status.carto.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2152 + - { id: api-protomaps-carto-basemaps, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto carto basemaps", host: basemaps.cartocdn.com, url: "https://basemaps.cartocdn.com/light_all/1/1/1.png", cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2153 + - { id: api-protomaps-carto-a, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto carto a", host: a.basemaps.cartocdn.com, url: "https://a.basemaps.cartocdn.com/rastertiles/voyager/1/1/1.png", cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2154 + - { id: api-protomaps-esri, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto esri", host: www.esri.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2155 + - { id: api-protomaps-esri-status, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto esri status", host: status.arcgis.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2156 + - { id: api-protomaps-arcgis, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto arcgis", host: www.arcgis.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2157 + - { id: api-protomaps-arcgis-services, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto arcgis services", host: services.arcgisonline.com, url: "https://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer?f=pjson", cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2158 + - { id: api-protomaps-arcgis-developers, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto arcgis developers", host: developers.arcgis.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2159 + - { id: api-protomaps-arcgis-basemaps, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto arcgis basemaps", host: basemaps.arcgis.com, url: "https://basemaps.arcgis.com/arcgis/rest/services/World_Basemap_v2/VectorTileServer?f=pjson", cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2160 + - { id: api-protomaps-arcgis-geocode, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto arcgis geocode", host: geocode.arcgis.com, url: "https://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer?f=pjson", cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2161 + - { id: api-protomaps-mapzen, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto mapzen", host: www.mapzen.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2162 + - { id: api-protomaps-jawg, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto jawg", host: www.jawg.io, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2163 + - { id: api-protomaps-locationiq, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto locationiq", host: locationiq.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2164 + - { id: api-protomaps-locationiq-status, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto locationiq status", host: status.locationiq.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2165 + - { id: api-protomaps-geoapify, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto geoapify", host: www.geoapify.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2166 + - { id: api-protomaps-opencage, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto opencage", host: opencagedata.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2167 + - { id: api-protomaps-opencage-status, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto opencage status", host: status.opencagedata.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2168 + - { id: api-protomaps-positionstack, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto positionstack", host: positionstack.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2169 + - { id: api-protomaps-radar, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto radar", host: radar.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2170 + - { id: api-protomaps-radar-status, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto radar status", host: status.radar.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2171 + - { id: api-protomaps-smarty, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto smarty", host: www.smarty.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2172 + - { id: api-protomaps-smarty-status, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto smarty status", host: status.smarty.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2173 + - { id: api-protomaps-loqate, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto loqate", host: www.loqate.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2174 + - { id: api-protomaps-mapquest, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto mapquest", host: developer.mapquest.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2175 + - { id: api-protomaps-foursquare-status, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto foursquare status", host: status.foursquare.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2176 + - { id: api-protomaps-foursquare-dev, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto foursquare dev", host: docs.foursquare.com, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2177 + - { id: api-protomaps-placekey, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto placekey", host: www.placekey.io, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2178 + - { id: api-protomaps-overture, name: "Protomaps / Stadia / OpenFreeMap / Thunderforest / Carto overture", host: overturemaps.org, cat: developer, provider: protomaps, cc: null, imp: 3, tier: 4, checks: [http] }
2179 + - { id: api-geo-data-usgs-earthquake, name: "Geo & satellite data APIs usgs earthquake", host: earthquake.usgs.gov, url: "https://earthquake.usgs.gov/fdsnws/event/1/query?format=geojson&limit=1", cat: developer, provider: usgs, cc: null, imp: 2, tier: 4, checks: [http] }
2180 + - { id: api-geo-data-usgs-water, name: "Geo & satellite data APIs usgs water", host: waterservices.usgs.gov, url: "https://waterservices.usgs.gov/nwis/iv/?format=json&sites=01646500", cat: developer, provider: usgs, cc: null, imp: 2, tier: 4, checks: [http] }
2181 + - { id: api-geo-data-nasa-api, name: "Geo & satellite data APIs nasa api", host: api.nasa.gov, url: "https://api.nasa.gov/planetary/apod?api_key=DEMO_KEY", cat: developer, provider: usgs, cc: null, imp: 2, tier: 4, checks: [http] }
2182 + - { id: api-geo-data-nasa-gibs, name: "Geo & satellite data APIs nasa gibs", host: gibs.earthdata.nasa.gov, url: "https://gibs.earthdata.nasa.gov/wmts/epsg4326/best/wmts.cgi?SERVICE=WMTS&REQUEST=GetCapabilities", cat: developer, provider: usgs, cc: null, imp: 2, tier: 4, checks: [http] }
2183 + - { id: api-geo-data-nasa-eonet, name: "Geo & satellite data APIs nasa eonet", host: eonet.gsfc.nasa.gov, url: "https://eonet.gsfc.nasa.gov/api/v3/events?limit=1", cat: developer, provider: usgs, cc: null, imp: 2, tier: 4, checks: [http] }
2184 + - { id: api-geo-data-nasa-earthdata, name: "Geo & satellite data APIs nasa earthdata", host: earthdata.nasa.gov, cat: developer, provider: usgs, cc: null, imp: 2, tier: 4, checks: [http] }
2185 + - { id: api-geo-data-copernicus-catalog, name: "Geo & satellite data APIs copernicus catalog", host: catalogue.dataspace.copernicus.eu, url: "https://catalogue.dataspace.copernicus.eu/stac/", cat: developer, provider: usgs, cc: null, imp: 2, tier: 4, checks: [http] }
2186 + - { id: api-geo-data-sentinelhub-status, name: "Geo & satellite data APIs sentinelhub status", host: status.sentinel-hub.com, cat: developer, provider: usgs, cc: null, imp: 2, tier: 4, checks: [http] }
2187 + - { id: api-geo-data-planet-labs, name: "Geo & satellite data APIs planet labs", host: www.planet.com, cat: developer, provider: usgs, cc: null, imp: 2, tier: 4, checks: [http] }
2188 + - { id: api-geo-data-planet-api, name: "Geo & satellite data APIs planet api", host: api.planet.com, url: "https://api.planet.com/", cat: developer, provider: usgs, cc: null, imp: 2, tier: 4, checks: [http] }
2189 + - { id: api-geo-data-maxar, name: "Geo & satellite data APIs maxar", host: www.maxar.com, cat: developer, provider: usgs, cc: null, imp: 2, tier: 4, checks: [http] }
2190 + - { id: api-geo-data-maxar-status, name: "Geo & satellite data APIs maxar status", host: status.maxar.com, cat: developer, provider: usgs, cc: null, imp: 2, tier: 4, checks: [http] }
2191 + - { id: api-geo-data-eox, name: "Geo & satellite data APIs eox", host: s2maps.eu, url: "https://s2maps.eu/", cat: developer, provider: usgs, cc: null, imp: 2, tier: 4, checks: [http] }
2192 + - { id: api-geo-data-planetarycomputer, name: "Geo & satellite data APIs planetarycomputer", host: planetarycomputer.microsoft.com, cat: developer, provider: usgs, cc: null, imp: 2, tier: 4, checks: [http] }
2193 + - { id: api-geo-data-earth-search, name: "Geo & satellite data APIs earth search", host: earth-search.aws.element84.com, url: "https://earth-search.aws.element84.com/v1/collections", cat: developer, provider: usgs, cc: null, imp: 2, tier: 4, checks: [http] }
2194 + - { id: api-geo-data-stac-index, name: "Geo & satellite data APIs stac index", host: stacindex.org, cat: developer, provider: usgs, cc: null, imp: 2, tier: 4, checks: [http] }
2195 + - { id: api-geo-data-gbif, name: "Geo & satellite data APIs gbif", host: api.gbif.org, url: "https://api.gbif.org/v1/occurrence/search?limit=1", cat: developer, provider: usgs, cc: null, imp: 2, tier: 4, checks: [http] }
2196 + - { id: api-geo-data-gbif-www, name: "Geo & satellite data APIs gbif www", host: www.gbif.org, cat: developer, provider: usgs, cc: null, imp: 2, tier: 4, checks: [http] }
2197 + - { id: api-geo-data-naturalearth, name: "Geo & satellite data APIs naturalearth", host: www.naturalearthdata.com, cat: developer, provider: usgs, cc: null, imp: 2, tier: 4, checks: [http] }
2198 + - { id: api-geo-data-geonames, name: "Geo & satellite data APIs geonames", host: www.geonames.org, cat: developer, provider: usgs, cc: null, imp: 2, tier: 4, checks: [http] }
2199 + - { id: api-geo-data-geonames-api, name: "Geo & satellite data APIs geonames api", host: secure.geonames.org, url: "https://secure.geonames.org/countryInfoJSON?username=demo", cat: developer, provider: usgs, cc: null, imp: 2, tier: 4, checks: [http] }
2200 + - { id: api-geo-data-geojson-io, name: "Geo & satellite data APIs geojson io", host: geojson.io, cat: developer, provider: usgs, cc: null, imp: 2, tier: 4, checks: [http] }
2201 + - { id: api-geo-data-iss-now, name: "Geo & satellite data APIs iss now", host: api.open-notify.org, url: "http://api.open-notify.org/iss-now.json", cat: developer, provider: usgs, cc: null, imp: 2, tier: 4, checks: [http] }
2202 + - { id: api-geo-data-wheretheiss, name: "Geo & satellite data APIs wheretheiss", host: api.wheretheiss.at, url: "https://api.wheretheiss.at/v1/satellites/25544", cat: developer, provider: usgs, cc: null, imp: 2, tier: 4, checks: [http] }
2203 + - { id: api-geo-data-adsb-lol, name: "Geo & satellite data APIs adsb lol", host: api.adsb.lol, url: "https://api.adsb.lol/v2/lat/45.5/lon/-73.6/dist/50", cat: developer, provider: usgs, cc: null, imp: 2, tier: 4, checks: [http] }
2204 + - { id: api-geo-data-aisstream, name: "Geo & satellite data APIs aisstream", host: aisstream.io, cat: developer, provider: usgs, cc: null, imp: 2, tier: 4, checks: [http] }
2205 + - { id: api-open-meteo-api, name: "Open-Meteo API", host: api.open-meteo.com, url: "https://api.open-meteo.com/v1/forecast?latitude=45.5&longitude=-73.6&current=temperature_2m", cat: developer, provider: open-meteo, cc: DE, imp: 3, tier: 4, checks: [http] }
2206 + - { id: api-open-meteo-geocoding, name: "Open-Meteo geocoding", host: geocoding-api.open-meteo.com, url: "https://geocoding-api.open-meteo.com/v1/search?name=Montreal&count=1", cat: developer, provider: open-meteo, cc: DE, imp: 3, tier: 4, checks: [http] }
2207 + - { id: api-open-meteo-archive, name: "Open-Meteo archive", host: archive-api.open-meteo.com, url: "https://archive-api.open-meteo.com/v1/archive?latitude=45.5&longitude=-73.6&start_date=2024-01-01&end_date=2024-01-02&daily=temperature_2m_max", cat: developer, provider: open-meteo, cc: DE, imp: 3, tier: 4, checks: [http] }
2208 + - { id: api-open-meteo-air, name: "Open-Meteo air", host: air-quality-api.open-meteo.com, url: "https://air-quality-api.open-meteo.com/v1/air-quality?latitude=45.5&longitude=-73.6&current=pm2_5", cat: developer, provider: open-meteo, cc: DE, imp: 3, tier: 4, checks: [http] }
2209 + - { id: api-open-meteo-marine, name: "Open-Meteo marine", host: marine-api.open-meteo.com, url: "https://marine-api.open-meteo.com/v1/marine?latitude=54.5&longitude=10.2&current=wave_height", cat: developer, provider: open-meteo, cc: DE, imp: 3, tier: 4, checks: [http] }
2210 + - { id: api-weather-apis-openweathermap-api, name: "Weather APIs openweathermap api", host: api.openweathermap.org, url: "https://api.openweathermap.org/data/2.5/weather?q=Montreal", cat: developer, provider: openweathermap, cc: null, imp: 3, tier: 4, checks: [http] }
2211 + - { id: api-weather-apis-weatherapi-api, name: "Weather APIs weatherapi api", host: api.weatherapi.com, url: "https://api.weatherapi.com/v1/current.json?q=Montreal", cat: developer, provider: openweathermap, cc: null, imp: 3, tier: 4, checks: [http] }
2212 + - { id: api-weather-apis-tomorrow-api, name: "Weather APIs tomorrow api", host: api.tomorrow.io, url: "https://api.tomorrow.io/v4/weather/realtime?location=Montreal", cat: developer, provider: openweathermap, cc: null, imp: 3, tier: 4, checks: [http] }
2213 + - { id: api-weather-apis-met-no, name: "Weather APIs met no", host: api.met.no, url: "https://api.met.no/weatherapi/locationforecast/2.0/status", cat: developer, provider: openweathermap, cc: null, imp: 3, tier: 4, checks: [http] }
2214 + - { id: api-weather-apis-weather-gov, name: "Weather APIs weather gov", host: api.weather.gov, url: "https://api.weather.gov/points/45.5,-73.6", cat: developer, provider: openweathermap, cc: null, imp: 3, tier: 4, checks: [http] }
2215 + - { id: api-weather-apis-eccc-geomet, name: "Weather APIs eccc geomet", host: api.weather.gc.ca, url: "https://api.weather.gc.ca/collections", cat: developer, provider: openweathermap, cc: null, imp: 3, tier: 4, checks: [http] }
2216 + - { id: api-weather-apis-eccc-dd, name: "Weather APIs eccc dd", host: dd.weather.gc.ca, url: "https://dd.weather.gc.ca/", cat: developer, provider: openweathermap, cc: null, imp: 3, tier: 4, checks: [http] }
2217 + - { id: api-weather-apis-dwd-opendata, name: "Weather APIs dwd opendata", host: opendata.dwd.de, url: "https://opendata.dwd.de/", cat: developer, provider: openweathermap, cc: null, imp: 3, tier: 4, checks: [http] }
2218 + - { id: api-weather-apis-ecmwf-opendata, name: "Weather APIs ecmwf opendata", host: data.ecmwf.int, url: "https://data.ecmwf.int/forecasts/", cat: developer, provider: openweathermap, cc: null, imp: 3, tier: 4, checks: [http] }
2219 + - { id: api-weather-apis-noaa-tides, name: "Weather APIs noaa tides", host: api.tidesandcurrents.noaa.gov, url: "https://api.tidesandcurrents.noaa.gov/api/prod/datagetter?product=predictions&station=8518750&date=today&datum=MLLW&time_zone=gmt&units=metric&format=json", cat: developer, provider: openweathermap, cc: null, imp: 3, tier: 4, checks: [http] }
2220 + - { id: api-weather-apis-noaa-swpc, name: "Weather APIs noaa swpc", host: services.swpc.noaa.gov, url: "https://services.swpc.noaa.gov/json/planetary_k_index_1m.json", cat: developer, provider: openweathermap, cc: null, imp: 3, tier: 4, checks: [http] }
2221 + - { id: api-weather-apis-aviationweather, name: "Weather APIs aviationweather", host: aviationweather.gov, url: "https://aviationweather.gov/api/data/metar?ids=CYUL&format=json", cat: developer, provider: openweathermap, cc: null, imp: 3, tier: 4, checks: [http] }
2222 + - { id: api-weather-apis-windy-api, name: "Weather APIs windy api", host: api.windy.com, cat: developer, provider: openweathermap, cc: null, imp: 3, tier: 4, checks: [http] }
2223 + - { id: api-weather-apis-accuweather-dev, name: "Weather APIs accuweather dev", host: developer.accuweather.com, cat: developer, provider: openweathermap, cc: null, imp: 3, tier: 4, checks: [http] }
2224 + - { id: api-weather-apis-pirate-weather, name: "Weather APIs pirate weather", host: pirateweather.net, cat: developer, provider: openweathermap, cc: null, imp: 3, tier: 4, checks: [http] }
2225 + - { id: api-weather-apis-brightsky, name: "Weather APIs brightsky", host: api.brightsky.dev, url: "https://api.brightsky.dev/current_weather?lat=52&lon=13", cat: developer, provider: openweathermap, cc: null, imp: 3, tier: 4, checks: [http] }
2226 + - { id: api-weather-apis-7timer, name: "Weather APIs 7timer", host: www.7timer.info, url: "https://www.7timer.info/bin/astro.php?lon=-73.6&lat=45.5&output=json", cat: developer, provider: openweathermap, cc: null, imp: 3, tier: 4, checks: [http] }
2227 + - { id: api-weather-apis-waqi, name: "Weather APIs waqi", host: api.waqi.info, url: "https://api.waqi.info/feed/montreal/?token=demo", cat: developer, provider: openweathermap, cc: null, imp: 3, tier: 4, checks: [http] }
2228 + - { id: api-weather-apis-openaq, name: "Weather APIs openaq", host: api.openaq.org, url: "https://api.openaq.org/v3/locations?limit=1", cat: developer, provider: openweathermap, cc: null, imp: 3, tier: 4, checks: [http] }
2229 + - { id: api-weather-apis-purpleair, name: "Weather APIs purpleair", host: www2.purpleair.com, cat: developer, provider: openweathermap, cc: null, imp: 3, tier: 4, checks: [http] }
2230 + - { id: api-weather-apis-sunrise-sunset, name: "Weather APIs sunrise sunset", host: api.sunrise-sunset.org, url: "https://api.sunrise-sunset.org/json?lat=45.5&lng=-73.6", cat: developer, provider: openweathermap, cc: null, imp: 3, tier: 4, checks: [http] }
2231 + - { id: api-weather-apis-timeapi, name: "Weather APIs timeapi", host: timeapi.io, url: "https://timeapi.io/api/Time/current/zone?timeZone=America/Toronto", cat: developer, provider: openweathermap, cc: null, imp: 3, tier: 4, checks: [http] }
2232 + - { id: api-httpbin-httpbin, name: "HTTP test & echo services httpbin", host: httpbin.org, url: "https://httpbin.org/get", cat: developer, provider: httpbin, cc: null, imp: 3, tier: 4, checks: [http] }
2233 + - { id: api-httpbin-postman-echo, name: "HTTP test & echo services postman echo", host: postman-echo.com, url: "https://postman-echo.com/get", cat: developer, provider: httpbin, cc: null, imp: 3, tier: 4, checks: [http] }
2234 + - { id: api-httpbin-httpbingo, name: "HTTP test & echo services httpbingo", host: httpbingo.org, url: "https://httpbingo.org/get", cat: developer, provider: httpbin, cc: null, imp: 3, tier: 4, checks: [http] }
2235 + - { id: api-httpbin-eu-httpbin, name: "HTTP test & echo services eu httpbin", host: eu.httpbin.org, url: "https://eu.httpbin.org/get", cat: developer, provider: httpbin, cc: null, imp: 3, tier: 4, checks: [http] }
2236 + - { id: api-httpbin-reqres, name: "HTTP test & echo services reqres", host: reqres.in, url: "https://reqres.in/api/users/1", cat: developer, provider: httpbin, cc: null, imp: 3, tier: 4, checks: [http] }
2237 + - { id: api-httpbin-mockbin, name: "HTTP test & echo services mockbin", host: mockbin.io, cat: developer, provider: httpbin, cc: null, imp: 3, tier: 4, checks: [http] }
2238 + - { id: api-httpbin-webhook-site, name: "HTTP test & echo services webhook site", host: webhook.site, cat: developer, provider: httpbin, cc: null, imp: 3, tier: 4, checks: [http] }
2239 + - { id: api-httpbin-requestbin, name: "HTTP test & echo services requestbin", host: requestbin.com, cat: developer, provider: httpbin, cc: null, imp: 3, tier: 4, checks: [http] }
2240 + - { id: api-httpbin-pipedream-requestbin, name: "HTTP test & echo services pipedream requestbin", host: public.requestbin.com, cat: developer, provider: httpbin, cc: null, imp: 3, tier: 4, checks: [http] }
2241 + - { id: api-httpbin-beeceptor, name: "HTTP test & echo services beeceptor", host: beeceptor.com, cat: developer, provider: httpbin, cc: null, imp: 3, tier: 4, checks: [http] }
2242 + - { id: api-httpbin-captive-apple, name: "HTTP test & echo services captive apple", host: captive.apple.com, url: "http://captive.apple.com/hotspot-detect.html", cat: developer, provider: httpbin, cc: null, imp: 3, tier: 4, checks: [http] }
2243 + - { id: api-httpbin-msftconnecttest, name: "HTTP test & echo services msftconnecttest", host: www.msftconnecttest.com, url: "http://www.msftconnecttest.com/connecttest.txt", cat: developer, provider: httpbin, cc: null, imp: 3, tier: 4, checks: [http] }
2244 + - { id: api-httpbin-connectivitycheck, name: "HTTP test & echo services connectivitycheck", host: connectivitycheck.gstatic.com, url: "http://connectivitycheck.gstatic.com/generate_204", cat: developer, provider: httpbin, cc: null, imp: 3, tier: 4, checks: [http] }
2245 + - { id: api-httpbin-detectportal-firefox, name: "HTTP test & echo services detectportal firefox", host: detectportal.firefox.com, url: "http://detectportal.firefox.com/success.txt", cat: developer, provider: httpbin, cc: null, imp: 3, tier: 4, checks: [http] }
2246 + - { id: api-httpbin-nmcheck-gnome, name: "HTTP test & echo services nmcheck gnome", host: nmcheck.gnome.org, url: "http://nmcheck.gnome.org/check_network_status.txt", cat: developer, provider: httpbin, cc: null, imp: 3, tier: 4, checks: [http] }
2247 + - { id: api-httpbin-ubuntu-connectivity, name: "HTTP test & echo services ubuntu connectivity", host: connectivity-check.ubuntu.com, url: "http://connectivity-check.ubuntu.com/", cat: developer, provider: httpbin, cc: null, imp: 3, tier: 4, checks: [http] }
2248 + - { id: api-httpbin-cloudflare-cp, name: "HTTP test & echo services cloudflare cp", host: cp.cloudflare.com, url: "http://cp.cloudflare.com/generate_204", cat: developer, provider: httpbin, cc: null, imp: 3, tier: 4, checks: [http] }
2249 + - { id: api-httpbin-kde-networkcheck, name: "HTTP test & echo services kde networkcheck", host: networkcheck.kde.org, url: "http://networkcheck.kde.org/", cat: developer, provider: httpbin, cc: null, imp: 3, tier: 4, checks: [http] }
2250 + - { id: api-httpbin-spotify-ncsi, name: "HTTP test & echo services spotify ncsi", host: spclient.wg.spotify.com, url: "http://spclient.wg.spotify.com/", cat: developer, provider: httpbin, cc: null, imp: 3, tier: 4, checks: [http] }
2251 + - { id: api-httpbin-steam-test, name: "HTTP test & echo services steam test", host: test.steampowered.com, url: "http://test.steampowered.com/204", cat: developer, provider: httpbin, cc: null, imp: 3, tier: 4, checks: [http] }
2252 + - { id: api-httpbin-android-clients3, name: "HTTP test & echo services android clients3", host: clients3.google.com, url: "http://clients3.google.com/generate_204", cat: developer, provider: httpbin, cc: null, imp: 3, tier: 4, checks: [http] }
2253 + - { id: api-httpbin-play-generate204, name: "HTTP test & echo services play generate204", host: play.googleapis.com, url: "http://play.googleapis.com/generate_204", cat: developer, provider: httpbin, cc: null, imp: 3, tier: 4, checks: [http] }
2254 + - { id: api-ip-echo-ipify, name: "IP echo services ipify", host: api.ipify.org, url: "https://api.ipify.org/?format=json", cat: developer, provider: ipify, cc: null, imp: 3, tier: 4, checks: [http] }
2255 + - { id: api-ip-echo-ipify6, name: "IP echo services ipify6", host: api64.ipify.org, url: "https://api64.ipify.org/?format=json", cat: developer, provider: ipify, cc: null, imp: 3, tier: 4, checks: [http] }
2256 + - { id: api-ip-echo-ifconfig-me, name: "IP echo services ifconfig me", host: ifconfig.me, url: "https://ifconfig.me/ip", cat: developer, provider: ipify, cc: null, imp: 3, tier: 4, checks: [http] }
2257 + - { id: api-ip-echo-ifconfig-co, name: "IP echo services ifconfig co", host: ifconfig.co, url: "https://ifconfig.co/json", cat: developer, provider: ipify, cc: null, imp: 3, tier: 4, checks: [http] }
2258 + - { id: api-ip-echo-icanhazip, name: "IP echo services icanhazip", host: icanhazip.com, url: "https://icanhazip.com/", cat: developer, provider: ipify, cc: null, imp: 3, tier: 4, checks: [http] }
2259 + - { id: api-ip-echo-ipv4-icanhazip, name: "IP echo services ipv4 icanhazip", host: ipv4.icanhazip.com, url: "https://ipv4.icanhazip.com/", cat: developer, provider: ipify, cc: null, imp: 3, tier: 4, checks: [http] }
2260 + - { id: api-ip-echo-checkip-aws, name: "IP echo services checkip aws", host: checkip.amazonaws.com, url: "https://checkip.amazonaws.com/", cat: developer, provider: ipify, cc: null, imp: 3, tier: 4, checks: [http] }
2261 + - { id: api-ip-echo-checkip-dyndns, name: "IP echo services checkip dyndns", host: checkip.dyndns.org, url: "http://checkip.dyndns.org/", cat: developer, provider: ipify, cc: null, imp: 3, tier: 4, checks: [http] }
2262 + - { id: api-ip-echo-ident-me, name: "IP echo services ident me", host: ident.me, url: "https://ident.me/", cat: developer, provider: ipify, cc: null, imp: 3, tier: 4, checks: [http] }
2263 + - { id: api-ip-echo-ipecho, name: "IP echo services ipecho", host: ipecho.net, url: "https://ipecho.net/plain", cat: developer, provider: ipify, cc: null, imp: 3, tier: 4, checks: [http] }
2264 + - { id: api-ip-echo-wtfismyip, name: "IP echo services wtfismyip", host: wtfismyip.com, url: "https://wtfismyip.com/json", cat: developer, provider: ipify, cc: null, imp: 3, tier: 4, checks: [http] }
2265 + - { id: api-ip-echo-ip-sb, name: "IP echo services ip sb", host: api.ip.sb, url: "https://api.ip.sb/ip", cat: developer, provider: ipify, cc: null, imp: 3, tier: 4, checks: [http] }
2266 + - { id: api-ip-echo-seeip, name: "IP echo services seeip", host: api.seeip.org, url: "https://api.seeip.org/jsonip", cat: developer, provider: ipify, cc: null, imp: 3, tier: 4, checks: [http] }
2267 + - { id: api-ip-echo-myexternalip, name: "IP echo services myexternalip", host: myexternalip.com, url: "https://myexternalip.com/raw", cat: developer, provider: ipify, cc: null, imp: 3, tier: 4, checks: [http] }
2268 + - { id: api-ip-echo-freeipapi, name: "IP echo services freeipapi", host: freeipapi.com, url: "https://freeipapi.com/api/json", cat: developer, provider: ipify, cc: null, imp: 3, tier: 4, checks: [http] }
2269 + - { id: api-ip-echo-ipwho, name: "IP echo services ipwho", host: ipwho.is, url: "https://ipwho.is/", cat: developer, provider: ipify, cc: null, imp: 3, tier: 4, checks: [http] }
2270 + - { id: api-ip-echo-ipleak, name: "IP echo services ipleak", host: ipleak.net, url: "https://ipleak.net/json/", cat: developer, provider: ipify, cc: null, imp: 3, tier: 4, checks: [http] }
2271 + - { id: api-ip-echo-whoer, name: "IP echo services whoer", host: whoer.net, cat: developer, provider: ipify, cc: null, imp: 3, tier: 4, checks: [http] }
2272 + - { id: api-ip-echo-browserleaks, name: "IP echo services browserleaks", host: browserleaks.com, cat: developer, provider: ipify, cc: null, imp: 3, tier: 4, checks: [http] }
2273 + - { id: api-ip-echo-dnsleaktest, name: "IP echo services dnsleaktest", host: www.dnsleaktest.com, cat: developer, provider: ipify, cc: null, imp: 3, tier: 4, checks: [http] }
2274 + - { id: api-ip-echo-cloudflare-cdn-cgi, name: "IP echo services cloudflare cdn cgi", host: cloudflare.com, url: "https://cloudflare.com/cdn-cgi/trace", cat: developer, provider: ipify, cc: null, imp: 3, tier: 4, checks: [http] }
2275 + - { id: api-time-apis-timeapi-io, name: "Time & date APIs timeapi io", host: www.timeapi.io, url: "https://www.timeapi.io/api/Time/current/zone?timeZone=UTC", cat: developer, provider: worldtimeapi, cc: null, imp: 3, tier: 4, checks: [http] }
2276 + - { id: api-time-apis-worldclockapi, name: "Time & date APIs worldclockapi", host: worldclockapi.com, url: "http://worldclockapi.com/api/json/utc/now", cat: developer, provider: worldtimeapi, cc: null, imp: 3, tier: 4, checks: [http] }
2277 + - { id: api-time-apis-time-is, name: "Time & date APIs time is", host: time.is, cat: developer, provider: worldtimeapi, cc: null, imp: 3, tier: 4, checks: [http] }
2278 + - { id: api-time-apis-time-gov, name: "Time & date APIs time gov", host: time.gov, cat: developer, provider: worldtimeapi, cc: null, imp: 3, tier: 4, checks: [http] }
2279 + - { id: api-time-apis-nist-time, name: "Time & date APIs nist time", host: www.nist.gov, url: "https://www.nist.gov/pml/time-and-frequency-division/time-distribution/internet-time-service-its", cat: developer, provider: worldtimeapi, cc: null, imp: 3, tier: 4, checks: [http] }
2280 + - { id: api-time-apis-timezonedb, name: "Time & date APIs timezonedb", host: timezonedb.com, cat: developer, provider: worldtimeapi, cc: null, imp: 3, tier: 4, checks: [http] }
2281 + - { id: api-time-apis-timezonedb-api, name: "Time & date APIs timezonedb api", host: api.timezonedb.com, url: "https://api.timezonedb.com/v2.1/list-time-zone?format=json", cat: developer, provider: worldtimeapi, cc: null, imp: 3, tier: 4, checks: [http] }
2282 + - { id: api-time-apis-abstract-holidays, name: "Time & date APIs abstract holidays", host: holidays.abstractapi.com, cat: developer, provider: worldtimeapi, cc: null, imp: 3, tier: 4, checks: [http] }
2283 + - { id: api-time-apis-nager, name: "Time & date APIs nager", host: date.nager.at, url: "https://date.nager.at/api/v3/PublicHolidays/2025/CA", cat: developer, provider: worldtimeapi, cc: null, imp: 3, tier: 4, checks: [http] }
2284 + - { id: api-time-apis-calendarific, name: "Time & date APIs calendarific", host: calendarific.com, cat: developer, provider: worldtimeapi, cc: null, imp: 3, tier: 4, checks: [http] }
2285 + - { id: api-time-apis-openholidays, name: "Time & date APIs openholidays", host: openholidaysapi.org, url: "https://openholidaysapi.org/PublicHolidays?countryIsoCode=DE&validFrom=2025-01-01&validTo=2025-01-31", cat: developer, provider: worldtimeapi, cc: null, imp: 3, tier: 4, checks: [http] }
2286 + - { id: api-restcountries-restcountries, name: "Reference data APIs restcountries", host: restcountries.com, url: "https://restcountries.com/v3.1/alpha/ca", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2287 + - { id: api-restcountries-countriesnow, name: "Reference data APIs countriesnow", host: countriesnow.space, url: "https://countriesnow.space/api/v0.1/countries/positions", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2288 + - { id: api-restcountries-zippopotam, name: "Reference data APIs zippopotam", host: api.zippopotam.us, url: "https://api.zippopotam.us/ca/H3H", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2289 + - { id: api-restcountries-openlibrary, name: "Reference data APIs openlibrary", host: openlibrary.org, url: "https://openlibrary.org/search.json?q=internet&limit=1", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2290 + - { id: api-restcountries-openlibrary-covers, name: "Reference data APIs openlibrary covers", host: covers.openlibrary.org, url: "https://covers.openlibrary.org/b/isbn/0385472579-S.jpg", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2291 + - { id: api-restcountries-openalex, name: "Reference data APIs openalex", host: api.openalex.org, url: "https://api.openalex.org/works?search=internet&per_page=1", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2292 + - { id: api-restcountries-crossref, name: "Reference data APIs crossref", host: api.crossref.org, url: "https://api.crossref.org/works?query=internet&rows=1", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2293 + - { id: api-restcountries-crossref-www, name: "Reference data APIs crossref www", host: www.crossref.org, cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2294 + - { id: api-restcountries-doi, name: "Reference data APIs doi", host: doi.org, url: "https://doi.org/api/handles/10.1000/1", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2295 + - { id: api-restcountries-orcid-pub, name: "Reference data APIs orcid pub", host: pub.orcid.org, url: "https://pub.orcid.org/v3.0/0000-0002-1825-0097/record", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2296 + - { id: api-restcountries-orcid-status, name: "Reference data APIs orcid status", host: status.orcid.org, cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2297 + - { id: api-restcountries-figshare-api, name: "Reference data APIs figshare api", host: api.figshare.com, url: "https://api.figshare.com/v2/articles?page_size=1", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2298 + - { id: api-restcountries-figshare-status, name: "Reference data APIs figshare status", host: status.figshare.com, cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2299 + - { id: api-restcountries-osf-api, name: "Reference data APIs osf api", host: api.osf.io, url: "https://api.osf.io/v2/", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2300 + - { id: api-restcountries-osf-status, name: "Reference data APIs osf status", host: status.cos.io, cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2301 + - { id: api-restcountries-dataverse, name: "Reference data APIs dataverse", host: dataverse.harvard.edu, url: "https://dataverse.harvard.edu/api/info/version", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2302 + - { id: api-restcountries-biorxiv-api, name: "Reference data APIs biorxiv api", host: api.biorxiv.org, url: "https://api.biorxiv.org/details/biorxiv/2024-01-01/2024-01-01/0", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2303 + - { id: api-restcountries-eutils, name: "Reference data APIs eutils", host: eutils.ncbi.nlm.nih.gov, url: "https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=pubmed&term=internet&retmax=1&retmode=json", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2304 + - { id: api-restcountries-europepmc, name: "Reference data APIs europepmc", host: www.ebi.ac.uk, url: "https://www.ebi.ac.uk/europepmc/webservices/rest/search?query=internet&format=json&pageSize=1", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2305 + - { id: api-restcountries-semanticscholar-api, name: "Reference data APIs semanticscholar api", host: api.semanticscholar.org, url: "https://api.semanticscholar.org/graph/v1/paper/search?query=internet&limit=1", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2306 + - { id: api-restcountries-paperswithcode, name: "Reference data APIs paperswithcode", host: paperswithcode.com, cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2307 + - { id: api-restcountries-core-ac, name: "Reference data APIs core ac", host: core.ac.uk, cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2308 + - { id: api-restcountries-core-api, name: "Reference data APIs core api", host: api.core.ac.uk, url: "https://api.core.ac.uk/v3/search/works?q=internet&limit=1", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2309 + - { id: api-restcountries-dblp, name: "Reference data APIs dblp", host: dblp.org, cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2310 + - { id: api-restcountries-scite, name: "Reference data APIs scite", host: scite.ai, cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2311 + - { id: api-restcountries-unpaywall, name: "Reference data APIs unpaywall", host: api.unpaywall.org, url: "https://api.unpaywall.org/v2/10.1038/nature12373?email=test@example.com", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2312 + - { id: api-restcountries-openaire, name: "Reference data APIs openaire", host: api.openaire.eu, url: "https://api.openaire.eu/search/publications?keywords=internet&size=1", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2313 + - { id: api-restcountries-base-search, name: "Reference data APIs base search", host: www.base-search.net, cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2314 + - { id: api-restcountries-hal-api, name: "Reference data APIs hal api", host: api.archives-ouvertes.fr, url: "https://api.archives-ouvertes.fr/search/?q=internet&rows=1", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2315 + - { id: api-restcountries-scielo, name: "Reference data APIs scielo", host: www.scielo.org, cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2316 + - { id: api-restcountries-doaj, name: "Reference data APIs doaj", host: doaj.org, cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2317 + - { id: api-restcountries-sherpa, name: "Reference data APIs sherpa", host: v2.sherpa.ac.uk, cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2318 + - { id: api-restcountries-wikidata-entity, name: "Reference data APIs wikidata entity", host: www.wikidata.org, url: "https://www.wikidata.org/wiki/Special:EntityData/Q42.json", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2319 + - { id: api-restcountries-wikidata-sparql, name: "Reference data APIs wikidata sparql", host: query.wikidata.org, url: "https://query.wikidata.org/sparql?query=SELECT%20%3Fitem%20WHERE%20%7B%20%3Fitem%20wdt%3AP31%20wd%3AQ5%20%7D%20LIMIT%201&format=json", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2320 + - { id: api-restcountries-wikipedia-summary, name: "Reference data APIs wikipedia summary", host: en.wikipedia.org, url: "https://en.wikipedia.org/api/rest_v1/page/summary/Internet", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2321 + - { id: api-restcountries-wikimedia-rest, name: "Reference data APIs wikimedia rest", host: api.wikimedia.org, url: "https://api.wikimedia.org/core/v1/wikipedia/en/page/Internet/bare", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2322 + - { id: api-restcountries-wikimedia-pageviews, name: "Reference data APIs wikimedia pageviews", host: wikimedia.org, url: "https://wikimedia.org/api/rest_v1/metrics/pageviews/top/en.wikipedia/all-access/2024/01/01", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2323 + - { id: api-restcountries-wiktionary, name: "Reference data APIs wiktionary", host: en.wiktionary.org, url: "https://en.wiktionary.org/api/rest_v1/page/summary/internet", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2324 + - { id: api-restcountries-commons, name: "Reference data APIs commons", host: commons.wikimedia.org, url: "https://commons.wikimedia.org/w/api.php?action=query&meta=siteinfo&format=json", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2325 + - { id: api-restcountries-dbpedia-lookup, name: "Reference data APIs dbpedia lookup", host: lookup.dbpedia.org, url: "https://lookup.dbpedia.org/api/search?query=Internet&maxResults=1&format=JSON", cat: developer, provider: restcountries, cc: null, imp: 3, tier: 4, checks: [http] }
2326 + - { id: api-fun-apis-catfact, name: "Sample & demo APIs catfact", host: catfact.ninja, url: "https://catfact.ninja/fact", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2327 + - { id: api-fun-apis-dog-ceo, name: "Sample & demo APIs dog ceo", host: dog.ceo, url: "https://dog.ceo/api/breeds/list/all", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2328 + - { id: api-fun-apis-pokeapi, name: "Sample & demo APIs pokeapi", host: pokeapi.co, url: "https://pokeapi.co/api/v2/pokemon/1", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2329 + - { id: api-fun-apis-jsonplaceholder, name: "Sample & demo APIs jsonplaceholder", host: jsonplaceholder.typicode.com, url: "https://jsonplaceholder.typicode.com/todos/1", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2330 + - { id: api-fun-apis-dummyjson, name: "Sample & demo APIs dummyjson", host: dummyjson.com, url: "https://dummyjson.com/products/1", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2331 + - { id: api-fun-apis-chucknorris, name: "Sample & demo APIs chucknorris", host: api.chucknorris.io, url: "https://api.chucknorris.io/jokes/random", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2332 + - { id: api-fun-apis-randomuser, name: "Sample & demo APIs randomuser", host: randomuser.me, url: "https://randomuser.me/api/?results=1", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2333 + - { id: api-fun-apis-fakestore, name: "Sample & demo APIs fakestore", host: fakestoreapi.com, url: "https://fakestoreapi.com/products/1", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2334 + - { id: api-fun-apis-swapi, name: "Sample & demo APIs swapi", host: swapi.dev, url: "https://swapi.dev/api/people/1/", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2335 + - { id: api-fun-apis-swapi-info, name: "Sample & demo APIs swapi info", host: swapi.info, url: "https://swapi.info/api/people/1", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2336 + - { id: api-fun-apis-rickandmorty, name: "Sample & demo APIs rickandmorty", host: rickandmortyapi.com, url: "https://rickandmortyapi.com/api/character/1", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2337 + - { id: api-fun-apis-openbrewerydb, name: "Sample & demo APIs openbrewerydb", host: api.openbrewerydb.org, url: "https://api.openbrewerydb.org/v1/breweries?per_page=1", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2338 + - { id: api-fun-apis-boredapi, name: "Sample & demo APIs boredapi", host: bored-api.appbrewery.com, url: "https://bored-api.appbrewery.com/random", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2339 + - { id: api-fun-apis-adviceslip, name: "Sample & demo APIs adviceslip", host: api.adviceslip.com, url: "https://api.adviceslip.com/advice", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2340 + - { id: api-fun-apis-zenquotes, name: "Sample & demo APIs zenquotes", host: zenquotes.io, url: "https://zenquotes.io/api/random", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2341 + - { id: api-fun-apis-numbersapi, name: "Sample & demo APIs numbersapi", host: numbersapi.com, url: "http://numbersapi.com/42", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2342 + - { id: api-fun-apis-agify, name: "Sample & demo APIs agify", host: api.agify.io, url: "https://api.agify.io/?name=michael", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2343 + - { id: api-fun-apis-genderize, name: "Sample & demo APIs genderize", host: api.genderize.io, url: "https://api.genderize.io/?name=michael", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2344 + - { id: api-fun-apis-nationalize, name: "Sample & demo APIs nationalize", host: api.nationalize.io, url: "https://api.nationalize.io/?name=michael", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2345 + - { id: api-fun-apis-exchangerate-host, name: "Sample & demo APIs exchangerate host", host: api.exchangerate.host, url: "https://api.exchangerate.host/live?source=USD&currencies=CAD", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2346 + - { id: api-fun-apis-frankfurter, name: "Sample & demo APIs frankfurter", host: api.frankfurter.app, url: "https://api.frankfurter.app/latest?from=USD&to=CAD", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2347 + - { id: api-fun-apis-frankfurter-dev, name: "Sample & demo APIs frankfurter dev", host: api.frankfurter.dev, url: "https://api.frankfurter.dev/v1/latest?base=USD", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2348 + - { id: api-fun-apis-open-er, name: "Sample & demo APIs open er", host: open.er-api.com, url: "https://open.er-api.com/v6/latest/USD", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2349 + - { id: api-fun-apis-coingecko-ping, name: "Sample & demo APIs coingecko ping", host: api.coingecko.com, url: "https://api.coingecko.com/api/v3/ping", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2350 + - { id: api-fun-apis-coinbase-rates, name: "Sample & demo APIs coinbase rates", host: api.coinbase.com, url: "https://api.coinbase.com/v2/exchange-rates?currency=BTC", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2351 + - { id: api-fun-apis-blockchain-info, name: "Sample & demo APIs blockchain info", host: blockchain.info, url: "https://blockchain.info/ticker", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2352 + - { id: api-fun-apis-mempool, name: "Sample & demo APIs mempool", host: mempool.space, url: "https://mempool.space/api/blocks/tip/height", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2353 + - { id: api-fun-apis-jokeapi, name: "Sample & demo APIs jokeapi", host: v2.jokeapi.dev, url: "https://v2.jokeapi.dev/joke/Programming?safe-mode", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2354 + - { id: api-fun-apis-dadjokes, name: "Sample & demo APIs dadjokes", host: icanhazdadjoke.com, url: "https://icanhazdadjoke.com/", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2355 + - { id: api-fun-apis-official-joke, name: "Sample & demo APIs official joke", host: official-joke-api.appspot.com, url: "https://official-joke-api.appspot.com/random_joke", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2356 + - { id: api-fun-apis-picsum, name: "Sample & demo APIs picsum", host: picsum.photos, url: "https://picsum.photos/id/1/10/10", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2357 + - { id: api-fun-apis-placehold, name: "Sample & demo APIs placehold", host: placehold.co, url: "https://placehold.co/10x10.png", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2358 + - { id: api-fun-apis-baconipsum, name: "Sample & demo APIs baconipsum", host: baconipsum.com, url: "https://baconipsum.com/api/?type=all-meat&sentences=1", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2359 + - { id: api-fun-apis-robohash, name: "Sample & demo APIs robohash", host: robohash.org, url: "https://robohash.org/test.png?size=10x10", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2360 + - { id: api-fun-apis-dicebear, name: "Sample & demo APIs dicebear", host: api.dicebear.com, url: "https://api.dicebear.com/9.x/identicon/svg?seed=test", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2361 + - { id: api-fun-apis-ui-avatars, name: "Sample & demo APIs ui avatars", host: ui-avatars.com, url: "https://ui-avatars.com/api/?name=A+B&size=16", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2362 + - { id: api-fun-apis-qrserver, name: "Sample & demo APIs qrserver", host: api.qrserver.com, url: "https://api.qrserver.com/v1/create-qr-code/?size=10x10&data=x", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2363 + - { id: api-fun-apis-thecatapi, name: "Sample & demo APIs thecatapi", host: api.thecatapi.com, url: "https://api.thecatapi.com/v1/images/search", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2364 + - { id: api-fun-apis-thedogapi, name: "Sample & demo APIs thedogapi", host: api.thedogapi.com, url: "https://api.thedogapi.com/v1/images/search", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2365 + - { id: api-fun-apis-randomfox, name: "Sample & demo APIs randomfox", host: randomfox.ca, url: "https://randomfox.ca/floof/", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2366 + - { id: api-fun-apis-some-random, name: "Sample & demo APIs some random", host: some-random-api.com, url: "https://some-random-api.com/animal/dog", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2367 + - { id: api-fun-apis-nekos, name: "Sample & demo APIs nekos", host: nekos.best, url: "https://nekos.best/api/v2/neko", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2368 + - { id: api-fun-apis-xkcd, name: "Sample & demo APIs xkcd", host: xkcd.com, url: "https://xkcd.com/info.0.json", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2369 + - { id: api-fun-apis-spaceflightnews, name: "Sample & demo APIs spaceflightnews", host: api.spaceflightnewsapi.net, url: "https://api.spaceflightnewsapi.net/v4/articles/?limit=1", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2370 + - { id: api-fun-apis-launch-library, name: "Sample & demo APIs launch library", host: ll.thespacedevs.com, url: "https://ll.thespacedevs.com/2.2.0/launch/upcoming/?limit=1", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2371 + - { id: api-fun-apis-tvmaze, name: "Sample & demo APIs tvmaze", host: api.tvmaze.com, url: "https://api.tvmaze.com/shows/1", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2372 + - { id: api-fun-apis-omdb, name: "Sample & demo APIs omdb", host: www.omdbapi.com, url: "https://www.omdbapi.com/?i=tt3896198", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2373 + - { id: api-fun-apis-tmdb, name: "Sample & demo APIs tmdb", host: api.themoviedb.org, url: "https://api.themoviedb.org/3/configuration", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2374 + - { id: api-fun-apis-musicbrainz, name: "Sample & demo APIs musicbrainz", host: musicbrainz.org, url: "https://musicbrainz.org/ws/2/artist/5b11f4ce-a62d-471e-81fc-a69a8278c7da?fmt=json", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2375 + - { id: api-fun-apis-coverart, name: "Sample & demo APIs coverart", host: coverartarchive.org, url: "https://coverartarchive.org/release/76df3287-6cda-33eb-8e9a-044b5e15ffdd", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2376 + - { id: api-fun-apis-discogs, name: "Sample & demo APIs discogs", host: api.discogs.com, url: "https://api.discogs.com/", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2377 + - { id: api-fun-apis-lyrics-ovh, name: "Sample & demo APIs lyrics ovh", host: api.lyrics.ovh, url: "https://api.lyrics.ovh/v1/coldplay/adventure%20of%20a%20lifetime", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2378 + - { id: api-fun-apis-openfoodfacts, name: "Sample & demo APIs openfoodfacts", host: world.openfoodfacts.org, url: "https://world.openfoodfacts.org/api/v2/product/737628064502.json", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2379 + - { id: api-fun-apis-themealdb, name: "Sample & demo APIs themealdb", host: www.themealdb.com, url: "https://www.themealdb.com/api/json/v1/1/random.php", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2380 + - { id: api-fun-apis-thecocktaildb, name: "Sample & demo APIs thecocktaildb", host: www.thecocktaildb.com, url: "https://www.thecocktaildb.com/api/json/v1/1/random.php", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2381 + - { id: api-fun-apis-spoonacular, name: "Sample & demo APIs spoonacular", host: api.spoonacular.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2382 + - { id: api-fun-apis-fdc-usda, name: "Sample & demo APIs fdc usda", host: api.nal.usda.gov, url: "https://api.nal.usda.gov/fdc/v1/foods/search?query=apple&pageSize=1&api_key=DEMO_KEY", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2383 + - { id: api-fun-apis-openfda, name: "Sample & demo APIs openfda", host: api.fda.gov, url: "https://api.fda.gov/drug/label.json?limit=1", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2384 + - { id: api-fun-apis-disease-sh, name: "Sample & demo APIs disease sh", host: disease.sh, url: "https://disease.sh/v3/covid-19/all", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2385 + - { id: api-fun-apis-covid-api, name: "Sample & demo APIs covid api", host: covid-api.com, url: "https://covid-api.com/api/reports/total?date=2023-01-01", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2386 + - { id: api-fun-apis-who-gho, name: "Sample & demo APIs who gho", host: ghoapi.azureedge.net, url: "https://ghoapi.azureedge.net/api/Indicator?$top=1", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2387 + - { id: api-fun-apis-worldbank-api, name: "Sample & demo APIs worldbank api", host: api.worldbank.org, url: "https://api.worldbank.org/v2/country/CA?format=json", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2388 + - { id: api-fun-apis-imf-api, name: "Sample & demo APIs imf api", host: www.imf.org, url: "https://www.imf.org/external/datamapper/api/v1/indicators", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2389 + - { id: api-fun-apis-oecd-api, name: "Sample & demo APIs oecd api", host: sdmx.oecd.org, url: "https://sdmx.oecd.org/public/rest/dataflow/all", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2390 + - { id: api-fun-apis-eurostat-api, name: "Sample & demo APIs eurostat api", host: ec.europa.eu, url: "https://ec.europa.eu/eurostat/api/dissemination/statistics/1.0/data/nama_10_gdp?geo=DE&time=2022&unit=CP_MEUR&na_item=B1GQ", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2391 + - { id: api-fun-apis-statcan, name: "Sample & demo APIs statcan", host: www150.statcan.gc.ca, url: "https://www150.statcan.gc.ca/t1/wds/rest/getAllCubesListLite", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2392 + - { id: api-fun-apis-census-api, name: "Sample & demo APIs census api", host: api.census.gov, url: "https://api.census.gov/data.json", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2393 + - { id: api-fun-apis-fred, name: "Sample & demo APIs fred", host: api.stlouisfed.org, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2394 + - { id: api-fun-apis-bls-api, name: "Sample & demo APIs bls api", host: api.bls.gov, url: "https://api.bls.gov/publicAPI/v2/timeseries/data/LNS14000000", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2395 + - { id: api-fun-apis-data-gov, name: "Sample & demo APIs data gov", host: catalog.data.gov, url: "https://catalog.data.gov/api/3/action/package_search?rows=1", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2396 + - { id: api-fun-apis-open-canada, name: "Sample & demo APIs open canada", host: open.canada.ca, url: "https://open.canada.ca/data/api/3/action/package_search?rows=1", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2397 + - { id: api-fun-apis-data-gouv-fr, name: "Sample & demo APIs data gouv fr", host: www.data.gouv.fr, url: "https://www.data.gouv.fr/api/1/datasets/?page_size=1", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2398 + - { id: api-fun-apis-eu-open-data, name: "Sample & demo APIs eu open data", host: data.europa.eu, url: "https://data.europa.eu/api/hub/search/search?limit=1", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2399 + - { id: api-fun-apis-nyc-opendata, name: "Sample & demo APIs nyc opendata", host: data.cityofnewyork.us, url: "https://data.cityofnewyork.us/api/views.json?limit=1", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2400 + - { id: api-fun-apis-socrata, name: "Sample & demo APIs socrata", host: dev.socrata.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2401 + - { id: api-fun-apis-ckan, name: "Sample & demo APIs ckan", host: ckan.org, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2402 + - { id: api-fun-apis-ckan-demo, name: "Sample & demo APIs ckan demo", host: demo.ckan.org, url: "https://demo.ckan.org/api/3/action/status_show", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2403 + - { id: api-graphql-public-countries-trevorblades, name: "Public GraphQL & misc dev APIs countries trevorblades", host: countries.trevorblades.com, url: "https://countries.trevorblades.com/", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2404 + - { id: api-graphql-public-spacex-gql, name: "Public GraphQL & misc dev APIs spacex gql", host: spacex-production.up.railway.app, url: "https://spacex-production.up.railway.app/", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2405 + - { id: api-graphql-public-graphql-pokemon, name: "Public GraphQL & misc dev APIs graphql pokemon", host: graphql-pokeapi.graphcdn.app, url: "https://graphql-pokeapi.graphcdn.app/", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2406 + - { id: api-graphql-public-anilist, name: "Public GraphQL & misc dev APIs anilist", host: graphql.anilist.co, url: "https://graphql.anilist.co/", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2407 + - { id: api-graphql-public-github-gql, name: "Public GraphQL & misc dev APIs github gql", host: api.github.com, url: "https://api.github.com/graphql", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2408 + - { id: api-graphql-public-gitlab-gql, name: "Public GraphQL & misc dev APIs gitlab gql", host: gitlab.com, url: "https://gitlab.com/api/graphql", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2409 + - { id: api-graphql-public-shopify-storefront, name: "Public GraphQL & misc dev APIs shopify storefront", host: shopify.dev, url: "https://shopify.dev/docs/api/storefront", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2410 + - { id: api-graphql-public-oracle-ips, name: "Public GraphQL & misc dev APIs oracle ips", host: docs.oracle.com, url: "https://docs.oracle.com/en-us/iaas/tools/public_ip_ranges.json", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2411 + - { id: api-graphql-public-digitalocean-ips, name: "Public GraphQL & misc dev APIs digitalocean ips", host: digitalocean.com, url: "https://digitalocean.com/geo/google.csv", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2412 + - { id: api-graphql-public-linode-ips, name: "Public GraphQL & misc dev APIs linode ips", host: geoip.linode.com, url: "https://geoip.linode.com/", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2413 + - { id: api-graphql-public-ipv4-ranges-ripe, name: "Public GraphQL & misc dev APIs ipv4 ranges ripe", host: ftp.ripe.net, url: "https://ftp.ripe.net/ripe/stats/delegated-ripencc-latest", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2414 + - { id: api-graphql-public-apnic-delegated, name: "Public GraphQL & misc dev APIs apnic delegated", host: ftp.apnic.net, url: "https://ftp.apnic.net/stats/apnic/delegated-apnic-latest", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2415 + - { id: api-graphql-public-iana-tlds, name: "Public GraphQL & misc dev APIs iana tlds", host: data.iana.org, url: "https://data.iana.org/TLD/tlds-alpha-by-domain.txt", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2416 + - { id: api-graphql-public-publicsuffix, name: "Public GraphQL & misc dev APIs publicsuffix", host: publicsuffix.org, url: "https://publicsuffix.org/list/public_suffix_list.dat", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2417 + - { id: api-graphql-public-tranco, name: "Public GraphQL & misc dev APIs tranco", host: tranco-list.eu, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2418 + - { id: api-graphql-public-majestic, name: "Public GraphQL & misc dev APIs majestic", host: majestic.com, url: "https://majestic.com/reports/majestic-million", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2419 + - { id: api-graphql-public-cisco-umbrella-top, name: "Public GraphQL & misc dev APIs cisco umbrella top", host: s3-us-west-1.amazonaws.com, url: "https://s3-us-west-1.amazonaws.com/umbrella-static/index.html", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2420 + - { id: api-graphql-public-chrome-ux, name: "Public GraphQL & misc dev APIs chrome ux", host: chromeuxreport.googleapis.com, url: "https://chromeuxreport.googleapis.com/$discovery/rest?version=v1", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2421 + - { id: api-graphql-public-useragents, name: "Public GraphQL & misc dev APIs useragents", host: useragents.io, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2422 + - { id: api-graphql-public-whatismybrowser, name: "Public GraphQL & misc dev APIs whatismybrowser", host: www.whatismybrowser.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2423 + - { id: api-graphql-public-caniuse-data, name: "Public GraphQL & misc dev APIs caniuse data", host: cdn.jsdelivr.net, url: "https://cdn.jsdelivr.net/npm/caniuse-lite@1/package.json", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2424 + - { id: api-graphql-public-browserslist, name: "Public GraphQL & misc dev APIs browserslist", host: browsersl.ist, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2425 + - { id: api-graphql-public-web-platform-tests, name: "Public GraphQL & misc dev APIs web platform tests", host: wpt.fyi, url: "https://wpt.fyi/api/runs?max-count=1", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2426 + - { id: api-graphql-public-wpt-live, name: "Public GraphQL & misc dev APIs wpt live", host: wpt.live, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2427 + - { id: api-graphql-public-w3c-validator, name: "Public GraphQL & misc dev APIs w3c validator", host: validator.w3.org, url: "https://validator.w3.org/nu/?doc=https%3A%2F%2Fexample.com&out=json", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2428 + - { id: api-graphql-public-w3c-css, name: "Public GraphQL & misc dev APIs w3c css", host: jigsaw.w3.org, url: "https://jigsaw.w3.org/css-validator/validator?uri=https://example.com&output=json", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2429 + - { id: api-graphql-public-html-spec, name: "Public GraphQL & misc dev APIs html spec", host: html.spec.whatwg.org, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2430 + - { id: api-graphql-public-ecma, name: "Public GraphQL & misc dev APIs ecma", host: ecma-international.org, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2431 + - { id: api-graphql-public-tc39, name: "Public GraphQL & misc dev APIs tc39", host: tc39.es, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2432 + - { id: api-graphql-public-rfc-editor, name: "Public GraphQL & misc dev APIs rfc editor", host: www.rfc-editor.org, url: "https://www.rfc-editor.org/rfc/rfc9110.txt", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2433 + - { id: api-graphql-public-datatracker, name: "Public GraphQL & misc dev APIs datatracker", host: datatracker.ietf.org, url: "https://datatracker.ietf.org/api/v1/doc/document/?format=json&limit=1", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2434 + - { id: api-graphql-public-unicode, name: "Public GraphQL & misc dev APIs unicode", host: www.unicode.org, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2435 + - { id: api-graphql-public-unicode-home, name: "Public GraphQL & misc dev APIs unicode home", host: home.unicode.org, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2436 + - { id: api-graphql-public-cldr, name: "Public GraphQL & misc dev APIs cldr", host: cldr.unicode.org, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2437 + - { id: api-graphql-public-icu, name: "Public GraphQL & misc dev APIs icu", host: icu.unicode.org, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2438 + - { id: api-graphql-public-openapi-init, name: "Public GraphQL & misc dev APIs openapi init", host: www.openapis.org, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2439 + - { id: api-graphql-public-openapi-spec, name: "Public GraphQL & misc dev APIs openapi spec", host: spec.openapis.org, url: "https://spec.openapis.org/oas/latest.html", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2440 + - { id: api-graphql-public-json-schema, name: "Public GraphQL & misc dev APIs json schema", host: json-schema.org, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2441 + - { id: api-graphql-public-json-schema-store, name: "Public GraphQL & misc dev APIs json schema store", host: www.schemastore.org, url: "https://www.schemastore.org/api/json/catalog.json", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2442 + - { id: api-graphql-public-asyncapi, name: "Public GraphQL & misc dev APIs asyncapi", host: www.asyncapi.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2443 + - { id: api-graphql-public-graphql-org, name: "Public GraphQL & misc dev APIs graphql org", host: graphql.org, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2444 + - { id: api-graphql-public-grpc, name: "Public GraphQL & misc dev APIs grpc", host: grpc.io, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2445 + - { id: api-graphql-public-protobuf, name: "Public GraphQL & misc dev APIs protobuf", host: protobuf.dev, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2446 + - { id: api-graphql-public-openid, name: "Public GraphQL & misc dev APIs openid", host: openid.net, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2447 + - { id: api-graphql-public-oauth, name: "Public GraphQL & misc dev APIs oauth", host: oauth.net, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2448 + - { id: api-graphql-public-schema-org, name: "Public GraphQL & misc dev APIs schema org", host: schema.org, url: "https://schema.org/version/latest/schemaorg-current-https.jsonld", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2449 + - { id: api-graphql-public-apis-guru, name: "Public GraphQL & misc dev APIs apis guru", host: api.apis.guru, url: "https://api.apis.guru/v2/list.json", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2450 + - { id: api-graphql-public-publicapis-dev, name: "Public GraphQL & misc dev APIs publicapis dev", host: publicapis.dev, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2451 + - { id: api-graphql-public-rapidapi, name: "Public GraphQL & misc dev APIs rapidapi", host: rapidapi.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2452 + - { id: api-graphql-public-rapidapi-status, name: "Public GraphQL & misc dev APIs rapidapi status", host: status.rapidapi.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2453 + - { id: api-graphql-public-apilayer, name: "Public GraphQL & misc dev APIs apilayer", host: apilayer.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2454 + - { id: api-graphql-public-abstractapi, name: "Public GraphQL & misc dev APIs abstractapi", host: www.abstractapi.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2455 + - { id: api-graphql-public-apify-www, name: "Public GraphQL & misc dev APIs apify www", host: apify.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2456 + - { id: api-graphql-public-apify-api, name: "Public GraphQL & misc dev APIs apify api", host: api.apify.com, url: "https://api.apify.com/v2/store?limit=1", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2457 + - { id: api-graphql-public-apify-status, name: "Public GraphQL & misc dev APIs apify status", host: status.apify.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2458 + - { id: api-graphql-public-zyte, name: "Public GraphQL & misc dev APIs zyte", host: www.zyte.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2459 + - { id: api-graphql-public-scrapfly, name: "Public GraphQL & misc dev APIs scrapfly", host: scrapfly.io, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2460 + - { id: api-graphql-public-scraperapi, name: "Public GraphQL & misc dev APIs scraperapi", host: www.scraperapi.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2461 + - { id: api-graphql-public-scrapingbee, name: "Public GraphQL & misc dev APIs scrapingbee", host: www.scrapingbee.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2462 + - { id: api-graphql-public-brightdata, name: "Public GraphQL & misc dev APIs brightdata", host: brightdata.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2463 + - { id: api-graphql-public-oxylabs, name: "Public GraphQL & misc dev APIs oxylabs", host: oxylabs.io, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2464 + - { id: api-graphql-public-smartproxy, name: "Public GraphQL & misc dev APIs smartproxy", host: decodo.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2465 + - { id: api-graphql-public-firecrawl, name: "Public GraphQL & misc dev APIs firecrawl", host: www.firecrawl.dev, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2466 + - { id: api-graphql-public-firecrawl-status, name: "Public GraphQL & misc dev APIs firecrawl status", host: status.firecrawl.dev, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2467 + - { id: api-graphql-public-firecrawl-api, name: "Public GraphQL & misc dev APIs firecrawl api", host: api.firecrawl.dev, url: "https://api.firecrawl.dev/", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2468 + - { id: api-graphql-public-jina-reader, name: "Public GraphQL & misc dev APIs jina reader", host: r.jina.ai, url: "https://r.jina.ai/https://example.com", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2469 + - { id: api-graphql-public-jina-www, name: "Public GraphQL & misc dev APIs jina www", host: jina.ai, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2470 + - { id: api-graphql-public-browserless, name: "Public GraphQL & misc dev APIs browserless", host: www.browserless.io, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2471 + - { id: api-graphql-public-browserless-status, name: "Public GraphQL & misc dev APIs browserless status", host: status.browserless.io, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2472 + - { id: api-graphql-public-browserbase, name: "Public GraphQL & misc dev APIs browserbase", host: www.browserbase.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2473 + - { id: api-graphql-public-browserbase-status, name: "Public GraphQL & misc dev APIs browserbase status", host: status.browserbase.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2474 + - { id: api-graphql-public-diffbot, name: "Public GraphQL & misc dev APIs diffbot", host: www.diffbot.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2475 + - { id: api-graphql-public-serper, name: "Public GraphQL & misc dev APIs serper", host: serper.dev, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2476 + - { id: api-graphql-public-serpapi, name: "Public GraphQL & misc dev APIs serpapi", host: serpapi.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2477 + - { id: api-graphql-public-serpapi-status, name: "Public GraphQL & misc dev APIs serpapi status", host: status.serpapi.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2478 + - { id: api-graphql-public-tavily, name: "Public GraphQL & misc dev APIs tavily", host: tavily.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2479 + - { id: api-graphql-public-tavily-api, name: "Public GraphQL & misc dev APIs tavily api", host: api.tavily.com, url: "https://api.tavily.com/", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2480 + - { id: api-graphql-public-tavily-status, name: "Public GraphQL & misc dev APIs tavily status", host: status.tavily.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2481 + - { id: api-graphql-public-exa, name: "Public GraphQL & misc dev APIs exa", host: exa.ai, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2482 + - { id: api-graphql-public-exa-status, name: "Public GraphQL & misc dev APIs exa status", host: status.exa.ai, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2483 + - { id: api-graphql-public-brave-search-api, name: "Public GraphQL & misc dev APIs brave search api", host: api.search.brave.com, url: "https://api.search.brave.com/res/v1/web/search?q=internet", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2484 + - { id: api-graphql-public-brave-www, name: "Public GraphQL & misc dev APIs brave www", host: brave.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2485 + - { id: api-graphql-public-duckduckgo-api, name: "Public GraphQL & misc dev APIs duckduckgo api", host: api.duckduckgo.com, url: "https://api.duckduckgo.com/?q=internet&format=json", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2486 + - { id: api-graphql-public-ddg-html, name: "Public GraphQL & misc dev APIs ddg html", host: html.duckduckgo.com, url: "https://html.duckduckgo.com/html/?q=internet", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2487 + - { id: api-graphql-public-ddg-lite, name: "Public GraphQL & misc dev APIs ddg lite", host: lite.duckduckgo.com, url: "https://lite.duckduckgo.com/lite/?q=internet", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2488 + - { id: api-graphql-public-ddg-status, name: "Public GraphQL & misc dev APIs ddg status", host: duckduckgo.statuspage.io, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2489 + - { id: api-graphql-public-bing-search-api, name: "Public GraphQL & misc dev APIs bing search api", host: api.bing.microsoft.com, url: "https://api.bing.microsoft.com/v7.0/search?q=internet", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2490 + - { id: api-graphql-public-searxng, name: "Public GraphQL & misc dev APIs searxng", host: searx.space, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2491 + - { id: api-graphql-public-searxng-docs, name: "Public GraphQL & misc dev APIs searxng docs", host: docs.searxng.org, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2492 + - { id: api-graphql-public-marginalia, name: "Public GraphQL & misc dev APIs marginalia", host: search.marginalia.nu, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2493 + - { id: api-graphql-public-mojeek, name: "Public GraphQL & misc dev APIs mojeek", host: www.mojeek.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2494 + - { id: api-graphql-public-kagi-status, name: "Public GraphQL & misc dev APIs kagi status", host: status.kagi.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2495 + - { id: api-graphql-public-kagi-help, name: "Public GraphQL & misc dev APIs kagi help", host: help.kagi.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2496 + - { id: api-graphql-public-swisscows, name: "Public GraphQL & misc dev APIs swisscows", host: swisscows.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2497 + - { id: api-graphql-public-yandex-xml, name: "Public GraphQL & misc dev APIs yandex xml", host: yandex.com, url: "https://yandex.com/search/xml?query=internet", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2498 + - { id: api-graphql-public-naver-dev, name: "Public GraphQL & misc dev APIs naver dev", host: developers.naver.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2499 + - { id: api-graphql-public-baidu-api, name: "Public GraphQL & misc dev APIs baidu api", host: api.map.baidu.com, url: "https://api.map.baidu.com/", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2500 + - { id: api-graphql-public-yahoo-search, name: "Public GraphQL & misc dev APIs yahoo search", host: search.yahoo.com, url: "https://search.yahoo.com/search?p=internet", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2501 + - { id: api-graphql-public-ask, name: "Public GraphQL & misc dev APIs ask", host: www.ask.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2502 + - { id: api-graphql-public-aol-search, name: "Public GraphQL & misc dev APIs aol search", host: search.aol.com, url: "https://search.aol.com/aol/search?q=internet", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2503 + - { id: api-graphql-public-wolfram-api, name: "Public GraphQL & misc dev APIs wolfram api", host: api.wolframalpha.com, url: "https://api.wolframalpha.com/v1/result?i=1%2B1", cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2504 + - { id: api-graphql-public-wolfram-products, name: "Public GraphQL & misc dev APIs wolfram products", host: products.wolframalpha.com, cat: developer, provider: publicapis, cc: null, imp: 2, tier: 4, checks: [http] }
2505 + # ───────── AI labs, inference clouds, AI tooling & research (776)
2506 + - { id: ai-openai-hosts-status, name: "OpenAI hosts status page", host: status.openai.com, url: "https://status.openai.com/api/v2/summary.json", cat: ai, provider: openai, svc: openai, cc: US, imp: 5, tier: 3, checks: [http, dns] }
2507 + - { id: ai-openai-hosts-help, name: "OpenAI hosts help centre", host: help.openai.com, cat: ai, provider: openai, svc: openai, cc: US, imp: 5, tier: 3, checks: [http] }
2508 + - { id: ai-openai-hosts-community, name: "OpenAI hosts community", host: community.openai.com, cat: ai, provider: openai, svc: openai, cc: US, imp: 5, tier: 3, checks: [http] }
2509 + - { id: ai-openai-hosts-developers, name: "OpenAI hosts developer portal", host: developers.openai.com, cat: ai, provider: openai, svc: openai, cc: US, imp: 5, tier: 3, checks: [http] }
2510 + - { id: ai-openai-hosts-cdn, name: "OpenAI hosts CDN", host: cdn.openai.com, url: "https://cdn.openai.com/API/docs/images/model-page/model-icons/gpt-4o.png", cat: ai, provider: openai, svc: openai, cc: US, imp: 5, tier: 3, checks: [http, dns] }
2511 + - { id: ai-openai-hosts-oaistatic, name: "OpenAI hosts oaistatic", host: cdn.oaistatic.com, url: "https://cdn.oaistatic.com/", cat: ai, provider: openai, svc: openai, cc: US, imp: 5, tier: 3, checks: [http, dns] }
2512 + - { id: ai-openai-hosts-academy, name: "OpenAI hosts academy", host: academy.openai.com, cat: ai, provider: openai, svc: openai, cc: US, imp: 5, tier: 3, checks: [http] }
2513 + - { id: ai-openai-hosts-cookbook, name: "OpenAI hosts cookbook", host: cookbook.openai.com, cat: ai, provider: openai, svc: openai, cc: US, imp: 5, tier: 3, checks: [http] }
2514 + - { id: ai-openai-hosts-api-eu, name: "OpenAI hosts api eu", host: eu.api.openai.com, url: "https://eu.api.openai.com/v1/models", cat: ai, provider: openai, svc: openai, cc: US, imp: 5, tier: 3, checks: [http, dns] }
2515 + - { id: ai-openai-hosts-operator, name: "OpenAI hosts operator", host: operator.chatgpt.com, cat: ai, provider: openai, svc: openai, cc: US, imp: 5, tier: 3, checks: [http] }
2516 + - { id: ai-openai-hosts-codex, name: "OpenAI hosts codex", host: chatgpt.com, url: "https://chatgpt.com/codex", cat: ai, provider: openai, svc: openai, cc: US, imp: 5, tier: 3, checks: [http, dns] }
2517 + - { id: ai-openai-hosts-openai-fm, name: "OpenAI hosts openai fm", host: www.openai.fm, cat: ai, provider: openai, svc: openai, cc: US, imp: 5, tier: 3, checks: [http] }
2518 + - { id: ai-openai-hosts-openai-devday, name: "OpenAI hosts openai devday", host: openai.com, url: "https://openai.com/devday/", cat: ai, provider: openai, svc: openai, cc: US, imp: 5, tier: 3, checks: [http, dns] }
2519 + - { id: ai-anthropic-hosts-status, name: "Anthropic hosts status page", host: status.anthropic.com, url: "https://status.anthropic.com/api/v2/summary.json", cat: ai, provider: anthropic, svc: anthropic, cc: US, imp: 5, tier: 3, checks: [http, dns] }
2520 + - { id: ai-anthropic-hosts-support, name: "Anthropic hosts support", host: support.anthropic.com, cat: ai, provider: anthropic, svc: anthropic, cc: US, imp: 5, tier: 3, checks: [http] }
2521 + - { id: ai-anthropic-hosts-platform, name: "Anthropic hosts platform", host: platform.claude.com, cat: ai, provider: anthropic, svc: anthropic, cc: US, imp: 5, tier: 3, checks: [http] }
2522 + - { id: ai-anthropic-hosts-docs, name: "Anthropic hosts docs", host: docs.claude.com, cat: ai, provider: anthropic, svc: anthropic, cc: US, imp: 5, tier: 3, checks: [http] }
2523 + - { id: ai-anthropic-hosts-api-models, name: "Anthropic hosts api models", host: api.anthropic.com, url: "https://api.anthropic.com/v1/models", cat: ai, provider: anthropic, svc: anthropic, cc: US, imp: 5, tier: 3, checks: [http, dns] }
2524 + - { id: ai-anthropic-hosts-claude-code, name: "Anthropic hosts claude code", host: docs.anthropic.com, url: "https://docs.anthropic.com/en/docs/claude-code/overview", cat: ai, provider: anthropic, svc: anthropic, cc: US, imp: 5, tier: 3, checks: [http, dns] }
2525 + - { id: ai-anthropic-hosts-claude-ai-www, name: "Anthropic hosts claude ai www", host: claude.com, cat: ai, provider: anthropic, svc: anthropic, cc: US, imp: 5, tier: 3, checks: [http] }
2526 + - { id: ai-anthropic-hosts-alignment, name: "Anthropic hosts alignment", host: alignment.anthropic.com, cat: ai, provider: anthropic, svc: anthropic, cc: US, imp: 5, tier: 3, checks: [http] }
2527 + - { id: ai-anthropic-hosts-red, name: "Anthropic hosts red", host: red.anthropic.com, cat: ai, provider: anthropic, svc: anthropic, cc: US, imp: 5, tier: 3, checks: [http] }
2528 + - { id: ai-anthropic-hosts-transformer-circuits, name: "Anthropic hosts transformer circuits", host: transformer-circuits.pub, cat: ai, provider: anthropic, svc: anthropic, cc: US, imp: 5, tier: 3, checks: [http] }
2529 + - { id: ai-google-ai-ai, name: "Google AI hosts ai", host: ai.google.dev, cat: ai, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
2530 + - { id: ai-google-ai-aiplatform, name: "Google AI hosts aiplatform", host: aiplatform.googleapis.com, url: "https://aiplatform.googleapis.com/$discovery/rest?version=v1", cat: ai, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
2531 + - { id: ai-google-ai-generative-discovery, name: "Google AI hosts generative discovery", host: generativelanguage.googleapis.com, url: "https://generativelanguage.googleapis.com/$discovery/rest?version=v1beta", cat: ai, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
2532 + - { id: ai-google-ai-ai-google, name: "Google AI hosts ai google", host: ai.google, cat: ai, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
2533 + - { id: ai-google-ai-deepmind, name: "Google AI hosts deepmind", host: deepmind.google, cat: ai, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
2534 + - { id: ai-google-ai-labs, name: "Google AI hosts labs", host: labs.google, cat: ai, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
2535 + - { id: ai-google-ai-gemini-status, name: "Google AI hosts gemini status", host: status.cloud.google.com, url: "https://status.cloud.google.com/incidents.json", cat: ai, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
2536 + - { id: ai-google-ai-jules, name: "Google AI hosts jules", host: jules.google, cat: ai, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
2537 + - { id: ai-google-ai-notebooklm-www, name: "Google AI hosts notebooklm www", host: notebooklm.google, url: "https://notebooklm.google/", cat: ai, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
2538 + - { id: ai-google-ai-gemini-app-status, name: "Google AI hosts gemini app status", host: gemini.google, url: "https://gemini.google/about/", cat: ai, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
2539 + - { id: ai-google-ai-workspace-gemini, name: "Google AI hosts workspace gemini", host: workspace.google.com, url: "https://workspace.google.com/solutions/ai/", cat: ai, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
2540 + - { id: ai-google-ai-research, name: "Google AI hosts research", host: research.google, cat: ai, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
2541 + - { id: ai-google-ai-blog, name: "Google AI hosts blog", host: blog.google, url: "https://blog.google/technology/ai/", cat: ai, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
2542 + - { id: ai-microsoft-ai-ai-foundry, name: "Microsoft / Azure AI hosts ai foundry", host: ai.azure.com, cat: ai, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http] }
2543 + - { id: ai-microsoft-ai-copilot-www, name: "Microsoft / Azure AI hosts copilot www", host: copilot.microsoft.com, url: "https://copilot.microsoft.com/", cat: ai, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
2544 + - { id: ai-microsoft-ai-copilot-docs, name: "Microsoft / Azure AI hosts copilot docs", host: docs.github.com, url: "https://docs.github.com/en/copilot", cat: ai, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
2545 + - { id: ai-microsoft-ai-onnx, name: "Microsoft / Azure AI hosts onnx", host: onnx.ai, cat: ai, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http] }
2546 + - { id: ai-microsoft-ai-onnxruntime, name: "Microsoft / Azure AI hosts onnxruntime", host: onnxruntime.ai, cat: ai, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http] }
2547 + - { id: ai-aws-ai-bedrock-api, name: "AWS AI hosts bedrock api", host: bedrock.us-east-1.amazonaws.com, url: "https://bedrock.us-east-1.amazonaws.com/", cat: ai, provider: aws, svc: aws, cc: US, imp: 4, tier: 3, checks: [http, dns] }
2548 + - { id: ai-aws-ai-bedrock-runtime, name: "AWS AI hosts bedrock runtime", host: bedrock-runtime.us-east-1.amazonaws.com, url: "https://bedrock-runtime.us-east-1.amazonaws.com/", cat: ai, provider: aws, svc: aws, cc: US, imp: 4, tier: 3, checks: [http, dns] }
2549 + - { id: ai-aws-ai-sagemaker-api, name: "AWS AI hosts sagemaker api", host: api.sagemaker.us-east-1.amazonaws.com, url: "https://api.sagemaker.us-east-1.amazonaws.com/", cat: ai, provider: aws, svc: aws, cc: US, imp: 4, tier: 3, checks: [http, dns] }
2550 + - { id: ai-aws-ai-amazon-science, name: "AWS AI hosts amazon science", host: www.amazon.science, cat: ai, provider: aws, svc: aws, cc: US, imp: 4, tier: 3, checks: [http] }
2551 + - { id: ai-aws-ai-kiro, name: "AWS AI hosts kiro", host: kiro.dev, cat: ai, provider: aws, svc: aws, cc: US, imp: 4, tier: 3, checks: [http] }
2552 + - { id: ai-meta-ai-hosts-llama, name: "Meta AI hosts llama", host: www.llama.com, cat: ai, provider: meta, svc: meta, cc: US, imp: 4, tier: 3, checks: [http] }
2553 + - { id: ai-meta-ai-hosts-llama-downloads, name: "Meta AI hosts llama downloads", host: llama.meta.com, cat: ai, provider: meta, svc: meta, cc: US, imp: 4, tier: 3, checks: [http] }
2554 + - { id: ai-meta-ai-hosts-ai-meta, name: "Meta AI hosts ai meta", host: ai.meta.com, cat: ai, provider: meta, svc: meta, cc: US, imp: 4, tier: 3, checks: [http] }
2555 + - { id: ai-meta-ai-hosts-pytorch-hub, name: "Meta AI hosts pytorch hub", host: pytorch.org, url: "https://pytorch.org/hub/", cat: ai, provider: meta, svc: meta, cc: US, imp: 4, tier: 3, checks: [http, dns] }
2556 + - { id: ai-meta-ai-hosts-pytorch-discuss, name: "Meta AI hosts pytorch discuss", host: discuss.pytorch.org, cat: ai, provider: meta, svc: meta, cc: US, imp: 4, tier: 3, checks: [http] }
2557 + - { id: ai-meta-ai-hosts-meta-ai-app, name: "Meta AI hosts meta ai app", host: www.meta.ai, url: "https://www.meta.ai/", cat: ai, provider: meta, svc: meta, cc: US, imp: 4, tier: 3, checks: [http, dns] }
2558 + - { id: ai-xai-hosts-docs, name: "xAI hosts docs", host: docs.x.ai, cat: ai, provider: xai, cc: US, imp: 3, tier: 4, checks: [http] }
2559 + - { id: ai-xai-hosts-status, name: "xAI hosts status page", host: status.x.ai, cat: ai, provider: xai, cc: US, imp: 3, tier: 4, checks: [http] }
2560 + - { id: ai-xai-hosts-console, name: "xAI hosts console", host: console.x.ai, cat: ai, provider: xai, cc: US, imp: 3, tier: 4, checks: [http] }
2561 + - { id: ai-xai-hosts-api-models, name: "xAI hosts api models", host: api.x.ai, url: "https://api.x.ai/v1/models", cat: ai, provider: xai, cc: US, imp: 3, tier: 4, checks: [http] }
2562 + - { id: ai-xai-hosts-grok-x, name: "xAI hosts grok x", host: x.com, url: "https://x.com/i/grok", cat: ai, provider: xai, cc: US, imp: 3, tier: 4, checks: [http] }
2563 + - { id: ai-deepseek-hosts-api-docs, name: "DeepSeek hosts api docs", host: api-docs.deepseek.com, cat: ai, provider: deepseek, cc: CN, imp: 4, tier: 3, checks: [http] }
2564 + - { id: ai-deepseek-hosts-platform, name: "DeepSeek hosts platform", host: platform.deepseek.com, cat: ai, provider: deepseek, cc: CN, imp: 4, tier: 3, checks: [http] }
2565 + - { id: ai-deepseek-hosts-status, name: "DeepSeek hosts status page", host: status.deepseek.com, cat: ai, provider: deepseek, cc: CN, imp: 4, tier: 3, checks: [http] }
2566 + - { id: ai-deepseek-hosts-api-models, name: "DeepSeek hosts api models", host: api.deepseek.com, url: "https://api.deepseek.com/models", cat: ai, provider: deepseek, cc: CN, imp: 4, tier: 3, checks: [http, dns] }
2567 + - { id: ai-moonshot, name: "Moonshot AI (Kimi)", host: www.moonshot.cn, cat: ai, provider: moonshot, svc: moonshot, cc: CN, imp: 3, tier: 4, checks: [http] }
2568 + - { id: ai-moonshot-platform, name: "Moonshot AI (Kimi) platform", host: platform.moonshot.cn, cat: ai, provider: moonshot, svc: moonshot, cc: CN, imp: 3, tier: 4, checks: [http] }
2569 + - { id: ai-moonshot-api, name: "Moonshot AI (Kimi) API", host: api.moonshot.cn, url: "https://api.moonshot.cn/v1/models", cat: ai, provider: moonshot, svc: moonshot, cc: CN, imp: 3, tier: 4, checks: [http] }
2570 + - { id: ai-moonshot-kimi-cn, name: "Moonshot AI (Kimi) kimi cn", host: kimi.moonshot.cn, cat: ai, provider: moonshot, svc: moonshot, cc: CN, imp: 3, tier: 4, checks: [http] }
2571 + - { id: ai-moonshot-kimi-ai, name: "Moonshot AI (Kimi) kimi ai", host: www.kimi.ai, cat: ai, provider: moonshot, svc: moonshot, cc: CN, imp: 3, tier: 4, checks: [http] }
2572 + - { id: ai-moonshot-platform-ai, name: "Moonshot AI (Kimi) platform ai", host: platform.moonshot.ai, cat: ai, provider: moonshot, svc: moonshot, cc: CN, imp: 3, tier: 4, checks: [http] }
2573 + - { id: ai-moonshot-api-ai, name: "Moonshot AI (Kimi) api ai", host: api.moonshot.ai, url: "https://api.moonshot.ai/v1/models", cat: ai, provider: moonshot, svc: moonshot, cc: CN, imp: 3, tier: 4, checks: [http] }
2574 + - { id: ai-zhipu, name: "Zhipu AI (GLM)", host: www.zhipuai.cn, cat: ai, provider: zhipu, cc: CN, imp: 3, tier: 4, checks: [http] }
2575 + - { id: ai-zhipu-open, name: "Zhipu AI (GLM) open source", host: open.bigmodel.cn, cat: ai, provider: zhipu, cc: CN, imp: 3, tier: 4, checks: [http] }
2576 + - { id: ai-zhipu-z-ai, name: "Zhipu AI (GLM) z ai", host: z.ai, cat: ai, provider: zhipu, cc: CN, imp: 3, tier: 4, checks: [http] }
2577 + - { id: ai-zhipu-api-z, name: "Zhipu AI (GLM) api z", host: api.z.ai, url: "https://api.z.ai/api/paas/v4/models", cat: ai, provider: zhipu, cc: CN, imp: 3, tier: 4, checks: [http] }
2578 + - { id: ai-zhipu-docs-z, name: "Zhipu AI (GLM) docs z", host: docs.z.ai, cat: ai, provider: zhipu, cc: CN, imp: 3, tier: 4, checks: [http] }
2579 + - { id: ai-zhipu-chat-z, name: "Zhipu AI (GLM) chat z", host: chat.z.ai, cat: ai, provider: zhipu, cc: CN, imp: 3, tier: 4, checks: [http] }
2580 + - { id: ai-baidu-ai-yiyan, name: "Baidu ERNIE / Qianfan yiyan", host: yiyan.baidu.com, url: "https://yiyan.baidu.com/welcome", cat: ai, provider: baidu, cc: CN, imp: 3, tier: 4, checks: [http] }
2581 + - { id: ai-baidu-ai-qianfan, name: "Baidu ERNIE / Qianfan qianfan", host: qianfan.cloud.baidu.com, cat: ai, provider: baidu, cc: CN, imp: 3, tier: 4, checks: [http] }
2582 + - { id: ai-baidu-ai-aistudio, name: "Baidu ERNIE / Qianfan aistudio", host: aistudio.baidu.com, cat: ai, provider: baidu, cc: CN, imp: 3, tier: 4, checks: [http] }
2583 + - { id: ai-baidu-ai-paddle, name: "Baidu ERNIE / Qianfan paddle", host: www.paddlepaddle.org.cn, cat: ai, provider: baidu, cc: CN, imp: 3, tier: 4, checks: [http] }
2584 + - { id: ai-baidu-ai-ernie, name: "Baidu ERNIE / Qianfan ernie", host: ernie.baidu.com, cat: ai, provider: baidu, cc: CN, imp: 3, tier: 4, checks: [http] }
2585 + - { id: ai-baidu-ai-cloud, name: "Baidu ERNIE / Qianfan cloud", host: cloud.baidu.com, url: "https://cloud.baidu.com/product/wenxinworkshop", cat: ai, provider: baidu, cc: CN, imp: 3, tier: 4, checks: [http] }
2586 + - { id: ai-baidu-ai-api, name: "Baidu ERNIE / Qianfan API", host: aip.baidubce.com, url: "https://aip.baidubce.com/", cat: ai, provider: baidu, cc: CN, imp: 3, tier: 4, checks: [http] }
2587 + - { id: ai-qwen-qwenlm, name: "Alibaba Qwen / DashScope / Bailian qwenlm", host: qwenlm.github.io, cat: ai, provider: alibaba, svc: alibaba, cc: CN, imp: 4, tier: 3, checks: [http] }
2588 + - { id: ai-qwen-dashscope, name: "Alibaba Qwen / DashScope / Bailian dashscope", host: dashscope.aliyuncs.com, url: "https://dashscope.aliyuncs.com/compatible-mode/v1/models", cat: ai, provider: alibaba, svc: alibaba, cc: CN, imp: 4, tier: 3, checks: [http, dns] }
2589 + - { id: ai-qwen-dashscope-intl, name: "Alibaba Qwen / DashScope / Bailian dashscope intl", host: dashscope-intl.aliyuncs.com, url: "https://dashscope-intl.aliyuncs.com/compatible-mode/v1/models", cat: ai, provider: alibaba, svc: alibaba, cc: CN, imp: 4, tier: 3, checks: [http, dns] }
2590 + - { id: ai-qwen-bailian, name: "Alibaba Qwen / DashScope / Bailian bailian", host: bailian.console.aliyun.com, cat: ai, provider: alibaba, svc: alibaba, cc: CN, imp: 4, tier: 3, checks: [http] }
2591 + - { id: ai-qwen-model-studio, name: "Alibaba Qwen / DashScope / Bailian model studio", host: www.alibabacloud.com, url: "https://www.alibabacloud.com/en/product/modelstudio", cat: ai, provider: alibaba, svc: alibaba, cc: CN, imp: 4, tier: 3, checks: [http, dns] }
2592 + - { id: ai-qwen-qwen-ai, name: "Alibaba Qwen / DashScope / Bailian qwen ai", host: qwen.ai, cat: ai, provider: alibaba, svc: alibaba, cc: CN, imp: 4, tier: 3, checks: [http] }
2593 + - { id: ai-qwen-help, name: "Alibaba Qwen / DashScope / Bailian help centre", host: help.aliyun.com, url: "https://help.aliyun.com/zh/model-studio/", cat: ai, provider: alibaba, svc: alibaba, cc: CN, imp: 4, tier: 3, checks: [http, dns] }
2594 + - { id: ai-bytedance-ai-volcengine, name: "ByteDance Doubao / Volcengine Ark volcengine", host: www.volcengine.com, url: "https://www.volcengine.com/product/ark", cat: ai, provider: bytedance, cc: CN, imp: 3, tier: 4, checks: [http] }
2595 + - { id: ai-bytedance-ai-ark, name: "ByteDance Doubao / Volcengine Ark ark", host: ark.cn-beijing.volces.com, url: "https://ark.cn-beijing.volces.com/api/v3/models", cat: ai, provider: bytedance, cc: CN, imp: 3, tier: 4, checks: [http] }
2596 + - { id: ai-bytedance-ai-seed, name: "ByteDance Doubao / Volcengine Ark seed", host: seed.bytedance.com, cat: ai, provider: bytedance, cc: CN, imp: 3, tier: 4, checks: [http] }
2597 + - { id: ai-bytedance-ai-coze, name: "ByteDance Doubao / Volcengine Ark coze", host: www.coze.com, cat: ai, provider: bytedance, cc: CN, imp: 3, tier: 4, checks: [http] }
2598 + - { id: ai-bytedance-ai-coze-cn, name: "ByteDance Doubao / Volcengine Ark coze cn", host: www.coze.cn, cat: ai, provider: bytedance, cc: CN, imp: 3, tier: 4, checks: [http] }
2599 + - { id: ai-bytedance-ai-byteplus, name: "ByteDance Doubao / Volcengine Ark byteplus", host: www.byteplus.com, url: "https://www.byteplus.com/en/product/ark", cat: ai, provider: bytedance, cc: CN, imp: 3, tier: 4, checks: [http] }
2600 + - { id: ai-bytedance-ai-api-byteplus, name: "ByteDance Doubao / Volcengine Ark api byteplus", host: ark.ap-southeast.bytepluses.com, url: "https://ark.ap-southeast.bytepluses.com/api/v3/models", cat: ai, provider: bytedance, cc: CN, imp: 3, tier: 4, checks: [http] }
2601 + - { id: ai-bytedance-ai-trae, name: "ByteDance Doubao / Volcengine Ark trae", host: www.trae.ai, cat: ai, provider: bytedance, cc: CN, imp: 3, tier: 4, checks: [http] }
2602 + - { id: ai-tencent-ai-hunyuan, name: "Tencent Hunyuan hunyuan", host: hunyuan.tencent.com, cat: ai, provider: tencent, svc: tencent, cc: CN, imp: 3, tier: 4, checks: [http] }
2603 + - { id: ai-tencent-ai-cloud, name: "Tencent Hunyuan cloud", host: cloud.tencent.com, url: "https://cloud.tencent.com/product/hunyuan", cat: ai, provider: tencent, svc: tencent, cc: CN, imp: 3, tier: 4, checks: [http] }
2604 + - { id: ai-tencent-ai-api, name: "Tencent Hunyuan API", host: api.hunyuan.cloud.tencent.com, url: "https://api.hunyuan.cloud.tencent.com/v1/models", cat: ai, provider: tencent, svc: tencent, cc: CN, imp: 3, tier: 4, checks: [http] }
2605 + - { id: ai-tencent-ai-yuanbao, name: "Tencent Hunyuan yuanbao", host: yuanbao.tencent.com, cat: ai, provider: tencent, svc: tencent, cc: CN, imp: 3, tier: 4, checks: [http] }
2606 + - { id: ai-tencent-ai-intl, name: "Tencent Hunyuan intl", host: www.tencentcloud.com, url: "https://www.tencentcloud.com/products/hunyuan", cat: ai, provider: tencent, svc: tencent, cc: CN, imp: 3, tier: 4, checks: [http] }
2607 + - { id: ai-iflytek-xinghuo, name: "iFlytek Spark xinghuo", host: xinghuo.xfyun.cn, cat: ai, provider: iflytek, cc: CN, imp: 2, tier: 4, checks: [http] }
2608 + - { id: ai-iflytek-xfyun, name: "iFlytek Spark xfyun", host: www.xfyun.cn, cat: ai, provider: iflytek, cc: CN, imp: 2, tier: 4, checks: [http] }
2609 + - { id: ai-iflytek-spark-api, name: "iFlytek Spark spark api", host: spark-api-open.xf-yun.com, url: "https://spark-api-open.xf-yun.com/v1/models", cat: ai, provider: iflytek, cc: CN, imp: 2, tier: 4, checks: [http] }
2610 + - { id: ai-minimax, name: "MiniMax", host: www.minimaxi.com, cat: ai, provider: minimax, cc: CN, imp: 3, tier: 4, checks: [http] }
2611 + - { id: ai-minimax-api, name: "MiniMax API", host: api.minimax.chat, url: "https://api.minimax.chat/v1/", cat: ai, provider: minimax, cc: CN, imp: 3, tier: 4, checks: [http] }
2612 + - { id: ai-minimax-intl, name: "MiniMax intl", host: www.minimax.io, cat: ai, provider: minimax, cc: CN, imp: 3, tier: 4, checks: [http] }
2613 + - { id: ai-minimax-api-intl, name: "MiniMax api intl", host: api.minimax.io, url: "https://api.minimax.io/v1/", cat: ai, provider: minimax, cc: CN, imp: 3, tier: 4, checks: [http] }
2614 + - { id: ai-minimax-platform, name: "MiniMax platform", host: platform.minimaxi.com, cat: ai, provider: minimax, cc: CN, imp: 3, tier: 4, checks: [http] }
2615 + - { id: ai-minimax-hailuo, name: "MiniMax hailuo", host: hailuoai.com, cat: ai, provider: minimax, cc: CN, imp: 3, tier: 4, checks: [http] }
2616 + - { id: ai-minimax-hailuo-video, name: "MiniMax hailuo video", host: hailuoai.video, cat: ai, provider: minimax, cc: CN, imp: 3, tier: 4, checks: [http] }
2617 + - { id: ai-minimax-chat, name: "MiniMax chat", host: chat.minimax.io, cat: ai, provider: minimax, cc: CN, imp: 3, tier: 4, checks: [http] }
2618 + - { id: ai-minimax-agent, name: "MiniMax agent", host: agent.minimax.io, cat: ai, provider: minimax, cc: CN, imp: 3, tier: 4, checks: [http] }
2619 + - { id: ai-01ai-01ai, name: "01.AI / StepFun / Baichuan / SenseTime 01ai", host: www.01.ai, cat: ai, provider: 01ai, cc: CN, imp: 2, tier: 4, checks: [http] }
2620 + - { id: ai-01ai-lingyiwanwu, name: "01.AI / StepFun / Baichuan / SenseTime lingyiwanwu", host: platform.lingyiwanwu.com, cat: ai, provider: 01ai, cc: CN, imp: 2, tier: 4, checks: [http] }
2621 + - { id: ai-01ai-api-01, name: "01.AI / StepFun / Baichuan / SenseTime api 01", host: api.lingyiwanwu.com, url: "https://api.lingyiwanwu.com/v1/models", cat: ai, provider: 01ai, cc: CN, imp: 2, tier: 4, checks: [http] }
2622 + - { id: ai-01ai-stepfun, name: "01.AI / StepFun / Baichuan / SenseTime stepfun", host: www.stepfun.com, cat: ai, provider: 01ai, cc: CN, imp: 2, tier: 4, checks: [http] }
2623 + - { id: ai-01ai-stepfun-platform, name: "01.AI / StepFun / Baichuan / SenseTime stepfun platform", host: platform.stepfun.com, cat: ai, provider: 01ai, cc: CN, imp: 2, tier: 4, checks: [http] }
2624 + - { id: ai-01ai-stepfun-api, name: "01.AI / StepFun / Baichuan / SenseTime stepfun api", host: api.stepfun.com, url: "https://api.stepfun.com/v1/models", cat: ai, provider: 01ai, cc: CN, imp: 2, tier: 4, checks: [http] }
2625 + - { id: ai-01ai-baichuan, name: "01.AI / StepFun / Baichuan / SenseTime baichuan", host: www.baichuan-ai.com, cat: ai, provider: 01ai, cc: CN, imp: 2, tier: 4, checks: [http] }
2626 + - { id: ai-01ai-baichuan-platform, name: "01.AI / StepFun / Baichuan / SenseTime baichuan platform", host: platform.baichuan-ai.com, cat: ai, provider: 01ai, cc: CN, imp: 2, tier: 4, checks: [http] }
2627 + - { id: ai-01ai-sensetime, name: "01.AI / StepFun / Baichuan / SenseTime sensetime", host: www.sensetime.com, cat: ai, provider: 01ai, cc: CN, imp: 2, tier: 4, checks: [http] }
2628 + - { id: ai-01ai-sensenova, name: "01.AI / StepFun / Baichuan / SenseTime sensenova", host: platform.sensenova.cn, cat: ai, provider: 01ai, cc: CN, imp: 2, tier: 4, checks: [http] }
2629 + - { id: ai-01ai-internlm, name: "01.AI / StepFun / Baichuan / SenseTime internlm", host: internlm.intern-ai.org.cn, cat: ai, provider: 01ai, cc: CN, imp: 2, tier: 4, checks: [http] }
2630 + - { id: ai-01ai-shlab, name: "01.AI / StepFun / Baichuan / SenseTime shlab", host: www.shlab.org.cn, cat: ai, provider: 01ai, cc: CN, imp: 2, tier: 4, checks: [http] }
2631 + - { id: ai-mistral-hosts-docs, name: "Mistral AI hosts docs", host: docs.mistral.ai, cat: ai, provider: mistral, svc: mistral, cc: FR, imp: 4, tier: 3, checks: [http] }
2632 + - { id: ai-mistral-hosts-console, name: "Mistral AI hosts console", host: console.mistral.ai, cat: ai, provider: mistral, svc: mistral, cc: FR, imp: 4, tier: 3, checks: [http] }
2633 + - { id: ai-mistral-hosts-status, name: "Mistral AI hosts status page", host: status.mistral.ai, url: "https://status.mistral.ai/", cat: ai, provider: mistral, svc: mistral, cc: FR, imp: 4, tier: 3, checks: [http, dns] }
2634 + - { id: ai-mistral-hosts-le-chat, name: "Mistral AI hosts le chat", host: chat.mistral.ai, url: "https://chat.mistral.ai/chat", cat: ai, provider: mistral, svc: mistral, cc: FR, imp: 4, tier: 3, checks: [http, dns] }
2635 + - { id: ai-mistral-hosts-api-models, name: "Mistral AI hosts api models", host: api.mistral.ai, url: "https://api.mistral.ai/v1/models", cat: ai, provider: mistral, svc: mistral, cc: FR, imp: 4, tier: 3, checks: [http, dns] }
2636 + - { id: ai-mistral-hosts-help, name: "Mistral AI hosts help centre", host: help.mistral.ai, cat: ai, provider: mistral, svc: mistral, cc: FR, imp: 4, tier: 3, checks: [http] }
2637 + - { id: ai-mistral-hosts-codestral, name: "Mistral AI hosts codestral", host: codestral.mistral.ai, url: "https://codestral.mistral.ai/v1/models", cat: ai, provider: mistral, svc: mistral, cc: FR, imp: 4, tier: 3, checks: [http, dns] }
2638 + - { id: ai-cohere-hosts-docs, name: "Cohere hosts docs", host: docs.cohere.com, cat: ai, provider: cohere, svc: cohere, cc: CA, imp: 3, tier: 4, checks: [http] }
2639 + - { id: ai-cohere-hosts-status, name: "Cohere hosts status page", host: status.cohere.com, cat: ai, provider: cohere, svc: cohere, cc: CA, imp: 3, tier: 4, checks: [http] }
2640 + - { id: ai-cohere-hosts-dashboard, name: "Cohere hosts dashboard", host: dashboard.cohere.com, cat: ai, provider: cohere, svc: cohere, cc: CA, imp: 3, tier: 4, checks: [http] }
2641 + - { id: ai-cohere-hosts-api-models, name: "Cohere hosts api models", host: api.cohere.com, url: "https://api.cohere.com/v1/models", cat: ai, provider: cohere, svc: cohere, cc: CA, imp: 3, tier: 4, checks: [http] }
2642 + - { id: ai-cohere-hosts-api-ai, name: "Cohere hosts api ai", host: api.cohere.ai, url: "https://api.cohere.ai/v1/models", cat: ai, provider: cohere, svc: cohere, cc: CA, imp: 3, tier: 4, checks: [http] }
2643 + - { id: ai-cohere-hosts-coral, name: "Cohere hosts coral", host: coral.cohere.com, cat: ai, provider: cohere, svc: cohere, cc: CA, imp: 3, tier: 4, checks: [http] }
2644 + - { id: ai-cohere-hosts-labs, name: "Cohere hosts labs", host: cohere.com, url: "https://cohere.com/research", cat: ai, provider: cohere, svc: cohere, cc: CA, imp: 3, tier: 4, checks: [http] }
2645 + - { id: ai-ai21-ai21, name: "AI21 Labs / Aleph Alpha / Reka / Writer ai21", host: www.ai21.com, cat: ai, provider: ai21, cc: null, imp: 2, tier: 4, checks: [http] }
2646 + - { id: ai-ai21-ai21-studio, name: "AI21 Labs / Aleph Alpha / Reka / Writer ai21 studio", host: studio.ai21.com, cat: ai, provider: ai21, cc: null, imp: 2, tier: 4, checks: [http] }
2647 + - { id: ai-ai21-ai21-api, name: "AI21 Labs / Aleph Alpha / Reka / Writer ai21 api", host: api.ai21.com, url: "https://api.ai21.com/studio/v1/", cat: ai, provider: ai21, cc: null, imp: 2, tier: 4, checks: [http] }
2648 + - { id: ai-ai21-ai21-docs, name: "AI21 Labs / Aleph Alpha / Reka / Writer ai21 docs", host: docs.ai21.com, cat: ai, provider: ai21, cc: null, imp: 2, tier: 4, checks: [http] }
2649 + - { id: ai-ai21-aleph, name: "AI21 Labs / Aleph Alpha / Reka / Writer aleph", host: aleph-alpha.com, cat: ai, provider: ai21, cc: null, imp: 2, tier: 4, checks: [http] }
2650 + - { id: ai-ai21-aleph-api, name: "AI21 Labs / Aleph Alpha / Reka / Writer aleph api", host: api.aleph-alpha.com, url: "https://api.aleph-alpha.com/version", cat: ai, provider: ai21, cc: null, imp: 2, tier: 4, checks: [http] }
2651 + - { id: ai-ai21-aleph-docs, name: "AI21 Labs / Aleph Alpha / Reka / Writer aleph docs", host: docs.aleph-alpha.com, cat: ai, provider: ai21, cc: null, imp: 2, tier: 4, checks: [http] }
2652 + - { id: ai-ai21-reka, name: "AI21 Labs / Aleph Alpha / Reka / Writer reka", host: www.reka.ai, cat: ai, provider: ai21, cc: null, imp: 2, tier: 4, checks: [http] }
2653 + - { id: ai-ai21-reka-api, name: "AI21 Labs / Aleph Alpha / Reka / Writer reka api", host: api.reka.ai, url: "https://api.reka.ai/v1/", cat: ai, provider: ai21, cc: null, imp: 2, tier: 4, checks: [http] }
2654 + - { id: ai-ai21-writer, name: "AI21 Labs / Aleph Alpha / Reka / Writer writer", host: writer.com, cat: ai, provider: ai21, cc: null, imp: 2, tier: 4, checks: [http] }
2655 + - { id: ai-ai21-writer-status, name: "AI21 Labs / Aleph Alpha / Reka / Writer writer status", host: status.writer.com, cat: ai, provider: ai21, cc: null, imp: 2, tier: 4, checks: [http] }
2656 + - { id: ai-ai21-writer-api, name: "AI21 Labs / Aleph Alpha / Reka / Writer writer api", host: api.writer.com, url: "https://api.writer.com/v1/models", cat: ai, provider: ai21, cc: null, imp: 2, tier: 4, checks: [http] }
2657 + - { id: ai-ai21-writer-dev, name: "AI21 Labs / Aleph Alpha / Reka / Writer writer dev", host: dev.writer.com, cat: ai, provider: ai21, cc: null, imp: 2, tier: 4, checks: [http] }
2658 + - { id: ai-perplexity-hosts-docs, name: "Perplexity hosts docs", host: docs.perplexity.ai, cat: ai, provider: perplexity, svc: perplexity, cc: US, imp: 3, tier: 4, checks: [http] }
2659 + - { id: ai-perplexity-hosts-status, name: "Perplexity hosts status page", host: status.perplexity.com, cat: ai, provider: perplexity, svc: perplexity, cc: US, imp: 3, tier: 4, checks: [http] }
2660 + - { id: ai-perplexity-hosts-labs, name: "Perplexity hosts labs", host: labs.perplexity.ai, cat: ai, provider: perplexity, svc: perplexity, cc: US, imp: 3, tier: 4, checks: [http] }
2661 + - { id: ai-perplexity-hosts-comet, name: "Perplexity hosts comet", host: www.perplexity.ai, url: "https://www.perplexity.ai/comet", cat: ai, provider: perplexity, svc: perplexity, cc: US, imp: 3, tier: 4, checks: [http] }
2662 + - { id: ai-perplexity-hosts-pplx, name: "Perplexity hosts pplx", host: pplx.ai, url: "https://pplx.ai/", cat: ai, provider: perplexity, svc: perplexity, cc: US, imp: 3, tier: 4, checks: [http] }
2663 + - { id: ai-stability-platform, name: "Stability AI platform", host: platform.stability.ai, cat: ai, provider: stability, svc: stability, cc: GB, imp: 3, tier: 4, checks: [http] }
2664 + - { id: ai-stability-api, name: "Stability AI API", host: api.stability.ai, url: "https://api.stability.ai/v1/engines/list", cat: ai, provider: stability, svc: stability, cc: GB, imp: 3, tier: 4, checks: [http] }
2665 + - { id: ai-stability-status, name: "Stability AI status page", host: status.stability.ai, cat: ai, provider: stability, svc: stability, cc: GB, imp: 3, tier: 4, checks: [http] }
2666 + - { id: ai-stability-dreamstudio, name: "Stability AI dreamstudio", host: dreamstudio.ai, cat: ai, provider: stability, svc: stability, cc: GB, imp: 3, tier: 4, checks: [http] }
2667 + - { id: ai-midjourney-hosts-docs, name: "Midjourney hosts docs", host: docs.midjourney.com, cat: ai, provider: midjourney, cc: US, imp: 3, tier: 4, checks: [http] }
2668 + - { id: ai-midjourney-hosts-alpha, name: "Midjourney hosts alpha", host: alpha.midjourney.com, cat: ai, provider: midjourney, cc: US, imp: 3, tier: 4, checks: [http] }
2669 + - { id: ai-midjourney-hosts-legacy, name: "Midjourney hosts legacy", host: midjourney.com, url: "https://midjourney.com/", cat: ai, provider: midjourney, cc: US, imp: 3, tier: 4, checks: [http] }
2670 + - { id: ai-midjourney-hosts-cdn, name: "Midjourney hosts CDN", host: cdn.midjourney.com, url: "https://cdn.midjourney.com/", cat: ai, provider: midjourney, cc: US, imp: 3, tier: 4, checks: [http] }
2671 + - { id: ai-runway-hosts-app, name: "Runway hosts app", host: app.runwayml.com, cat: ai, provider: runway, svc: runway, cc: US, imp: 3, tier: 4, checks: [http] }
2672 + - { id: ai-runway-hosts-docs, name: "Runway hosts docs", host: docs.dev.runwayml.com, cat: ai, provider: runway, svc: runway, cc: US, imp: 3, tier: 4, checks: [http] }
2673 + - { id: ai-runway-hosts-dev, name: "Runway hosts dev", host: dev.runwayml.com, cat: ai, provider: runway, svc: runway, cc: US, imp: 3, tier: 4, checks: [http] }
2674 + - { id: ai-runway-hosts-api, name: "Runway hosts API", host: api.dev.runwayml.com, url: "https://api.dev.runwayml.com/v1/", cat: ai, provider: runway, svc: runway, cc: US, imp: 3, tier: 4, checks: [http] }
2675 + - { id: ai-runway-hosts-status, name: "Runway hosts status page", host: status.runwayml.com, cat: ai, provider: runway, svc: runway, cc: US, imp: 3, tier: 4, checks: [http] }
2676 + - { id: ai-runway-hosts-help, name: "Runway hosts help centre", host: help.runwayml.com, cat: ai, provider: runway, svc: runway, cc: US, imp: 3, tier: 4, checks: [http] }
2677 + - { id: ai-runway-hosts-research, name: "Runway hosts research", host: runwayml.com, url: "https://runwayml.com/research", cat: ai, provider: runway, svc: runway, cc: US, imp: 3, tier: 4, checks: [http] }
2678 + - { id: ai-pika-pika, name: "Pika / Luma / Kling / Hailuo / Sora peers pika", host: pika.art, cat: ai, provider: pika, cc: null, imp: 2, tier: 4, checks: [http] }
2679 + - { id: ai-pika-luma, name: "Pika / Luma / Kling / Hailuo / Sora peers luma", host: lumalabs.ai, cat: ai, provider: pika, cc: null, imp: 2, tier: 4, checks: [http] }
2680 + - { id: ai-pika-luma-api, name: "Pika / Luma / Kling / Hailuo / Sora peers luma api", host: api.lumalabs.ai, url: "https://api.lumalabs.ai/dream-machine/v1/generations", cat: ai, provider: pika, cc: null, imp: 2, tier: 4, checks: [http] }
2681 + - { id: ai-pika-luma-docs, name: "Pika / Luma / Kling / Hailuo / Sora peers luma docs", host: docs.lumalabs.ai, cat: ai, provider: pika, cc: null, imp: 2, tier: 4, checks: [http] }
2682 + - { id: ai-pika-luma-status, name: "Pika / Luma / Kling / Hailuo / Sora peers luma status", host: status.lumalabs.ai, cat: ai, provider: pika, cc: null, imp: 2, tier: 4, checks: [http] }
2683 + - { id: ai-pika-kling, name: "Pika / Luma / Kling / Hailuo / Sora peers kling", host: klingai.com, cat: ai, provider: pika, cc: null, imp: 2, tier: 4, checks: [http] }
2684 + - { id: ai-pika-kling-app, name: "Pika / Luma / Kling / Hailuo / Sora peers kling app", host: app.klingai.com, cat: ai, provider: pika, cc: null, imp: 2, tier: 4, checks: [http] }
2685 + - { id: ai-pika-kling-api, name: "Pika / Luma / Kling / Hailuo / Sora peers kling api", host: api.klingai.com, url: "https://api.klingai.com/", cat: ai, provider: pika, cc: null, imp: 2, tier: 4, checks: [http] }
2686 + - { id: ai-pika-kling-cn, name: "Pika / Luma / Kling / Hailuo / Sora peers kling cn", host: klingai.kuaishou.com, cat: ai, provider: pika, cc: null, imp: 2, tier: 4, checks: [http] }
2687 + - { id: ai-pika-vidu, name: "Pika / Luma / Kling / Hailuo / Sora peers vidu", host: www.vidu.com, cat: ai, provider: pika, cc: null, imp: 2, tier: 4, checks: [http] }
2688 + - { id: ai-pika-heygen, name: "Pika / Luma / Kling / Hailuo / Sora peers heygen", host: www.heygen.com, cat: ai, provider: pika, cc: null, imp: 2, tier: 4, checks: [http] }
2689 + - { id: ai-pika-heygen-status, name: "Pika / Luma / Kling / Hailuo / Sora peers heygen status", host: status.heygen.com, cat: ai, provider: pika, cc: null, imp: 2, tier: 4, checks: [http] }
2690 + - { id: ai-pika-heygen-api, name: "Pika / Luma / Kling / Hailuo / Sora peers heygen api", host: api.heygen.com, url: "https://api.heygen.com/v1/", cat: ai, provider: pika, cc: null, imp: 2, tier: 4, checks: [http] }
2691 + - { id: ai-pika-synthesia, name: "Pika / Luma / Kling / Hailuo / Sora peers synthesia", host: www.synthesia.io, cat: ai, provider: pika, cc: null, imp: 2, tier: 4, checks: [http] }
2692 + - { id: ai-pika-synthesia-status, name: "Pika / Luma / Kling / Hailuo / Sora peers synthesia status", host: status.synthesia.io, cat: ai, provider: pika, cc: null, imp: 2, tier: 4, checks: [http] }
2693 + - { id: ai-pika-d-id, name: "Pika / Luma / Kling / Hailuo / Sora peers d id", host: www.d-id.com, cat: ai, provider: pika, cc: null, imp: 2, tier: 4, checks: [http] }
2694 + - { id: ai-pika-d-id-status, name: "Pika / Luma / Kling / Hailuo / Sora peers d id status", host: status.d-id.com, cat: ai, provider: pika, cc: null, imp: 2, tier: 4, checks: [http] }
2695 + - { id: ai-pika-hedra, name: "Pika / Luma / Kling / Hailuo / Sora peers hedra", host: www.hedra.com, cat: ai, provider: pika, cc: null, imp: 2, tier: 4, checks: [http] }
2696 + - { id: ai-pika-captions, name: "Pika / Luma / Kling / Hailuo / Sora peers captions", host: www.captions.ai, cat: ai, provider: pika, cc: null, imp: 2, tier: 4, checks: [http] }
2697 + - { id: ai-pika-invideo, name: "Pika / Luma / Kling / Hailuo / Sora peers invideo", host: invideo.io, cat: ai, provider: pika, cc: null, imp: 2, tier: 4, checks: [http] }
2698 + - { id: ai-pika-opus, name: "Pika / Luma / Kling / Hailuo / Sora peers opus", host: www.opus.pro, cat: ai, provider: pika, cc: null, imp: 2, tier: 4, checks: [http] }
2699 + - { id: ai-pika-descript-status, name: "Pika / Luma / Kling / Hailuo / Sora peers descript status", host: status.descript.com, cat: ai, provider: pika, cc: null, imp: 2, tier: 4, checks: [http] }
2700 + - { id: ai-pika-descript-www, name: "Pika / Luma / Kling / Hailuo / Sora peers descript www", host: www.descript.com, cat: ai, provider: pika, cc: null, imp: 2, tier: 4, checks: [http] }
2701 + - { id: ai-elevenlabs-hosts-elevenlabs-status, name: "Voice AI hosts elevenlabs status", host: status.elevenlabs.io, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2702 + - { id: ai-elevenlabs-hosts-elevenlabs-api, name: "Voice AI hosts elevenlabs api", host: api.elevenlabs.io, url: "https://api.elevenlabs.io/v1/models", cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2703 + - { id: ai-elevenlabs-hosts-elevenlabs-docs, name: "Voice AI hosts elevenlabs docs", host: elevenlabs.io, url: "https://elevenlabs.io/docs", cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2704 + - { id: ai-elevenlabs-hosts-elevenlabs-help, name: "Voice AI hosts elevenlabs help", host: help.elevenlabs.io, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2705 + - { id: ai-elevenlabs-hosts-elevenlabs-us, name: "Voice AI hosts elevenlabs us", host: api.us.elevenlabs.io, url: "https://api.us.elevenlabs.io/v1/models", cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2706 + - { id: ai-elevenlabs-hosts-murf, name: "Voice AI hosts murf", host: murf.ai, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2707 + - { id: ai-elevenlabs-hosts-resemble, name: "Voice AI hosts resemble", host: www.resemble.ai, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2708 + - { id: ai-elevenlabs-hosts-wellsaid, name: "Voice AI hosts wellsaid", host: wellsaidlabs.com, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2709 + - { id: ai-elevenlabs-hosts-speechify, name: "Voice AI hosts speechify", host: speechify.com, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2710 + - { id: ai-elevenlabs-hosts-speechify-api, name: "Voice AI hosts speechify api", host: api.sws.speechify.com, url: "https://api.sws.speechify.com/v1/", cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2711 + - { id: ai-elevenlabs-hosts-cartesia, name: "Voice AI hosts cartesia", host: cartesia.ai, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2712 + - { id: ai-elevenlabs-hosts-cartesia-api, name: "Voice AI hosts cartesia api", host: api.cartesia.ai, url: "https://api.cartesia.ai/", cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2713 + - { id: ai-elevenlabs-hosts-cartesia-status, name: "Voice AI hosts cartesia status", host: status.cartesia.ai, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2714 + - { id: ai-elevenlabs-hosts-deepgram, name: "Voice AI hosts deepgram", host: deepgram.com, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2715 + - { id: ai-elevenlabs-hosts-deepgram-status, name: "Voice AI hosts deepgram status", host: status.deepgram.com, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2716 + - { id: ai-elevenlabs-hosts-deepgram-api, name: "Voice AI hosts deepgram api", host: api.deepgram.com, url: "https://api.deepgram.com/v1/projects", cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2717 + - { id: ai-elevenlabs-hosts-deepgram-developers, name: "Voice AI hosts deepgram developers", host: developers.deepgram.com, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2718 + - { id: ai-elevenlabs-hosts-assemblyai, name: "Voice AI hosts assemblyai", host: www.assemblyai.com, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2719 + - { id: ai-elevenlabs-hosts-assemblyai-status, name: "Voice AI hosts assemblyai status", host: status.assemblyai.com, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2720 + - { id: ai-elevenlabs-hosts-assemblyai-api, name: "Voice AI hosts assemblyai api", host: api.assemblyai.com, url: "https://api.assemblyai.com/v2/transcript", cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2721 + - { id: ai-elevenlabs-hosts-speechmatics, name: "Voice AI hosts speechmatics", host: www.speechmatics.com, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2722 + - { id: ai-elevenlabs-hosts-speechmatics-status, name: "Voice AI hosts speechmatics status", host: status.speechmatics.com, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2723 + - { id: ai-elevenlabs-hosts-speechmatics-api, name: "Voice AI hosts speechmatics api", host: asr.api.speechmatics.com, url: "https://asr.api.speechmatics.com/v2/", cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2724 + - { id: ai-elevenlabs-hosts-rev, name: "Voice AI hosts rev", host: www.rev.com, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2725 + - { id: ai-elevenlabs-hosts-rev-ai, name: "Voice AI hosts rev ai", host: www.rev.ai, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2726 + - { id: ai-elevenlabs-hosts-rev-api, name: "Voice AI hosts rev api", host: api.rev.ai, url: "https://api.rev.ai/speechtotext/v1/", cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2727 + - { id: ai-elevenlabs-hosts-gladia, name: "Voice AI hosts gladia", host: www.gladia.io, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2728 + - { id: ai-elevenlabs-hosts-gladia-api, name: "Voice AI hosts gladia api", host: api.gladia.io, url: "https://api.gladia.io/", cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2729 + - { id: ai-elevenlabs-hosts-whisper-api, name: "Voice AI hosts whisper api", host: api.openai.com, url: "https://api.openai.com/v1/models/whisper-1", cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2730 + - { id: ai-elevenlabs-hosts-picovoice, name: "Voice AI hosts picovoice", host: picovoice.ai, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2731 + - { id: ai-elevenlabs-hosts-vapi, name: "Voice AI hosts vapi", host: vapi.ai, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2732 + - { id: ai-elevenlabs-hosts-vapi-status, name: "Voice AI hosts vapi status", host: status.vapi.ai, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2733 + - { id: ai-elevenlabs-hosts-vapi-api, name: "Voice AI hosts vapi api", host: api.vapi.ai, url: "https://api.vapi.ai/", cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2734 + - { id: ai-elevenlabs-hosts-retell, name: "Voice AI hosts retell", host: www.retellai.com, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2735 + - { id: ai-elevenlabs-hosts-retell-status, name: "Voice AI hosts retell status", host: status.retellai.com, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2736 + - { id: ai-elevenlabs-hosts-bland, name: "Voice AI hosts bland", host: www.bland.ai, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2737 + - { id: ai-elevenlabs-hosts-bland-status, name: "Voice AI hosts bland status", host: status.bland.ai, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2738 + - { id: ai-elevenlabs-hosts-hume, name: "Voice AI hosts hume", host: www.hume.ai, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2739 + - { id: ai-elevenlabs-hosts-hume-api, name: "Voice AI hosts hume api", host: api.hume.ai, url: "https://api.hume.ai/v0/", cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2740 + - { id: ai-elevenlabs-hosts-hume-status, name: "Voice AI hosts hume status", host: status.hume.ai, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2741 + - { id: ai-elevenlabs-hosts-sesame, name: "Voice AI hosts sesame", host: www.sesame.com, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2742 + - { id: ai-elevenlabs-hosts-kyutai, name: "Voice AI hosts kyutai", host: kyutai.org, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2743 + - { id: ai-elevenlabs-hosts-unmute, name: "Voice AI hosts unmute", host: unmute.sh, cat: ai, provider: elevenlabs, svc: elevenlabs, cc: US, imp: 3, tier: 4, checks: [http] }
2744 + - { id: ai-suno-hosts-suno-cdn, name: "Music AI hosts suno cdn", host: cdn1.suno.ai, url: "https://cdn1.suno.ai/", cat: ai, provider: suno, cc: US, imp: 2, tier: 4, checks: [http] }
2745 + - { id: ai-suno-hosts-suno-help, name: "Music AI hosts suno help", host: help.suno.com, cat: ai, provider: suno, cc: US, imp: 2, tier: 4, checks: [http] }
2746 + - { id: ai-suno-hosts-udio, name: "Music AI hosts udio", host: www.udio.com, cat: ai, provider: suno, cc: US, imp: 2, tier: 4, checks: [http] }
2747 + - { id: ai-suno-hosts-stable-audio, name: "Music AI hosts stable audio", host: stableaudio.com, cat: ai, provider: suno, cc: US, imp: 2, tier: 4, checks: [http] }
2748 + - { id: ai-suno-hosts-mubert, name: "Music AI hosts mubert", host: mubert.com, cat: ai, provider: suno, cc: US, imp: 2, tier: 4, checks: [http] }
2749 + - { id: ai-suno-hosts-aiva, name: "Music AI hosts aiva", host: www.aiva.ai, cat: ai, provider: suno, cc: US, imp: 2, tier: 4, checks: [http] }
2750 + - { id: ai-suno-hosts-soundraw, name: "Music AI hosts soundraw", host: soundraw.io, cat: ai, provider: suno, cc: US, imp: 2, tier: 4, checks: [http] }
2751 + - { id: ai-suno-hosts-boomy, name: "Music AI hosts boomy", host: boomy.com, cat: ai, provider: suno, cc: US, imp: 2, tier: 4, checks: [http] }
2752 + - { id: ai-suno-hosts-beatoven, name: "Music AI hosts beatoven", host: www.beatoven.ai, cat: ai, provider: suno, cc: US, imp: 2, tier: 4, checks: [http] }
2753 + - { id: ai-suno-hosts-loudly, name: "Music AI hosts loudly", host: www.loudly.com, cat: ai, provider: suno, cc: US, imp: 2, tier: 4, checks: [http] }
2754 + - { id: ai-suno-hosts-splash, name: "Music AI hosts splash", host: www.splashmusic.com, cat: ai, provider: suno, cc: US, imp: 2, tier: 4, checks: [http] }
2755 + - { id: ai-suno-hosts-riffusion, name: "Music AI hosts riffusion", host: www.riffusion.com, cat: ai, provider: suno, cc: US, imp: 2, tier: 4, checks: [http] }
2756 + - { id: ai-character-hosts-character-beta, name: "Consumer AI chat hosts character beta", host: beta.character.ai, cat: ai, provider: character-ai, cc: US, imp: 3, tier: 4, checks: [http] }
2757 + - { id: ai-character-hosts-character-plus, name: "Consumer AI chat hosts character plus", host: plus.character.ai, cat: ai, provider: character-ai, cc: US, imp: 3, tier: 4, checks: [http] }
2758 + - { id: ai-character-hosts-character-neo, name: "Consumer AI chat hosts character neo", host: neo.character.ai, url: "https://neo.character.ai/", cat: ai, provider: character-ai, cc: US, imp: 3, tier: 4, checks: [http] }
2759 + - { id: ai-character-hosts-character-status, name: "Consumer AI chat hosts character status", host: status.character.ai, cat: ai, provider: character-ai, cc: US, imp: 3, tier: 4, checks: [http] }
2760 + - { id: ai-character-hosts-character-book, name: "Consumer AI chat hosts character book", host: book.character.ai, cat: ai, provider: character-ai, cc: US, imp: 3, tier: 4, checks: [http] }
2761 + - { id: ai-character-hosts-poe-api, name: "Consumer AI chat hosts poe api", host: api.poe.com, url: "https://api.poe.com/", cat: ai, provider: character-ai, cc: US, imp: 3, tier: 4, checks: [http] }
2762 + - { id: ai-character-hosts-poe-status, name: "Consumer AI chat hosts poe status", host: status.poe.com, cat: ai, provider: character-ai, cc: US, imp: 3, tier: 4, checks: [http] }
2763 + - { id: ai-character-hosts-poe-creator, name: "Consumer AI chat hosts poe creator", host: creator.poe.com, cat: ai, provider: character-ai, cc: US, imp: 3, tier: 4, checks: [http] }
2764 + - { id: ai-character-hosts-you-api, name: "Consumer AI chat hosts you api", host: api.you.com, url: "https://api.you.com/", cat: ai, provider: character-ai, cc: US, imp: 3, tier: 4, checks: [http] }
2765 + - { id: ai-character-hosts-you-docs, name: "Consumer AI chat hosts you docs", host: documentation.you.com, cat: ai, provider: character-ai, cc: US, imp: 3, tier: 4, checks: [http] }
2766 + - { id: ai-character-hosts-pi, name: "Consumer AI chat hosts pi", host: pi.ai, cat: ai, provider: character-ai, cc: US, imp: 3, tier: 4, checks: [http] }
2767 + - { id: ai-character-hosts-inflection, name: "Consumer AI chat hosts inflection", host: inflection.ai, cat: ai, provider: character-ai, cc: US, imp: 3, tier: 4, checks: [http] }
2768 + - { id: ai-character-hosts-heypi, name: "Consumer AI chat hosts heypi", host: heypi.com, url: "https://heypi.com/", cat: ai, provider: character-ai, cc: US, imp: 3, tier: 4, checks: [http] }
2769 + - { id: ai-character-hosts-replika, name: "Consumer AI chat hosts replika", host: replika.com, cat: ai, provider: character-ai, cc: US, imp: 3, tier: 4, checks: [http] }
2770 + - { id: ai-character-hosts-replika-my, name: "Consumer AI chat hosts replika my", host: my.replika.com, cat: ai, provider: character-ai, cc: US, imp: 3, tier: 4, checks: [http] }
2771 + - { id: ai-character-hosts-chai, name: "Consumer AI chat hosts chai", host: www.chai-research.com, cat: ai, provider: character-ai, cc: US, imp: 3, tier: 4, checks: [http] }
2772 + - { id: ai-character-hosts-janitor, name: "Consumer AI chat hosts janitor", host: janitorai.com, cat: ai, provider: character-ai, cc: US, imp: 3, tier: 4, checks: [http] }
2773 + - { id: ai-character-hosts-talkie, name: "Consumer AI chat hosts talkie", host: www.talkie-ai.com, cat: ai, provider: character-ai, cc: US, imp: 3, tier: 4, checks: [http] }
2774 + - { id: ai-character-hosts-candy, name: "Consumer AI chat hosts candy", host: candy.ai, cat: ai, provider: character-ai, cc: US, imp: 3, tier: 4, checks: [http] }
2775 + - { id: ai-character-hosts-crushon, name: "Consumer AI chat hosts crushon", host: crushon.ai, cat: ai, provider: character-ai, cc: US, imp: 3, tier: 4, checks: [http] }
2776 + - { id: ai-character-hosts-spicychat, name: "Consumer AI chat hosts spicychat", host: spicychat.ai, cat: ai, provider: character-ai, cc: US, imp: 3, tier: 4, checks: [http] }
2777 + - { id: ai-character-hosts-kindroid, name: "Consumer AI chat hosts kindroid", host: kindroid.ai, cat: ai, provider: character-ai, cc: US, imp: 3, tier: 4, checks: [http] }
2778 + - { id: ai-character-hosts-nomi, name: "Consumer AI chat hosts nomi", host: nomi.ai, cat: ai, provider: character-ai, cc: US, imp: 3, tier: 4, checks: [http] }
2779 + - { id: ai-groq-hosts-console, name: "Groq hosts console", host: console.groq.com, cat: ai, provider: groq, svc: groq, cc: US, imp: 3, tier: 4, checks: [http] }
2780 + - { id: ai-groq-hosts-status, name: "Groq hosts status page", host: groqstatus.com, cat: ai, provider: groq, svc: groq, cc: US, imp: 3, tier: 4, checks: [http] }
2781 + - { id: ai-groq-hosts-api-models, name: "Groq hosts api models", host: api.groq.com, url: "https://api.groq.com/openai/v1/models", cat: ai, provider: groq, svc: groq, cc: US, imp: 3, tier: 4, checks: [http] }
2782 + - { id: ai-groq-hosts-chat, name: "Groq hosts chat", host: chat.groq.com, cat: ai, provider: groq, svc: groq, cc: US, imp: 3, tier: 4, checks: [http] }
2783 + - { id: ai-groq-hosts-wow, name: "Groq hosts wow", host: wow.groq.com, cat: ai, provider: groq, svc: groq, cc: US, imp: 3, tier: 4, checks: [http] }
2784 + - { id: ai-cerebras, name: "Cerebras", host: www.cerebras.ai, cat: ai, provider: cerebras, svc: cerebras, cc: US, imp: 3, tier: 4, checks: [http] }
2785 + - { id: ai-cerebras-cloud, name: "Cerebras cloud", host: cloud.cerebras.ai, cat: ai, provider: cerebras, svc: cerebras, cc: US, imp: 3, tier: 4, checks: [http] }
2786 + - { id: ai-cerebras-api, name: "Cerebras API", host: api.cerebras.ai, url: "https://api.cerebras.ai/v1/models", cat: ai, provider: cerebras, svc: cerebras, cc: US, imp: 3, tier: 4, checks: [http] }
2787 + - { id: ai-cerebras-inference, name: "Cerebras inference", host: inference.cerebras.ai, cat: ai, provider: cerebras, svc: cerebras, cc: US, imp: 3, tier: 4, checks: [http] }
2788 + - { id: ai-cerebras-docs, name: "Cerebras docs", host: inference-docs.cerebras.ai, cat: ai, provider: cerebras, svc: cerebras, cc: US, imp: 3, tier: 4, checks: [http] }
2789 + - { id: ai-cerebras-status, name: "Cerebras status page", host: status.cerebras.ai, cat: ai, provider: cerebras, svc: cerebras, cc: US, imp: 3, tier: 4, checks: [http] }
2790 + - { id: ai-cerebras-cerebras-net, name: "Cerebras cerebras net", host: cerebras.net, cat: ai, provider: cerebras, svc: cerebras, cc: US, imp: 3, tier: 4, checks: [http] }
2791 + - { id: ai-sambanova, name: "SambaNova", host: sambanova.ai, cat: ai, provider: sambanova, svc: sambanova, cc: US, imp: 2, tier: 4, checks: [http] }
2792 + - { id: ai-sambanova-cloud, name: "SambaNova cloud", host: cloud.sambanova.ai, cat: ai, provider: sambanova, svc: sambanova, cc: US, imp: 2, tier: 4, checks: [http] }
2793 + - { id: ai-sambanova-api, name: "SambaNova API", host: api.sambanova.ai, url: "https://api.sambanova.ai/v1/models", cat: ai, provider: sambanova, svc: sambanova, cc: US, imp: 2, tier: 4, checks: [http] }
2794 + - { id: ai-sambanova-docs, name: "SambaNova docs", host: docs.sambanova.ai, cat: ai, provider: sambanova, svc: sambanova, cc: US, imp: 2, tier: 4, checks: [http] }
2795 + - { id: ai-sambanova-status, name: "SambaNova status page", host: status.sambanova.ai, cat: ai, provider: sambanova, svc: sambanova, cc: US, imp: 2, tier: 4, checks: [http] }
2796 + - { id: ai-sambanova-community, name: "SambaNova community", host: community.sambanova.ai, cat: ai, provider: sambanova, svc: sambanova, cc: US, imp: 2, tier: 4, checks: [http] }
2797 + - { id: ai-together-hosts-api-models, name: "Together AI hosts api models", host: api.together.xyz, url: "https://api.together.xyz/v1/models", cat: ai, provider: together, cc: US, imp: 3, tier: 4, checks: [http] }
2798 + - { id: ai-together-hosts-docs, name: "Together AI hosts docs", host: docs.together.ai, cat: ai, provider: together, cc: US, imp: 3, tier: 4, checks: [http] }
2799 + - { id: ai-together-hosts-status, name: "Together AI hosts status page", host: status.together.ai, cat: ai, provider: together, cc: US, imp: 3, tier: 4, checks: [http] }
2800 + - { id: ai-together-hosts-together-xyz, name: "Together AI hosts together xyz", host: together.xyz, url: "https://together.xyz/", cat: ai, provider: together, cc: US, imp: 3, tier: 4, checks: [http] }
2801 + - { id: ai-together-hosts-chat, name: "Together AI hosts chat", host: chat.together.ai, cat: ai, provider: together, cc: US, imp: 3, tier: 4, checks: [http] }
2802 + - { id: ai-fireworks-hosts-api-models, name: "Fireworks AI hosts api models", host: api.fireworks.ai, url: "https://api.fireworks.ai/inference/v1/models", cat: ai, provider: fireworks, svc: fireworks, cc: US, imp: 3, tier: 4, checks: [http] }
2803 + - { id: ai-fireworks-hosts-docs, name: "Fireworks AI hosts docs", host: docs.fireworks.ai, cat: ai, provider: fireworks, svc: fireworks, cc: US, imp: 3, tier: 4, checks: [http] }
2804 + - { id: ai-fireworks-hosts-status, name: "Fireworks AI hosts status page", host: status.fireworks.ai, cat: ai, provider: fireworks, svc: fireworks, cc: US, imp: 3, tier: 4, checks: [http] }
2805 + - { id: ai-anyscale, name: "Anyscale / Ray", host: www.anyscale.com, cat: ai, provider: anyscale, cc: US, imp: 2, tier: 4, checks: [http] }
2806 + - { id: ai-anyscale-status, name: "Anyscale / Ray status page", host: status.anyscale.com, cat: ai, provider: anyscale, cc: US, imp: 2, tier: 4, checks: [http] }
2807 + - { id: ai-anyscale-docs, name: "Anyscale / Ray docs", host: docs.anyscale.com, cat: ai, provider: anyscale, cc: US, imp: 2, tier: 4, checks: [http] }
2808 + - { id: ai-anyscale-ray, name: "Anyscale / Ray ray", host: www.ray.io, cat: ai, provider: anyscale, cc: US, imp: 2, tier: 4, checks: [http] }
2809 + - { id: ai-anyscale-ray-docs, name: "Anyscale / Ray ray docs", host: docs.ray.io, cat: ai, provider: anyscale, cc: US, imp: 2, tier: 4, checks: [http] }
2810 + - { id: ai-modal-hosts-status, name: "Modal hosts status page", host: status.modal.com, cat: ai, provider: modal, cc: US, imp: 3, tier: 4, checks: [http] }
2811 + - { id: ai-modal-hosts-docs, name: "Modal hosts docs", host: modal.com, url: "https://modal.com/docs", cat: ai, provider: modal, cc: US, imp: 3, tier: 4, checks: [http] }
2812 + - { id: ai-modal-hosts-api, name: "Modal hosts API", host: api.modal.com, url: "https://api.modal.com/", cat: ai, provider: modal, cc: US, imp: 3, tier: 4, checks: [http] }
2813 + - { id: ai-baseten, name: "Baseten", host: www.baseten.co, cat: ai, provider: baseten, svc: baseten, cc: US, imp: 2, tier: 4, checks: [http] }
2814 + - { id: ai-baseten-docs, name: "Baseten docs", host: docs.baseten.co, cat: ai, provider: baseten, svc: baseten, cc: US, imp: 2, tier: 4, checks: [http] }
2815 + - { id: ai-baseten-status, name: "Baseten status page", host: status.baseten.co, cat: ai, provider: baseten, svc: baseten, cc: US, imp: 2, tier: 4, checks: [http] }
2816 + - { id: ai-baseten-api, name: "Baseten API", host: api.baseten.co, url: "https://api.baseten.co/v1/models", cat: ai, provider: baseten, svc: baseten, cc: US, imp: 2, tier: 4, checks: [http] }
2817 + - { id: ai-runpod, name: "RunPod", host: www.runpod.io, cat: ai, provider: runpod, cc: US, imp: 3, tier: 4, checks: [http] }
2818 + - { id: ai-runpod-docs, name: "RunPod docs", host: docs.runpod.io, cat: ai, provider: runpod, cc: US, imp: 3, tier: 4, checks: [http] }
2819 + - { id: ai-runpod-status, name: "RunPod status page", host: uptime.runpod.io, cat: ai, provider: runpod, cc: US, imp: 3, tier: 4, checks: [http] }
2820 + - { id: ai-runpod-api, name: "RunPod API", host: api.runpod.io, url: "https://api.runpod.io/graphql", cat: ai, provider: runpod, cc: US, imp: 3, tier: 4, checks: [http] }
2821 + - { id: ai-runpod-console, name: "RunPod console", host: console.runpod.io, cat: ai, provider: runpod, cc: US, imp: 3, tier: 4, checks: [http] }
2822 + - { id: ai-runpod-rest, name: "RunPod rest", host: rest.runpod.io, url: "https://rest.runpod.io/v1/", cat: ai, provider: runpod, cc: US, imp: 3, tier: 4, checks: [http] }
2823 + - { id: ai-lambda-hosts-status, name: "Lambda hosts status page", host: status.lambdalabs.com, cat: ai, provider: lambda-labs, svc: lambda-labs, cc: US, imp: 3, tier: 4, checks: [http] }
2824 + - { id: ai-lambda-hosts-docs, name: "Lambda hosts docs", host: docs.lambda.ai, cat: ai, provider: lambda-labs, svc: lambda-labs, cc: US, imp: 3, tier: 4, checks: [http] }
2825 + - { id: ai-lambda-hosts-cloud, name: "Lambda hosts cloud", host: cloud.lambda.ai, cat: ai, provider: lambda-labs, svc: lambda-labs, cc: US, imp: 3, tier: 4, checks: [http] }
2826 + - { id: ai-lambda-hosts-lambdalabs, name: "Lambda hosts lambdalabs", host: lambdalabs.com, url: "https://lambdalabs.com/", cat: ai, provider: lambda-labs, svc: lambda-labs, cc: US, imp: 3, tier: 4, checks: [http] }
2827 + - { id: ai-coreweave-hosts-status, name: "CoreWeave hosts status page", host: status.coreweave.com, cat: ai, provider: coreweave, svc: coreweave, cc: US, imp: 3, tier: 4, checks: [http] }
2828 + - { id: ai-coreweave-hosts-docs, name: "CoreWeave hosts docs", host: docs.coreweave.com, cat: ai, provider: coreweave, svc: coreweave, cc: US, imp: 3, tier: 4, checks: [http] }
2829 + - { id: ai-coreweave-hosts-cloud, name: "CoreWeave hosts cloud", host: cloud.coreweave.com, cat: ai, provider: coreweave, svc: coreweave, cc: US, imp: 3, tier: 4, checks: [http] }
2830 + - { id: ai-coreweave-hosts-console, name: "CoreWeave hosts console", host: console.coreweave.com, cat: ai, provider: coreweave, svc: coreweave, cc: US, imp: 3, tier: 4, checks: [http] }
2831 + - { id: ai-coreweave-hosts-investors, name: "CoreWeave hosts investors", host: investors.coreweave.com, cat: ai, provider: coreweave, svc: coreweave, cc: US, imp: 3, tier: 4, checks: [http] }
2832 + - { id: ai-vast-vast, name: "Vast.ai / Paperspace / Nebius / Crusoe vast", host: vast.ai, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2833 + - { id: ai-vast-vast-cloud, name: "Vast.ai / Paperspace / Nebius / Crusoe vast cloud", host: cloud.vast.ai, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2834 + - { id: ai-vast-vast-console, name: "Vast.ai / Paperspace / Nebius / Crusoe vast console", host: console.vast.ai, url: "https://console.vast.ai/api/v0/", cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2835 + - { id: ai-vast-vast-docs, name: "Vast.ai / Paperspace / Nebius / Crusoe vast docs", host: docs.vast.ai, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2836 + - { id: ai-vast-paperspace, name: "Vast.ai / Paperspace / Nebius / Crusoe paperspace", host: www.paperspace.com, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2837 + - { id: ai-vast-paperspace-status, name: "Vast.ai / Paperspace / Nebius / Crusoe paperspace status", host: status.paperspace.com, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2838 + - { id: ai-vast-paperspace-console, name: "Vast.ai / Paperspace / Nebius / Crusoe paperspace console", host: console.paperspace.com, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2839 + - { id: ai-vast-nebius, name: "Vast.ai / Paperspace / Nebius / Crusoe nebius", host: nebius.com, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2840 + - { id: ai-vast-nebius-status, name: "Vast.ai / Paperspace / Nebius / Crusoe nebius status", host: status.nebius.com, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2841 + - { id: ai-vast-nebius-docs, name: "Vast.ai / Paperspace / Nebius / Crusoe nebius docs", host: docs.nebius.com, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2842 + - { id: ai-vast-nebius-console, name: "Vast.ai / Paperspace / Nebius / Crusoe nebius console", host: console.nebius.com, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2843 + - { id: ai-vast-nebius-api, name: "Vast.ai / Paperspace / Nebius / Crusoe nebius api", host: api.eu.nebius.cloud, url: "https://api.eu.nebius.cloud/", cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2844 + - { id: ai-vast-nebius-studio, name: "Vast.ai / Paperspace / Nebius / Crusoe nebius studio", host: studio.nebius.com, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2845 + - { id: ai-vast-nebius-ai-api, name: "Vast.ai / Paperspace / Nebius / Crusoe nebius ai api", host: api.studio.nebius.com, url: "https://api.studio.nebius.com/v1/models", cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2846 + - { id: ai-vast-crusoe, name: "Vast.ai / Paperspace / Nebius / Crusoe crusoe", host: crusoe.ai, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2847 + - { id: ai-vast-crusoe-status, name: "Vast.ai / Paperspace / Nebius / Crusoe crusoe status", host: status.crusoecloud.com, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2848 + - { id: ai-vast-crusoe-console, name: "Vast.ai / Paperspace / Nebius / Crusoe crusoe console", host: console.crusoecloud.com, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2849 + - { id: ai-vast-crusoe-docs, name: "Vast.ai / Paperspace / Nebius / Crusoe crusoe docs", host: docs.crusoecloud.com, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2850 + - { id: ai-vast-fluidstack, name: "Vast.ai / Paperspace / Nebius / Crusoe fluidstack", host: www.fluidstack.io, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2851 + - { id: ai-vast-together-gpu, name: "Vast.ai / Paperspace / Nebius / Crusoe together gpu", host: www.together.ai, url: "https://www.together.ai/gpu-clusters", cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2852 + - { id: ai-vast-voltage, name: "Vast.ai / Paperspace / Nebius / Crusoe voltage", host: www.voltagepark.com, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2853 + - { id: ai-vast-tensordock, name: "Vast.ai / Paperspace / Nebius / Crusoe tensordock", host: tensordock.com, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2854 + - { id: ai-vast-tensordock-dash, name: "Vast.ai / Paperspace / Nebius / Crusoe tensordock dash", host: dashboard.tensordock.com, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2855 + - { id: ai-vast-hyperstack, name: "Vast.ai / Paperspace / Nebius / Crusoe hyperstack", host: www.hyperstack.cloud, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2856 + - { id: ai-vast-hyperstack-console, name: "Vast.ai / Paperspace / Nebius / Crusoe hyperstack console", host: console.hyperstack.cloud, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2857 + - { id: ai-vast-denvr, name: "Vast.ai / Paperspace / Nebius / Crusoe denvr", host: www.denvrdata.com, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2858 + - { id: ai-vast-massed, name: "Vast.ai / Paperspace / Nebius / Crusoe massed", host: massedcompute.com, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2859 + - { id: ai-vast-latitude, name: "Vast.ai / Paperspace / Nebius / Crusoe latitude", host: www.latitude.sh, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2860 + - { id: ai-vast-latitude-status, name: "Vast.ai / Paperspace / Nebius / Crusoe latitude status", host: status.latitude.sh, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2861 + - { id: ai-vast-scaleway-gpu, name: "Vast.ai / Paperspace / Nebius / Crusoe scaleway gpu", host: www.scaleway.com, url: "https://www.scaleway.com/en/gpu-instances/", cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2862 + - { id: ai-vast-ovh-ai, name: "Vast.ai / Paperspace / Nebius / Crusoe ovh ai", host: www.ovhcloud.com, url: "https://www.ovhcloud.com/en-ca/public-cloud/ai-machine-learning/", cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2863 + - { id: ai-vast-e2e, name: "Vast.ai / Paperspace / Nebius / Crusoe e2e", host: www.e2enetworks.com, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2864 + - { id: ai-vast-shakti, name: "Vast.ai / Paperspace / Nebius / Crusoe shakti", host: shakticloud.ai, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2865 + - { id: ai-vast-gmi, name: "Vast.ai / Paperspace / Nebius / Crusoe gmi", host: www.gmicloud.ai, cat: ai, provider: vast, cc: null, imp: 2, tier: 4, checks: [http] }
2866 + - { id: ai-openrouter-hosts-api-models, name: "OpenRouter hosts api models", host: openrouter.ai, url: "https://openrouter.ai/api/v1/models", cat: ai, provider: openrouter, cc: US, imp: 4, tier: 2, checks: [http, dns] }
2867 + - { id: ai-openrouter-hosts-status, name: "OpenRouter hosts status page", host: status.openrouter.ai, cat: ai, provider: openrouter, cc: US, imp: 4, tier: 3, checks: [http] }
2868 + - { id: ai-litellm-litellm, name: "LiteLLM / Portkey / Helicone / Kong AI gateway litellm", host: www.litellm.ai, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2869 + - { id: ai-litellm-litellm-docs, name: "LiteLLM / Portkey / Helicone / Kong AI gateway litellm docs", host: docs.litellm.ai, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2870 + - { id: ai-litellm-portkey, name: "LiteLLM / Portkey / Helicone / Kong AI gateway portkey", host: portkey.ai, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2871 + - { id: ai-litellm-portkey-status, name: "LiteLLM / Portkey / Helicone / Kong AI gateway portkey status", host: status.portkey.ai, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2872 + - { id: ai-litellm-portkey-api, name: "LiteLLM / Portkey / Helicone / Kong AI gateway portkey api", host: api.portkey.ai, url: "https://api.portkey.ai/v1/", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2873 + - { id: ai-litellm-helicone, name: "LiteLLM / Portkey / Helicone / Kong AI gateway helicone", host: www.helicone.ai, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2874 + - { id: ai-litellm-helicone-status, name: "LiteLLM / Portkey / Helicone / Kong AI gateway helicone status", host: status.helicone.ai, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2875 + - { id: ai-litellm-braintrust, name: "LiteLLM / Portkey / Helicone / Kong AI gateway braintrust", host: www.braintrust.dev, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2876 + - { id: ai-litellm-braintrust-status, name: "LiteLLM / Portkey / Helicone / Kong AI gateway braintrust status", host: status.braintrust.dev, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2877 + - { id: ai-litellm-langfuse, name: "LiteLLM / Portkey / Helicone / Kong AI gateway langfuse", host: langfuse.com, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2878 + - { id: ai-litellm-langfuse-status, name: "LiteLLM / Portkey / Helicone / Kong AI gateway langfuse status", host: status.langfuse.com, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2879 + - { id: ai-litellm-langfuse-cloud, name: "LiteLLM / Portkey / Helicone / Kong AI gateway langfuse cloud", host: cloud.langfuse.com, url: "https://cloud.langfuse.com/api/public/health", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2880 + - { id: ai-litellm-langfuse-us, name: "LiteLLM / Portkey / Helicone / Kong AI gateway langfuse us", host: us.cloud.langfuse.com, url: "https://us.cloud.langfuse.com/api/public/health", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2881 + - { id: ai-litellm-arize, name: "LiteLLM / Portkey / Helicone / Kong AI gateway arize", host: arize.com, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2882 + - { id: ai-litellm-arize-status, name: "LiteLLM / Portkey / Helicone / Kong AI gateway arize status", host: status.arize.com, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2883 + - { id: ai-litellm-phoenix, name: "LiteLLM / Portkey / Helicone / Kong AI gateway phoenix", host: phoenix.arize.com, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2884 + - { id: ai-litellm-weave, name: "LiteLLM / Portkey / Helicone / Kong AI gateway weave", host: wandb.ai, url: "https://wandb.ai/site/weave/", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2885 + - { id: ai-litellm-traceloop, name: "LiteLLM / Portkey / Helicone / Kong AI gateway traceloop", host: www.traceloop.com, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2886 + - { id: ai-litellm-humanloop, name: "LiteLLM / Portkey / Helicone / Kong AI gateway humanloop", host: humanloop.com, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2887 + - { id: ai-litellm-promptlayer, name: "LiteLLM / Portkey / Helicone / Kong AI gateway promptlayer", host: promptlayer.com, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2888 + - { id: ai-litellm-unify, name: "LiteLLM / Portkey / Helicone / Kong AI gateway unify", host: unify.ai, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2889 + - { id: ai-litellm-eden, name: "LiteLLM / Portkey / Helicone / Kong AI gateway eden", host: www.edenai.co, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2890 + - { id: ai-litellm-martian, name: "LiteLLM / Portkey / Helicone / Kong AI gateway martian", host: withmartian.com, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2891 + - { id: ai-litellm-requesty, name: "LiteLLM / Portkey / Helicone / Kong AI gateway requesty", host: www.requesty.ai, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2892 + - { id: ai-litellm-glama, name: "LiteLLM / Portkey / Helicone / Kong AI gateway glama", host: glama.ai, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2893 + - { id: ai-litellm-novita, name: "LiteLLM / Portkey / Helicone / Kong AI gateway novita", host: novita.ai, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2894 + - { id: ai-litellm-novita-api, name: "LiteLLM / Portkey / Helicone / Kong AI gateway novita api", host: api.novita.ai, url: "https://api.novita.ai/v3/openai/models", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2895 + - { id: ai-litellm-deepinfra, name: "LiteLLM / Portkey / Helicone / Kong AI gateway deepinfra", host: deepinfra.com, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2896 + - { id: ai-litellm-deepinfra-api, name: "LiteLLM / Portkey / Helicone / Kong AI gateway deepinfra api", host: api.deepinfra.com, url: "https://api.deepinfra.com/v1/openai/models", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2897 + - { id: ai-litellm-deepinfra-status, name: "LiteLLM / Portkey / Helicone / Kong AI gateway deepinfra status", host: status.deepinfra.com, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2898 + - { id: ai-litellm-hyperbolic, name: "LiteLLM / Portkey / Helicone / Kong AI gateway hyperbolic", host: hyperbolic.xyz, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2899 + - { id: ai-litellm-hyperbolic-api, name: "LiteLLM / Portkey / Helicone / Kong AI gateway hyperbolic api", host: api.hyperbolic.xyz, url: "https://api.hyperbolic.xyz/v1/models", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2900 + - { id: ai-litellm-featherless, name: "LiteLLM / Portkey / Helicone / Kong AI gateway featherless", host: featherless.ai, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2901 + - { id: ai-litellm-featherless-api, name: "LiteLLM / Portkey / Helicone / Kong AI gateway featherless api", host: api.featherless.ai, url: "https://api.featherless.ai/v1/models", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2902 + - { id: ai-litellm-octoai, name: "LiteLLM / Portkey / Helicone / Kong AI gateway octoai", host: octo.ai, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2903 + - { id: ai-litellm-perplexity-models, name: "LiteLLM / Portkey / Helicone / Kong AI gateway perplexity models", host: api.perplexity.ai, url: "https://api.perplexity.ai/", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2904 + - { id: ai-litellm-mancer, name: "LiteLLM / Portkey / Helicone / Kong AI gateway mancer", host: mancer.tech, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2905 + - { id: ai-litellm-infermatic, name: "LiteLLM / Portkey / Helicone / Kong AI gateway infermatic", host: infermatic.ai, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2906 + - { id: ai-litellm-nscale, name: "LiteLLM / Portkey / Helicone / Kong AI gateway nscale", host: www.nscale.com, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2907 + - { id: ai-litellm-nscale-api, name: "LiteLLM / Portkey / Helicone / Kong AI gateway nscale api", host: inference.api.nscale.com, url: "https://inference.api.nscale.com/v1/models", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2908 + - { id: ai-litellm-parasail, name: "LiteLLM / Portkey / Helicone / Kong AI gateway parasail", host: www.parasail.io, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2909 + - { id: ai-litellm-inference-net, name: "LiteLLM / Portkey / Helicone / Kong AI gateway inference net", host: inference.net, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2910 + - { id: ai-litellm-chutes, name: "LiteLLM / Portkey / Helicone / Kong AI gateway chutes", host: chutes.ai, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2911 + - { id: ai-litellm-chutes-api, name: "LiteLLM / Portkey / Helicone / Kong AI gateway chutes api", host: llm.chutes.ai, url: "https://llm.chutes.ai/v1/models", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2912 + - { id: ai-litellm-targon, name: "LiteLLM / Portkey / Helicone / Kong AI gateway targon", host: targon.com, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2913 + - { id: ai-litellm-venice, name: "LiteLLM / Portkey / Helicone / Kong AI gateway venice", host: venice.ai, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2914 + - { id: ai-litellm-venice-api, name: "LiteLLM / Portkey / Helicone / Kong AI gateway venice api", host: api.venice.ai, url: "https://api.venice.ai/api/v1/models", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2915 + - { id: ai-litellm-ai-gateway-vercel, name: "LiteLLM / Portkey / Helicone / Kong AI gateway ai gateway vercel", host: ai-gateway.vercel.sh, url: "https://ai-gateway.vercel.sh/v1/models", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2916 + - { id: ai-litellm-cf-ai-gateway, name: "LiteLLM / Portkey / Helicone / Kong AI gateway cf ai gateway", host: gateway.ai.cloudflare.com, url: "https://gateway.ai.cloudflare.com/", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2917 + - { id: ai-litellm-friendli, name: "LiteLLM / Portkey / Helicone / Kong AI gateway friendli", host: friendli.ai, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2918 + - { id: ai-litellm-friendli-api, name: "LiteLLM / Portkey / Helicone / Kong AI gateway friendli api", host: api.friendli.ai, url: "https://api.friendli.ai/serverless/v1/models", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2919 + - { id: ai-litellm-replicate-api, name: "LiteLLM / Portkey / Helicone / Kong AI gateway replicate api", host: api.replicate.com, url: "https://api.replicate.com/v1/models", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2920 + - { id: ai-litellm-replicate-status, name: "LiteLLM / Portkey / Helicone / Kong AI gateway replicate status", host: replicatestatus.com, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2921 + - { id: ai-litellm-replicate-delivery, name: "LiteLLM / Portkey / Helicone / Kong AI gateway replicate delivery", host: replicate.delivery, url: "https://replicate.delivery/", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2922 + - { id: ai-litellm-fal, name: "LiteLLM / Portkey / Helicone / Kong AI gateway fal", host: fal.ai, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2923 + - { id: ai-litellm-fal-status, name: "LiteLLM / Portkey / Helicone / Kong AI gateway fal status", host: status.fal.ai, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2924 + - { id: ai-litellm-fal-api, name: "LiteLLM / Portkey / Helicone / Kong AI gateway fal api", host: fal.run, url: "https://fal.run/", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2925 + - { id: ai-litellm-fal-queue, name: "LiteLLM / Portkey / Helicone / Kong AI gateway fal queue", host: queue.fal.run, url: "https://queue.fal.run/", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2926 + - { id: ai-litellm-wavespeed, name: "LiteLLM / Portkey / Helicone / Kong AI gateway wavespeed", host: wavespeed.ai, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2927 + - { id: ai-litellm-segmind, name: "LiteLLM / Portkey / Helicone / Kong AI gateway segmind", host: www.segmind.com, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2928 + - { id: ai-litellm-segmind-api, name: "LiteLLM / Portkey / Helicone / Kong AI gateway segmind api", host: api.segmind.com, url: "https://api.segmind.com/v1/", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2929 + - { id: ai-litellm-getimg, name: "LiteLLM / Portkey / Helicone / Kong AI gateway getimg", host: getimg.ai, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2930 + - { id: ai-litellm-leonardo, name: "LiteLLM / Portkey / Helicone / Kong AI gateway leonardo", host: leonardo.ai, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2931 + - { id: ai-litellm-leonardo-api, name: "LiteLLM / Portkey / Helicone / Kong AI gateway leonardo api", host: cloud.leonardo.ai, url: "https://cloud.leonardo.ai/api/rest/v1/me", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2932 + - { id: ai-litellm-ideogram, name: "LiteLLM / Portkey / Helicone / Kong AI gateway ideogram", host: ideogram.ai, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2933 + - { id: ai-litellm-ideogram-api, name: "LiteLLM / Portkey / Helicone / Kong AI gateway ideogram api", host: api.ideogram.ai, url: "https://api.ideogram.ai/", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2934 + - { id: ai-litellm-recraft, name: "LiteLLM / Portkey / Helicone / Kong AI gateway recraft", host: www.recraft.ai, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2935 + - { id: ai-litellm-recraft-api, name: "LiteLLM / Portkey / Helicone / Kong AI gateway recraft api", host: external.api.recraft.ai, url: "https://external.api.recraft.ai/v1/", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2936 + - { id: ai-litellm-bfl, name: "LiteLLM / Portkey / Helicone / Kong AI gateway bfl", host: bfl.ai, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2937 + - { id: ai-litellm-bfl-api, name: "LiteLLM / Portkey / Helicone / Kong AI gateway bfl api", host: api.bfl.ai, url: "https://api.bfl.ai/", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2938 + - { id: ai-litellm-bfl-docs, name: "LiteLLM / Portkey / Helicone / Kong AI gateway bfl docs", host: docs.bfl.ml, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2939 + - { id: ai-litellm-krea, name: "LiteLLM / Portkey / Helicone / Kong AI gateway krea", host: www.krea.ai, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2940 + - { id: ai-litellm-freepik-ai, name: "LiteLLM / Portkey / Helicone / Kong AI gateway freepik ai", host: www.freepik.com, url: "https://www.freepik.com/ai", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2941 + - { id: ai-litellm-magnific, name: "LiteLLM / Portkey / Helicone / Kong AI gateway magnific", host: magnific.ai, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2942 + - { id: ai-litellm-clipdrop, name: "LiteLLM / Portkey / Helicone / Kong AI gateway clipdrop", host: clipdrop.co, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2943 + - { id: ai-litellm-photoroom, name: "LiteLLM / Portkey / Helicone / Kong AI gateway photoroom", host: www.photoroom.com, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2944 + - { id: ai-litellm-photoroom-api, name: "LiteLLM / Portkey / Helicone / Kong AI gateway photoroom api", host: sdk.photoroom.com, url: "https://sdk.photoroom.com/v1/", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2945 + - { id: ai-litellm-remove-bg, name: "LiteLLM / Portkey / Helicone / Kong AI gateway remove bg", host: www.remove.bg, cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2946 + - { id: ai-litellm-remove-bg-api, name: "LiteLLM / Portkey / Helicone / Kong AI gateway remove bg api", host: api.remove.bg, url: "https://api.remove.bg/v1.0/removebg", cat: ai, provider: litellm, cc: US, imp: 2, tier: 4, checks: [http] }
2947 + - { id: ai-langchain, name: "LangChain / LangSmith", host: www.langchain.com, cat: ai, provider: langchain, cc: US, imp: 3, tier: 4, checks: [http] }
2948 + - { id: ai-langchain-docs, name: "LangChain / LangSmith docs", host: python.langchain.com, cat: ai, provider: langchain, cc: US, imp: 3, tier: 4, checks: [http] }
2949 + - { id: ai-langchain-js, name: "LangChain / LangSmith JS", host: js.langchain.com, cat: ai, provider: langchain, cc: US, imp: 3, tier: 4, checks: [http] }
2950 + - { id: ai-langchain-smith, name: "LangChain / LangSmith smith", host: smith.langchain.com, cat: ai, provider: langchain, cc: US, imp: 3, tier: 4, checks: [http] }
2951 + - { id: ai-langchain-status, name: "LangChain / LangSmith status page", host: status.smith.langchain.com, cat: ai, provider: langchain, cc: US, imp: 3, tier: 4, checks: [http] }
2952 + - { id: ai-langchain-api, name: "LangChain / LangSmith API", host: api.smith.langchain.com, url: "https://api.smith.langchain.com/info", cat: ai, provider: langchain, cc: US, imp: 3, tier: 4, checks: [http] }
2953 + - { id: ai-langchain-academy, name: "LangChain / LangSmith academy", host: academy.langchain.com, cat: ai, provider: langchain, cc: US, imp: 3, tier: 4, checks: [http] }
2954 + - { id: ai-langchain-blog, name: "LangChain / LangSmith blog", host: blog.langchain.com, cat: ai, provider: langchain, cc: US, imp: 3, tier: 4, checks: [http] }
2955 + - { id: ai-langchain-langgraph, name: "LangChain / LangSmith langgraph", host: langchain-ai.github.io, url: "https://langchain-ai.github.io/langgraph/", cat: ai, provider: langchain, cc: US, imp: 3, tier: 4, checks: [http] }
2956 + - { id: ai-langchain-docs-langchain, name: "LangChain / LangSmith docs langchain", host: docs.langchain.com, cat: ai, provider: langchain, cc: US, imp: 3, tier: 4, checks: [http] }
2957 + - { id: ai-llamaindex, name: "LlamaIndex", host: www.llamaindex.ai, cat: ai, provider: llamaindex, cc: US, imp: 3, tier: 4, checks: [http] }
2958 + - { id: ai-llamaindex-docs, name: "LlamaIndex docs", host: docs.llamaindex.ai, cat: ai, provider: llamaindex, cc: US, imp: 3, tier: 4, checks: [http] }
2959 + - { id: ai-llamaindex-cloud, name: "LlamaIndex cloud", host: cloud.llamaindex.ai, cat: ai, provider: llamaindex, cc: US, imp: 3, tier: 4, checks: [http] }
2960 + - { id: ai-llamaindex-api, name: "LlamaIndex API", host: api.cloud.llamaindex.ai, url: "https://api.cloud.llamaindex.ai/api/v1/", cat: ai, provider: llamaindex, cc: US, imp: 3, tier: 4, checks: [http] }
2961 + - { id: ai-llamaindex-hub, name: "LlamaIndex hub", host: llamahub.ai, cat: ai, provider: llamaindex, cc: US, imp: 3, tier: 4, checks: [http] }
2962 + - { id: ai-llamaindex-ts, name: "LlamaIndex ts", host: ts.llamaindex.ai, cat: ai, provider: llamaindex, cc: US, imp: 3, tier: 4, checks: [http] }
2963 + - { id: ai-ai-frameworks-haystack, name: "AI frameworks & OSS tooling haystack", host: haystack.deepset.ai, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2964 + - { id: ai-ai-frameworks-deepset, name: "AI frameworks & OSS tooling deepset", host: www.deepset.ai, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2965 + - { id: ai-ai-frameworks-dspy, name: "AI frameworks & OSS tooling dspy", host: dspy.ai, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2966 + - { id: ai-ai-frameworks-autogen, name: "AI frameworks & OSS tooling autogen", host: microsoft.github.io, url: "https://microsoft.github.io/autogen/", cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2967 + - { id: ai-ai-frameworks-crewai, name: "AI frameworks & OSS tooling crewai", host: www.crewai.com, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2968 + - { id: ai-ai-frameworks-crewai-docs, name: "AI frameworks & OSS tooling crewai docs", host: docs.crewai.com, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2969 + - { id: ai-ai-frameworks-crewai-status, name: "AI frameworks & OSS tooling crewai status", host: status.crewai.com, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2970 + - { id: ai-ai-frameworks-pydantic-ai, name: "AI frameworks & OSS tooling pydantic ai", host: ai.pydantic.dev, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2971 + - { id: ai-ai-frameworks-pydantic, name: "AI frameworks & OSS tooling pydantic", host: pydantic.dev, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2972 + - { id: ai-ai-frameworks-logfire, name: "AI frameworks & OSS tooling logfire", host: logfire.pydantic.dev, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2973 + - { id: ai-ai-frameworks-logfire-api, name: "AI frameworks & OSS tooling logfire api", host: logfire-api.pydantic.dev, url: "https://logfire-api.pydantic.dev/", cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2974 + - { id: ai-ai-frameworks-instructor, name: "AI frameworks & OSS tooling instructor", host: python.useinstructor.com, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2975 + - { id: ai-ai-frameworks-outlines, name: "AI frameworks & OSS tooling outlines", host: dottxt-ai.github.io, url: "https://dottxt-ai.github.io/outlines/", cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2976 + - { id: ai-ai-frameworks-guidance, name: "AI frameworks & OSS tooling guidance", host: guidance.readthedocs.io, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2977 + - { id: ai-ai-frameworks-vllm, name: "AI frameworks & OSS tooling vllm", host: docs.vllm.ai, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2978 + - { id: ai-ai-frameworks-vllm-blog, name: "AI frameworks & OSS tooling vllm blog", host: blog.vllm.ai, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2979 + - { id: ai-ai-frameworks-sglang, name: "AI frameworks & OSS tooling sglang", host: docs.sglang.ai, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2980 + - { id: ai-ai-frameworks-tensorrt-llm, name: "AI frameworks & OSS tooling tensorrt llm", host: nvidia.github.io, url: "https://nvidia.github.io/TensorRT-LLM/", cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2981 + - { id: ai-ai-frameworks-ggml, name: "AI frameworks & OSS tooling ggml", host: ggml.ai, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2982 + - { id: ai-ai-frameworks-mlx, name: "AI frameworks & OSS tooling mlx", host: ml-explore.github.io, url: "https://ml-explore.github.io/mlx/build/html/index.html", cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2983 + - { id: ai-ai-frameworks-exo, name: "AI frameworks & OSS tooling exo", host: exolabs.net, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2984 + - { id: ai-ai-frameworks-mozilla-ai, name: "AI frameworks & OSS tooling mozilla ai", host: www.mozilla.ai, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2985 + - { id: ai-ai-frameworks-open-webui, name: "AI frameworks & OSS tooling open webui", host: openwebui.com, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2986 + - { id: ai-ai-frameworks-open-webui-docs, name: "AI frameworks & OSS tooling open webui docs", host: docs.openwebui.com, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2987 + - { id: ai-ai-frameworks-librechat, name: "AI frameworks & OSS tooling librechat", host: www.librechat.ai, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2988 + - { id: ai-ai-frameworks-anythingllm, name: "AI frameworks & OSS tooling anythingllm", host: anythingllm.com, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2989 + - { id: ai-ai-frameworks-lobehub, name: "AI frameworks & OSS tooling lobehub", host: lobehub.com, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2990 + - { id: ai-ai-frameworks-chatbox, name: "AI frameworks & OSS tooling chatbox", host: chatboxai.app, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2991 + - { id: ai-ai-frameworks-msty, name: "AI frameworks & OSS tooling msty", host: msty.app, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2992 + - { id: ai-ai-frameworks-gpt4all, name: "AI frameworks & OSS tooling gpt4all", host: www.nomic.ai, url: "https://www.nomic.ai/gpt4all", cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2993 + - { id: ai-ai-frameworks-nomic-atlas, name: "AI frameworks & OSS tooling nomic atlas", host: atlas.nomic.ai, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2994 + - { id: ai-ai-frameworks-localai, name: "AI frameworks & OSS tooling localai", host: localai.io, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2995 + - { id: ai-ai-frameworks-flowise, name: "AI frameworks & OSS tooling flowise", host: flowiseai.com, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2996 + - { id: ai-ai-frameworks-langflow, name: "AI frameworks & OSS tooling langflow", host: www.langflow.org, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2997 + - { id: ai-ai-frameworks-dify, name: "AI frameworks & OSS tooling dify", host: dify.ai, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2998 + - { id: ai-ai-frameworks-dify-cloud, name: "AI frameworks & OSS tooling dify cloud", host: cloud.dify.ai, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
2999 + - { id: ai-ai-frameworks-dify-docs, name: "AI frameworks & OSS tooling dify docs", host: docs.dify.ai, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
3000 + - { id: ai-ai-frameworks-ragflow, name: "AI frameworks & OSS tooling ragflow", host: ragflow.io, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
3001 + - { id: ai-ai-frameworks-fastgpt, name: "AI frameworks & OSS tooling fastgpt", host: fastgpt.io, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
3002 + - { id: ai-ai-frameworks-botpress, name: "AI frameworks & OSS tooling botpress", host: botpress.com, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
3003 + - { id: ai-ai-frameworks-botpress-status, name: "AI frameworks & OSS tooling botpress status", host: status.botpress.com, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
3004 + - { id: ai-ai-frameworks-voiceflow, name: "AI frameworks & OSS tooling voiceflow", host: www.voiceflow.com, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
3005 + - { id: ai-ai-frameworks-voiceflow-status, name: "AI frameworks & OSS tooling voiceflow status", host: status.voiceflow.com, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
3006 + - { id: ai-ai-frameworks-rasa, name: "AI frameworks & OSS tooling rasa", host: rasa.com, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
3007 + - { id: ai-ai-frameworks-stack-ai, name: "AI frameworks & OSS tooling stack ai", host: www.stack-ai.com, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
3008 + - { id: ai-ai-frameworks-relevance, name: "AI frameworks & OSS tooling relevance", host: relevanceai.com, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
3009 + - { id: ai-ai-frameworks-gumloop, name: "AI frameworks & OSS tooling gumloop", host: www.gumloop.com, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
3010 + - { id: ai-ai-frameworks-lindy, name: "AI frameworks & OSS tooling lindy", host: www.lindy.ai, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
3011 + - { id: ai-ai-frameworks-zapier-agents, name: "AI frameworks & OSS tooling zapier agents", host: zapier.com, url: "https://zapier.com/agents", cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
3012 + - { id: ai-ai-frameworks-relay, name: "AI frameworks & OSS tooling relay", host: www.relay.app, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
3013 + - { id: ai-ai-frameworks-bardeen, name: "AI frameworks & OSS tooling bardeen", host: www.bardeen.ai, cat: ai, provider: oss-ai, cc: null, imp: 3, tier: 4, checks: [http] }
3014 + - { id: ai-ollama-hosts-ollama-library, name: "Ollama / local runtimes ollama library", host: ollama.com, url: "https://ollama.com/library", cat: ai, provider: ollama, cc: US, imp: 3, tier: 4, checks: [http] }
3015 + - { id: ai-ollama-hosts-ollama-docs, name: "Ollama / local runtimes ollama docs", host: docs.ollama.com, cat: ai, provider: ollama, cc: US, imp: 3, tier: 4, checks: [http] }
3016 + - { id: ai-ollama-hosts-lmstudio, name: "Ollama / local runtimes lmstudio", host: lmstudio.ai, cat: ai, provider: ollama, cc: US, imp: 3, tier: 4, checks: [http] }
3017 + - { id: ai-ollama-hosts-lmstudio-releases, name: "Ollama / local runtimes lmstudio releases", host: releases.lmstudio.ai, url: "https://releases.lmstudio.ai/", cat: ai, provider: ollama, cc: US, imp: 3, tier: 4, checks: [http] }
3018 + - { id: ai-ollama-hosts-jan, name: "Ollama / local runtimes jan", host: jan.ai, cat: ai, provider: ollama, cc: US, imp: 3, tier: 4, checks: [http] }
3019 + - { id: ai-ollama-hosts-jan-cortex, name: "Ollama / local runtimes jan cortex", host: cortex.so, cat: ai, provider: ollama, cc: US, imp: 3, tier: 4, checks: [http] }
3020 + - { id: ai-ollama-hosts-gpt4all-docs, name: "Ollama / local runtimes gpt4all docs", host: docs.gpt4all.io, cat: ai, provider: ollama, cc: US, imp: 3, tier: 4, checks: [http] }
3021 + - { id: ai-ollama-hosts-pinokio, name: "Ollama / local runtimes pinokio", host: pinokio.computer, cat: ai, provider: ollama, cc: US, imp: 3, tier: 4, checks: [http] }
3022 + - { id: ai-ollama-hosts-comfy, name: "Ollama / local runtimes comfy", host: www.comfy.org, cat: ai, provider: ollama, cc: US, imp: 3, tier: 4, checks: [http] }
3023 + - { id: ai-ollama-hosts-comfy-docs, name: "Ollama / local runtimes comfy docs", host: docs.comfy.org, cat: ai, provider: ollama, cc: US, imp: 3, tier: 4, checks: [http] }
3024 + - { id: ai-ollama-hosts-comfy-registry, name: "Ollama / local runtimes comfy registry", host: registry.comfy.org, cat: ai, provider: ollama, cc: US, imp: 3, tier: 4, checks: [http] }
3025 + - { id: ai-ollama-hosts-comfy-api, name: "Ollama / local runtimes comfy api", host: api.comfy.org, url: "https://api.comfy.org/nodes?limit=1", cat: ai, provider: ollama, cc: US, imp: 3, tier: 4, checks: [http] }
3026 + - { id: ai-ollama-hosts-invoke, name: "Ollama / local runtimes invoke", host: www.invoke.com, cat: ai, provider: ollama, cc: US, imp: 3, tier: 4, checks: [http] }
3027 + - { id: ai-ollama-hosts-draw-things, name: "Ollama / local runtimes draw things", host: drawthings.ai, cat: ai, provider: ollama, cc: US, imp: 3, tier: 4, checks: [http] }
3028 + - { id: ai-ollama-hosts-diffusionbee, name: "Ollama / local runtimes diffusionbee", host: diffusionbee.com, cat: ai, provider: ollama, cc: US, imp: 3, tier: 4, checks: [http] }
3029 + - { id: ai-ai-coding-cursor-status, name: "AI coding tools cursor status", host: status.cursor.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3030 + - { id: ai-ai-coding-cursor-docs, name: "AI coding tools cursor docs", host: docs.cursor.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3031 + - { id: ai-ai-coding-cursor-forum, name: "AI coding tools cursor forum", host: forum.cursor.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3032 + - { id: ai-ai-coding-cursor-api, name: "AI coding tools cursor api", host: api2.cursor.sh, url: "https://api2.cursor.sh/", cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http, dns] }
3033 + - { id: ai-ai-coding-cursor-downloads, name: "AI coding tools cursor downloads", host: downloads.cursor.com, url: "https://downloads.cursor.com/", cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http, dns] }
3034 + - { id: ai-ai-coding-cursor-changelog, name: "AI coding tools cursor changelog", host: cursor.com, url: "https://cursor.com/changelog", cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http, dns] }
3035 + - { id: ai-ai-coding-windsurf-status, name: "AI coding tools windsurf status", host: status.windsurf.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3036 + - { id: ai-ai-coding-windsurf-docs, name: "AI coding tools windsurf docs", host: docs.windsurf.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3037 + - { id: ai-ai-coding-codeium, name: "AI coding tools codeium", host: codeium.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3038 + - { id: ai-ai-coding-codeium-status, name: "AI coding tools codeium status", host: status.codeium.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3039 + - { id: ai-ai-coding-windsurf-server, name: "AI coding tools windsurf server", host: server.codeium.com, url: "https://server.codeium.com/", cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http, dns] }
3040 + - { id: ai-ai-coding-tabnine, name: "AI coding tools tabnine", host: www.tabnine.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3041 + - { id: ai-ai-coding-tabnine-status, name: "AI coding tools tabnine status", host: status.tabnine.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3042 + - { id: ai-ai-coding-tabnine-docs, name: "AI coding tools tabnine docs", host: docs.tabnine.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3043 + - { id: ai-ai-coding-amp, name: "AI coding tools amp", host: ampcode.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3044 + - { id: ai-ai-coding-amp-status, name: "AI coding tools amp status", host: status.ampcode.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3045 + - { id: ai-ai-coding-replit-status, name: "AI coding tools replit status", host: status.replit.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3046 + - { id: ai-ai-coding-replit-docs, name: "AI coding tools replit docs", host: docs.replit.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3047 + - { id: ai-ai-coding-replit-ask, name: "AI coding tools replit ask", host: ask.replit.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3048 + - { id: ai-ai-coding-replit-dev, name: "AI coding tools replit dev", host: replit.dev, url: "https://replit.dev/", cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http, dns] }
3049 + - { id: ai-ai-coding-replit-app, name: "AI coding tools replit app", host: replit.app, url: "https://replit.app/", cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http, dns] }
3050 + - { id: ai-ai-coding-lovable-status, name: "AI coding tools lovable status", host: status.lovable.dev, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3051 + - { id: ai-ai-coding-lovable-docs, name: "AI coding tools lovable docs", host: docs.lovable.dev, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3052 + - { id: ai-ai-coding-lovable-app, name: "AI coding tools lovable app", host: lovable.app, url: "https://lovable.app/", cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http, dns] }
3053 + - { id: ai-ai-coding-bolt-status, name: "AI coding tools bolt status", host: status.bolt.new, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3054 + - { id: ai-ai-coding-bolt-support, name: "AI coding tools bolt support", host: support.bolt.new, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3055 + - { id: ai-ai-coding-bolt-host, name: "AI coding tools bolt host", host: bolt.host, url: "https://bolt.host/", cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http, dns] }
3056 + - { id: ai-ai-coding-v0-docs, name: "AI coding tools v0 docs", host: v0.dev, url: "https://v0.dev/docs", cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http, dns] }
3057 + - { id: ai-ai-coding-v0-chat, name: "AI coding tools v0 chat", host: v0.app, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3058 + - { id: ai-ai-coding-cognition, name: "AI coding tools cognition", host: cognition.ai, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3059 + - { id: ai-ai-coding-devin, name: "AI coding tools devin", host: devin.ai, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3060 + - { id: ai-ai-coding-devin-app, name: "AI coding tools devin app", host: app.devin.ai, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3061 + - { id: ai-ai-coding-devin-docs, name: "AI coding tools devin docs", host: docs.devin.ai, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3062 + - { id: ai-ai-coding-devin-status, name: "AI coding tools devin status", host: status.devin.ai, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3063 + - { id: ai-ai-coding-manus, name: "AI coding tools manus", host: manus.im, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3064 + - { id: ai-ai-coding-manus-status, name: "AI coding tools manus status", host: status.manus.im, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3065 + - { id: ai-ai-coding-manus-help, name: "AI coding tools manus help", host: help.manus.im, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3066 + - { id: ai-ai-coding-genspark, name: "AI coding tools genspark", host: www.genspark.ai, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3067 + - { id: ai-ai-coding-aider, name: "AI coding tools aider", host: aider.chat, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3068 + - { id: ai-ai-coding-cline, name: "AI coding tools cline", host: cline.bot, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3069 + - { id: ai-ai-coding-cline-docs, name: "AI coding tools cline docs", host: docs.cline.bot, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3070 + - { id: ai-ai-coding-roo, name: "AI coding tools roo", host: roocode.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3071 + - { id: ai-ai-coding-roo-docs, name: "AI coding tools roo docs", host: docs.roocode.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3072 + - { id: ai-ai-coding-kilo, name: "AI coding tools kilo", host: kilocode.ai, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3073 + - { id: ai-ai-coding-continue, name: "AI coding tools continue", host: www.continue.dev, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3074 + - { id: ai-ai-coding-continue-docs, name: "AI coding tools continue docs", host: docs.continue.dev, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3075 + - { id: ai-ai-coding-augment, name: "AI coding tools augment", host: www.augmentcode.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3076 + - { id: ai-ai-coding-augment-status, name: "AI coding tools augment status", host: status.augmentcode.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3077 + - { id: ai-ai-coding-supermaven, name: "AI coding tools supermaven", host: supermaven.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3078 + - { id: ai-ai-coding-qodo, name: "AI coding tools qodo", host: www.qodo.ai, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3079 + - { id: ai-ai-coding-qodo-status, name: "AI coding tools qodo status", host: status.qodo.ai, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3080 + - { id: ai-ai-coding-codium, name: "AI coding tools codium", host: www.codium.ai, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3081 + - { id: ai-ai-coding-codegpt, name: "AI coding tools codegpt", host: codegpt.co, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3082 + - { id: ai-ai-coding-pieces, name: "AI coding tools pieces", host: pieces.app, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3083 + - { id: ai-ai-coding-blackbox, name: "AI coding tools blackbox", host: www.blackbox.ai, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3084 + - { id: ai-ai-coding-phind, name: "AI coding tools phind", host: www.phind.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3085 + - { id: ai-ai-coding-bito, name: "AI coding tools bito", host: bito.ai, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3086 + - { id: ai-ai-coding-gemini-cli, name: "AI coding tools gemini cli", host: geminicli.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3087 + - { id: ai-ai-coding-opencode, name: "AI coding tools opencode", host: opencode.ai, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3088 + - { id: ai-ai-coding-goose, name: "AI coding tools goose", host: block.github.io, url: "https://block.github.io/goose/", cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http, dns] }
3089 + - { id: ai-ai-coding-warp, name: "AI coding tools warp", host: www.warp.dev, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3090 + - { id: ai-ai-coding-warp-status, name: "AI coding tools warp status", host: status.warp.dev, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3091 + - { id: ai-ai-coding-warp-releases, name: "AI coding tools warp releases", host: releases.warp.dev, url: "https://releases.warp.dev/", cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http, dns] }
3092 + - { id: ai-ai-coding-trae-cn, name: "AI coding tools trae cn", host: www.trae.cn, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3093 + - { id: ai-ai-coding-tongyi-lingma, name: "AI coding tools tongyi lingma", host: lingma.aliyun.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3094 + - { id: ai-ai-coding-baidu-comate, name: "AI coding tools baidu comate", host: comate.baidu.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3095 + - { id: ai-ai-coding-codegeex, name: "AI coding tools codegeex", host: codegeex.cn, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3096 + - { id: ai-ai-coding-firebase-studio, name: "AI coding tools firebase studio", host: firebase.studio, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3097 + - { id: ai-ai-coding-idx, name: "AI coding tools idx", host: idx.dev, url: "https://idx.dev/", cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http, dns] }
3098 + - { id: ai-ai-coding-project-idx, name: "AI coding tools project idx", host: idx.google.com, url: "https://idx.google.com/", cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http, dns] }
3099 + - { id: ai-ai-coding-softgen, name: "AI coding tools softgen", host: softgen.ai, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3100 + - { id: ai-ai-coding-create, name: "AI coding tools create", host: www.create.xyz, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3101 + - { id: ai-ai-coding-databutton, name: "AI coding tools databutton", host: databutton.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3102 + - { id: ai-ai-coding-emergent, name: "AI coding tools emergent", host: app.emergent.sh, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3103 + - { id: ai-ai-coding-base44, name: "AI coding tools base44", host: base44.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3104 + - { id: ai-ai-coding-tempo, name: "AI coding tools tempo", host: www.tempo.new, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3105 + - { id: ai-ai-coding-marblism, name: "AI coding tools marblism", host: www.marblism.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3106 + - { id: ai-ai-coding-magic-patterns, name: "AI coding tools magic patterns", host: www.magicpatterns.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3107 + - { id: ai-ai-coding-uizard, name: "AI coding tools uizard", host: uizard.io, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3108 + - { id: ai-ai-coding-galileo, name: "AI coding tools galileo", host: www.usegalileo.ai, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3109 + - { id: ai-ai-coding-figma-make, name: "AI coding tools figma make", host: www.figma.com, url: "https://www.figma.com/make/", cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http, dns] }
3110 + - { id: ai-ai-coding-same, name: "AI coding tools same", host: same.new, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3111 + - { id: ai-ai-coding-rork, name: "AI coding tools rork", host: rork.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3112 + - { id: ai-ai-coding-a0, name: "AI coding tools a0", host: a0.dev, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3113 + - { id: ai-ai-coding-vibecode, name: "AI coding tools vibecode", host: www.vibecodeapp.com, cat: ai, provider: cursor, svc: cursor, cc: US, imp: 4, tier: 3, checks: [http] }
3114 + - { id: ai-ai-research-semantic-scholar-status, name: "AI research & open science hosts semantic scholar status", host: status.semanticscholar.org, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3115 + - { id: ai-ai-research-allenai, name: "AI research & open science hosts allenai", host: allenai.org, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3116 + - { id: ai-ai-research-allenai-playground, name: "AI research & open science hosts allenai playground", host: playground.allenai.org, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3117 + - { id: ai-ai-research-eleuther, name: "AI research & open science hosts eleuther", host: www.eleuther.ai, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3118 + - { id: ai-ai-research-laion, name: "AI research & open science hosts laion", host: laion.ai, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3119 + - { id: ai-ai-research-lmarena, name: "AI research & open science hosts lmarena", host: lmarena.ai, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3120 + - { id: ai-ai-research-lmsys, name: "AI research & open science hosts lmsys", host: lmsys.org, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3121 + - { id: ai-ai-research-artificialanalysis, name: "AI research & open science hosts artificialanalysis", host: artificialanalysis.ai, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3122 + - { id: ai-ai-research-livebench, name: "AI research & open science hosts livebench", host: livebench.ai, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3123 + - { id: ai-ai-research-scale-leaderboard, name: "AI research & open science hosts scale leaderboard", host: scale.com, url: "https://scale.com/leaderboard", cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3124 + - { id: ai-ai-research-vals, name: "AI research & open science hosts vals", host: www.vals.ai, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3125 + - { id: ai-ai-research-epoch, name: "AI research & open science hosts epoch", host: epoch.ai, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3126 + - { id: ai-ai-research-swebench, name: "AI research & open science hosts swebench", host: www.swebench.com, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3127 + - { id: ai-ai-research-helm, name: "AI research & open science hosts helm", host: crfm.stanford.edu, url: "https://crfm.stanford.edu/helm/", cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3128 + - { id: ai-ai-research-hai, name: "AI research & open science hosts hai", host: hai.stanford.edu, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3129 + - { id: ai-ai-research-ai-index, name: "AI research & open science hosts ai index", host: aiindex.stanford.edu, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3130 + - { id: ai-ai-research-fair-fb, name: "AI research & open science hosts fair fb", host: research.facebook.com, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3131 + - { id: ai-ai-research-anthropic-research, name: "AI research & open science hosts anthropic research", host: www.anthropic.com, url: "https://www.anthropic.com/research", cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3132 + - { id: ai-ai-research-nvidia-research, name: "AI research & open science hosts nvidia research", host: research.nvidia.com, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3133 + - { id: ai-ai-research-nvidia-nim, name: "AI research & open science hosts nvidia nim", host: build.nvidia.com, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3134 + - { id: ai-ai-research-nvidia-nim-api, name: "AI research & open science hosts nvidia nim api", host: integrate.api.nvidia.com, url: "https://integrate.api.nvidia.com/v1/models", cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3135 + - { id: ai-ai-research-nvidia-ngc-api, name: "AI research & open science hosts nvidia ngc api", host: api.ngc.nvidia.com, url: "https://api.ngc.nvidia.com/v2/", cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3136 + - { id: ai-ai-research-nvidia-developer, name: "AI research & open science hosts nvidia developer", host: developer.nvidia.com, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3137 + - { id: ai-ai-research-nvidia-forums, name: "AI research & open science hosts nvidia forums", host: forums.developer.nvidia.com, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3138 + - { id: ai-ai-research-nvidia-docs, name: "AI research & open science hosts nvidia docs", host: docs.nvidia.com, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3139 + - { id: ai-ai-research-nvidia-pypi, name: "AI research & open science hosts nvidia pypi", host: pypi.nvidia.com, url: "https://pypi.nvidia.com/", cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3140 + - { id: ai-ai-research-nvidia-cuda, name: "AI research & open science hosts nvidia cuda", host: developer.download.nvidia.com, url: "https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64/Release", cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3141 + - { id: ai-ai-research-nvidia-status, name: "AI research & open science hosts nvidia status", host: status.ngc.nvidia.com, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3142 + - { id: ai-ai-research-amd-rocm, name: "AI research & open science hosts amd rocm", host: rocm.docs.amd.com, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3143 + - { id: ai-ai-research-amd-repo, name: "AI research & open science hosts amd repo", host: repo.radeon.com, url: "https://repo.radeon.com/rocm/apt/", cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3144 + - { id: ai-ai-research-intel-oneapi, name: "AI research & open science hosts intel oneapi", host: www.intel.com, url: "https://www.intel.com/content/www/us/en/developer/tools/oneapi/overview.html", cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3145 + - { id: ai-ai-research-intel-gaudi, name: "AI research & open science hosts intel gaudi", host: habana.ai, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3146 + - { id: ai-ai-research-openvino, name: "AI research & open science hosts openvino", host: docs.openvino.ai, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3147 + - { id: ai-ai-research-google-tpu-research, name: "AI research & open science hosts google tpu research", host: sites.research.google, url: "https://sites.research.google/trc/about/", cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3148 + - { id: ai-ai-research-cerebras-docs, name: "AI research & open science hosts cerebras docs", host: docs.cerebras.net, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3149 + - { id: ai-ai-research-graphcore, name: "AI research & open science hosts graphcore", host: www.graphcore.ai, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3150 + - { id: ai-ai-research-groq-www2, name: "AI research & open science hosts groq www2", host: groq.com, url: "https://groq.com/groqcloud/", cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3151 + - { id: ai-ai-research-tenstorrent, name: "AI research & open science hosts tenstorrent", host: tenstorrent.com, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3152 + - { id: ai-ai-research-etched, name: "AI research & open science hosts etched", host: www.etched.com, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3153 + - { id: ai-ai-research-d-matrix, name: "AI research & open science hosts d matrix", host: www.d-matrix.ai, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3154 + - { id: ai-ai-research-mlcommons, name: "AI research & open science hosts mlcommons", host: mlcommons.org, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3155 + - { id: ai-ai-research-neurips, name: "AI research & open science hosts neurips", host: neurips.cc, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3156 + - { id: ai-ai-research-icml, name: "AI research & open science hosts icml", host: icml.cc, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3157 + - { id: ai-ai-research-iclr, name: "AI research & open science hosts iclr", host: iclr.cc, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3158 + - { id: ai-ai-research-openreview, name: "AI research & open science hosts openreview", host: openreview.net, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3159 + - { id: ai-ai-research-openreview-api, name: "AI research & open science hosts openreview api", host: api.openreview.net, url: "https://api.openreview.net/notes?limit=1", cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3160 + - { id: ai-ai-research-openreview-api2, name: "AI research & open science hosts openreview api2", host: api2.openreview.net, url: "https://api2.openreview.net/notes?limit=1", cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3161 + - { id: ai-ai-research-cvpr, name: "AI research & open science hosts cvpr", host: cvpr.thecvf.com, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3162 + - { id: ai-ai-research-acl, name: "AI research & open science hosts acl", host: aclanthology.org, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3163 + - { id: ai-ai-research-acl-www, name: "AI research & open science hosts acl www", host: www.aclweb.org, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3164 + - { id: ai-ai-research-aaai, name: "AI research & open science hosts aaai", host: aaai.org, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3165 + - { id: ai-ai-research-ijcai, name: "AI research & open science hosts ijcai", host: www.ijcai.org, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3166 + - { id: ai-ai-research-jmlr, name: "AI research & open science hosts jmlr", host: www.jmlr.org, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3167 + - { id: ai-ai-research-distill, name: "AI research & open science hosts distill", host: distill.pub, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3168 + - { id: ai-ai-research-alignment-forum, name: "AI research & open science hosts alignment forum", host: www.alignmentforum.org, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3169 + - { id: ai-ai-research-lesswrong, name: "AI research & open science hosts lesswrong", host: www.lesswrong.com, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3170 + - { id: ai-ai-research-metr, name: "AI research & open science hosts metr", host: metr.org, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3171 + - { id: ai-ai-research-apollo, name: "AI research & open science hosts apollo", host: www.apolloresearch.ai, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3172 + - { id: ai-ai-research-redwood, name: "AI research & open science hosts redwood", host: www.redwoodresearch.org, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3173 + - { id: ai-ai-research-ai-safety, name: "AI research & open science hosts ai safety", host: aisafety.info, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3174 + - { id: ai-ai-research-aisi-uk, name: "AI research & open science hosts aisi uk", host: www.aisi.gov.uk, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3175 + - { id: ai-ai-research-cais, name: "AI research & open science hosts cais", host: safe.ai, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3176 + - { id: ai-ai-research-fli, name: "AI research & open science hosts fli", host: futureoflife.org, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3177 + - { id: ai-ai-research-partnership-ai, name: "AI research & open science hosts partnership ai", host: partnershiponai.org, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3178 + - { id: ai-ai-research-mlsafety, name: "AI research & open science hosts mlsafety", host: www.mlsafety.org, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3179 + - { id: ai-ai-research-arc, name: "AI research & open science hosts arc", host: alignment.org, cat: ai, provider: ai-research, cc: null, imp: 3, tier: 4, checks: [http] }
3180 + - { id: ai-ai-consumer-apps-jasper, name: "Other AI consumer & productivity apps jasper", host: www.jasper.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3181 + - { id: ai-ai-consumer-apps-jasper-status, name: "Other AI consumer & productivity apps jasper status", host: status.jasper.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3182 + - { id: ai-ai-consumer-apps-copy-ai, name: "Other AI consumer & productivity apps copy ai", host: www.copy.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3183 + - { id: ai-ai-consumer-apps-writesonic, name: "Other AI consumer & productivity apps writesonic", host: writesonic.com, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3184 + - { id: ai-ai-consumer-apps-rytr, name: "Other AI consumer & productivity apps rytr", host: rytr.me, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3185 + - { id: ai-ai-consumer-apps-wordtune, name: "Other AI consumer & productivity apps wordtune", host: www.wordtune.com, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3186 + - { id: ai-ai-consumer-apps-grammarlygo, name: "Other AI consumer & productivity apps grammarlygo", host: www.grammarly.com, url: "https://www.grammarly.com/ai", cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3187 + - { id: ai-ai-consumer-apps-gamma, name: "Other AI consumer & productivity apps gamma", host: gamma.app, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3188 + - { id: ai-ai-consumer-apps-gamma-status, name: "Other AI consumer & productivity apps gamma status", host: status.gamma.app, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3189 + - { id: ai-ai-consumer-apps-tome, name: "Other AI consumer & productivity apps tome", host: tome.app, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3190 + - { id: ai-ai-consumer-apps-beautiful-ai, name: "Other AI consumer & productivity apps beautiful ai", host: www.beautiful.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3191 + - { id: ai-ai-consumer-apps-pitch, name: "Other AI consumer & productivity apps pitch", host: pitch.com, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3192 + - { id: ai-ai-consumer-apps-canva-ai, name: "Other AI consumer & productivity apps canva ai", host: www.canva.com, url: "https://www.canva.com/ai-image-generator/", cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3193 + - { id: ai-ai-consumer-apps-adobe-firefly, name: "Other AI consumer & productivity apps adobe firefly", host: firefly.adobe.com, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3194 + - { id: ai-ai-consumer-apps-adobe-firefly-www, name: "Other AI consumer & productivity apps adobe firefly www", host: www.adobe.com, url: "https://www.adobe.com/products/firefly.html", cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3195 + - { id: ai-ai-consumer-apps-otter-status, name: "Other AI consumer & productivity apps otter status", host: status.otter.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3196 + - { id: ai-ai-consumer-apps-otter-www, name: "Other AI consumer & productivity apps otter www", host: otter.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3197 + - { id: ai-ai-consumer-apps-fireflies, name: "Other AI consumer & productivity apps fireflies", host: fireflies.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3198 + - { id: ai-ai-consumer-apps-fireflies-status, name: "Other AI consumer & productivity apps fireflies status", host: status.fireflies.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3199 + - { id: ai-ai-consumer-apps-fathom-video, name: "Other AI consumer & productivity apps fathom video", host: fathom.video, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3200 + - { id: ai-ai-consumer-apps-tldv, name: "Other AI consumer & productivity apps tldv", host: tldv.io, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3201 + - { id: ai-ai-consumer-apps-read-ai, name: "Other AI consumer & productivity apps read ai", host: www.read.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3202 + - { id: ai-ai-consumer-apps-krisp, name: "Other AI consumer & productivity apps krisp", host: krisp.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3203 + - { id: ai-ai-consumer-apps-zoom-ai, name: "Other AI consumer & productivity apps zoom ai", host: www.zoom.com, url: "https://www.zoom.com/en/ai-assistant/", cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3204 + - { id: ai-ai-consumer-apps-consensus, name: "Other AI consumer & productivity apps consensus", host: consensus.app, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3205 + - { id: ai-ai-consumer-apps-elicit, name: "Other AI consumer & productivity apps elicit", host: elicit.com, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3206 + - { id: ai-ai-consumer-apps-scispace, name: "Other AI consumer & productivity apps scispace", host: typeset.io, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3207 + - { id: ai-ai-consumer-apps-scholarcy, name: "Other AI consumer & productivity apps scholarcy", host: www.scholarcy.com, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3208 + - { id: ai-ai-consumer-apps-researchrabbit, name: "Other AI consumer & productivity apps researchrabbit", host: www.researchrabbit.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3209 + - { id: ai-ai-consumer-apps-connectedpapers, name: "Other AI consumer & productivity apps connectedpapers", host: www.connectedpapers.com, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3210 + - { id: ai-ai-consumer-apps-litmaps, name: "Other AI consumer & productivity apps litmaps", host: www.litmaps.com, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3211 + - { id: ai-ai-consumer-apps-paperpal, name: "Other AI consumer & productivity apps paperpal", host: paperpal.com, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3212 + - { id: ai-ai-consumer-apps-jenni, name: "Other AI consumer & productivity apps jenni", host: jenni.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3213 + - { id: ai-ai-consumer-apps-andi, name: "Other AI consumer & productivity apps andi", host: andisearch.com, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3214 + - { id: ai-ai-consumer-apps-komo, name: "Other AI consumer & productivity apps komo", host: komo.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3215 + - { id: ai-ai-consumer-apps-iask, name: "Other AI consumer & productivity apps iask", host: iask.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3216 + - { id: ai-ai-consumer-apps-felo, name: "Other AI consumer & productivity apps felo", host: felo.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3217 + - { id: ai-ai-consumer-apps-lumina, name: "Other AI consumer & productivity apps lumina", host: www.lumina.sh, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3218 + - { id: ai-ai-consumer-apps-liner, name: "Other AI consumer & productivity apps liner", host: getliner.com, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3219 + - { id: ai-ai-consumer-apps-metaso, name: "Other AI consumer & productivity apps metaso", host: metaso.cn, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3220 + - { id: ai-ai-consumer-apps-nano, name: "Other AI consumer & productivity apps nano", host: nano.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3221 + - { id: ai-ai-consumer-apps-tiangong, name: "Other AI consumer & productivity apps tiangong", host: www.tiangong.cn, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3222 + - { id: ai-ai-consumer-apps-tongyi-app, name: "Other AI consumer & productivity apps tongyi app", host: www.tongyi.com, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3223 + - { id: ai-ai-consumer-apps-doubao-app, name: "Other AI consumer & productivity apps doubao app", host: www.doubao.com, url: "https://www.doubao.com/chat/", cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3224 + - { id: ai-ai-consumer-apps-kimi-app, name: "Other AI consumer & productivity apps kimi app", host: www.kimi.com, url: "https://www.kimi.com/", cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3225 + - { id: ai-ai-consumer-apps-chatglm-app, name: "Other AI consumer & productivity apps chatglm app", host: chatglm.cn, url: "https://chatglm.cn/main/alltoolsdetail", cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3226 + - { id: ai-ai-consumer-apps-zhipu-status, name: "Other AI consumer & productivity apps zhipu status", host: status.bigmodel.cn, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3227 + - { id: ai-ai-consumer-apps-moonshot-status, name: "Other AI consumer & productivity apps moonshot status", host: status.moonshot.cn, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3228 + - { id: ai-ai-consumer-apps-line-ai, name: "Other AI consumer & productivity apps line ai", host: www.lycorp.co.jp, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3229 + - { id: ai-ai-consumer-apps-naver-clova, name: "Other AI consumer & productivity apps naver clova", host: clova.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3230 + - { id: ai-ai-consumer-apps-naver-clovastudio, name: "Other AI consumer & productivity apps naver clovastudio", host: www.ncloud.com, url: "https://www.ncloud.com/product/aiService/clovaStudio", cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3231 + - { id: ai-ai-consumer-apps-upstage, name: "Other AI consumer & productivity apps upstage", host: www.upstage.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3232 + - { id: ai-ai-consumer-apps-upstage-api, name: "Other AI consumer & productivity apps upstage api", host: api.upstage.ai, url: "https://api.upstage.ai/v1/models", cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3233 + - { id: ai-ai-consumer-apps-upstage-console, name: "Other AI consumer & productivity apps upstage console", host: console.upstage.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3234 + - { id: ai-ai-consumer-apps-sk-adot, name: "Other AI consumer & productivity apps sk adot", host: adot.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3235 + - { id: ai-ai-consumer-apps-lg-exaone, name: "Other AI consumer & productivity apps lg exaone", host: www.lgresearch.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3236 + - { id: ai-ai-consumer-apps-rakuten-ai, name: "Other AI consumer & productivity apps rakuten ai", host: rakuten.co.jp, url: "https://rakuten.co.jp/", cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3237 + - { id: ai-ai-consumer-apps-sakana, name: "Other AI consumer & productivity apps sakana", host: sakana.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3238 + - { id: ai-ai-consumer-apps-preferred, name: "Other AI consumer & productivity apps preferred", host: www.preferred.jp, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3239 + - { id: ai-ai-consumer-apps-plamo, name: "Other AI consumer & productivity apps plamo", host: plamo.preferredai.jp, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3240 + - { id: ai-ai-consumer-apps-elyza, name: "Other AI consumer & productivity apps elyza", host: elyza.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3241 + - { id: ai-ai-consumer-apps-softbank-ai, name: "Other AI consumer & productivity apps softbank ai", host: www.sbintuitions.co.jp, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3242 + - { id: ai-ai-consumer-apps-stockmark, name: "Other AI consumer & productivity apps stockmark", host: stockmark.co.jp, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3243 + - { id: ai-ai-consumer-apps-abeja, name: "Other AI consumer & productivity apps abeja", host: www.abejainc.com, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3244 + - { id: ai-ai-consumer-apps-cyberagent-ai, name: "Other AI consumer & productivity apps cyberagent ai", host: www.cyberagent.co.jp, url: "https://www.cyberagent.co.jp/techinfo/", cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3245 + - { id: ai-ai-consumer-apps-nttdata-tsuzumi, name: "Other AI consumer & productivity apps nttdata tsuzumi", host: www.rd.ntt, url: "https://www.rd.ntt/e/research/LLM_tsuzumi.html", cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3246 + - { id: ai-ai-consumer-apps-fujitsu-ai, name: "Other AI consumer & productivity apps fujitsu ai", host: www.fujitsu.com, url: "https://www.fujitsu.com/global/about/research/technology/ai/", cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3247 + - { id: ai-ai-consumer-apps-kotoba, name: "Other AI consumer & productivity apps kotoba", host: kotoba.tech, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3248 + - { id: ai-ai-consumer-apps-turing-ai, name: "Other AI consumer & productivity apps turing ai", host: www.turing-motors.com, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3249 + - { id: ai-ai-consumer-apps-sarvam, name: "Other AI consumer & productivity apps sarvam", host: www.sarvam.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3250 + - { id: ai-ai-consumer-apps-sarvam-api, name: "Other AI consumer & productivity apps sarvam api", host: api.sarvam.ai, url: "https://api.sarvam.ai/", cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3251 + - { id: ai-ai-consumer-apps-krutrim, name: "Other AI consumer & productivity apps krutrim", host: www.olakrutrim.com, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3252 + - { id: ai-ai-consumer-apps-krutrim-cloud, name: "Other AI consumer & productivity apps krutrim cloud", host: cloud.olakrutrim.com, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3253 + - { id: ai-ai-consumer-apps-bhashini, name: "Other AI consumer & productivity apps bhashini", host: bhashini.gov.in, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3254 + - { id: ai-ai-consumer-apps-ai4bharat, name: "Other AI consumer & productivity apps ai4bharat", host: ai4bharat.iitm.ac.in, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3255 + - { id: ai-ai-consumer-apps-tech-mahindra-indus, name: "Other AI consumer & productivity apps tech mahindra indus", host: www.techmahindra.com, url: "https://www.techmahindra.com/project-indus/", cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3256 + - { id: ai-ai-consumer-apps-g42, name: "Other AI consumer & productivity apps g42", host: www.g42.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3257 + - { id: ai-ai-consumer-apps-inception, name: "Other AI consumer & productivity apps inception", host: www.inceptionai.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3258 + - { id: ai-ai-consumer-apps-core42, name: "Other AI consumer & productivity apps core42", host: www.core42.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3259 + - { id: ai-ai-consumer-apps-tii-falcon, name: "Other AI consumer & productivity apps tii falcon", host: falconllm.tii.ae, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3260 + - { id: ai-ai-consumer-apps-tii, name: "Other AI consumer & productivity apps tii", host: www.tii.ae, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3261 + - { id: ai-ai-consumer-apps-humain, name: "Other AI consumer & productivity apps humain", host: humain.com, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3262 + - { id: ai-ai-consumer-apps-deepl-write, name: "Other AI consumer & productivity apps deepl write", host: www.deepl.com, url: "https://www.deepl.com/write", cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3263 + - { id: ai-ai-consumer-apps-mistral-ai-www, name: "Other AI consumer & productivity apps mistral ai www", host: mistral.ai, url: "https://mistral.ai/news", cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3264 + - { id: ai-ai-consumer-apps-h-company, name: "Other AI consumer & productivity apps h company", host: www.hcompany.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3265 + - { id: ai-ai-consumer-apps-poolside, name: "Other AI consumer & productivity apps poolside", host: poolside.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3266 + - { id: ai-ai-consumer-apps-lighton, name: "Other AI consumer & productivity apps lighton", host: www.lighton.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3267 + - { id: ai-ai-consumer-apps-lighton-paradigm, name: "Other AI consumer & productivity apps lighton paradigm", host: paradigm.lighton.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3268 + - { id: ai-ai-consumer-apps-pleias, name: "Other AI consumer & productivity apps pleias", host: pleias.fr, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3269 + - { id: ai-ai-consumer-apps-giskard, name: "Other AI consumer & productivity apps giskard", host: www.giskard.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3270 + - { id: ai-ai-consumer-apps-black-forest, name: "Other AI consumer & productivity apps black forest", host: blackforestlabs.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3271 + - { id: ai-ai-consumer-apps-silo-ai, name: "Other AI consumer & productivity apps silo ai", host: www.silo.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3272 + - { id: ai-ai-consumer-apps-stability-ai-www, name: "Other AI consumer & productivity apps stability ai www", host: stability.ai, url: "https://stability.ai/news", cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3273 + - { id: ai-ai-consumer-apps-wayve, name: "Other AI consumer & productivity apps wayve", host: wayve.ai, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3274 + - { id: ai-ai-consumer-apps-isomorphic, name: "Other AI consumer & productivity apps isomorphic", host: www.isomorphiclabs.com, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3275 + - { id: ai-ai-consumer-apps-ada-lovelace, name: "Other AI consumer & productivity apps ada lovelace", host: www.adalovelaceinstitute.org, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3276 + - { id: ai-ai-consumer-apps-cambridge-ai, name: "Other AI consumer & productivity apps cambridge ai", host: www.cst.cam.ac.uk, url: "https://www.cst.cam.ac.uk/research/themes/artificial-intelligence", cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3277 + - { id: ai-ai-consumer-apps-oxford-ai, name: "Other AI consumer & productivity apps oxford ai", host: www.cs.ox.ac.uk, url: "https://www.cs.ox.ac.uk/research/ai_ml/", cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3278 + - { id: ai-ai-consumer-apps-ucl-ai, name: "Other AI consumer & productivity apps ucl ai", host: www.ucl.ac.uk, url: "https://www.ucl.ac.uk/ai-centre/", cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3279 + - { id: ai-ai-consumer-apps-eth-ai, name: "Other AI consumer & productivity apps eth ai", host: ai.ethz.ch, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3280 + - { id: ai-ai-consumer-apps-epfl-ai, name: "Other AI consumer & productivity apps epfl ai", host: www.epfl.ch, url: "https://www.epfl.ch/research/domains/ai/", cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3281 + - { id: ai-ai-consumer-apps-swiss-ai, name: "Other AI consumer & productivity apps swiss ai", host: www.swiss-ai.org, cat: ai, provider: ai-apps, cc: null, imp: 3, tier: 4, checks: [http] }
3282 + # ───────── Security vendors, threat intelligence, CERTs, standards & privacy tooling (1159)
3283 + - { id: sec-fortinet-hosts-docs, name: "Fortinet hosts docs", host: docs.fortinet.com, cat: infrastructure, provider: fortinet, cc: US, imp: 3, tier: 4, checks: [http] }
3284 + - { id: sec-fortinet-hosts-fortiguard-labs, name: "Fortinet hosts fortiguard labs", host: fortiguard.fortinet.com, url: "https://fortiguard.fortinet.com/psirt", cat: infrastructure, provider: fortinet, cc: US, imp: 3, tier: 4, checks: [http] }
3285 + - { id: sec-fortinet-hosts-community, name: "Fortinet hosts community", host: community.fortinet.com, cat: infrastructure, provider: fortinet, cc: US, imp: 3, tier: 4, checks: [http] }
3286 + - { id: sec-fortinet-hosts-status, name: "Fortinet hosts status page", host: status.forticloud.com, cat: infrastructure, provider: fortinet, cc: US, imp: 3, tier: 4, checks: [http] }
3287 + - { id: sec-fortinet-hosts-training, name: "Fortinet hosts training", host: training.fortinet.com, cat: infrastructure, provider: fortinet, cc: US, imp: 3, tier: 4, checks: [http] }
3288 + - { id: sec-fortinet-hosts-forticloud, name: "Fortinet hosts forticloud", host: www.forticloud.com, cat: infrastructure, provider: fortinet, cc: US, imp: 3, tier: 4, checks: [http] }
3289 + - { id: sec-checkpoint-hosts-research, name: "Check Point hosts research", host: research.checkpoint.com, cat: infrastructure, provider: checkpoint, svc: checkpoint, cc: IL, imp: 3, tier: 4, checks: [http] }
3290 + - { id: sec-checkpoint-hosts-support, name: "Check Point hosts support", host: supportcenter.checkpoint.com, cat: infrastructure, provider: checkpoint, svc: checkpoint, cc: IL, imp: 3, tier: 4, checks: [http] }
3291 + - { id: sec-checkpoint-hosts-community, name: "Check Point hosts community", host: community.checkpoint.com, cat: infrastructure, provider: checkpoint, svc: checkpoint, cc: IL, imp: 3, tier: 4, checks: [http] }
3292 + - { id: sec-checkpoint-hosts-blog, name: "Check Point hosts blog", host: blog.checkpoint.com, cat: infrastructure, provider: checkpoint, svc: checkpoint, cc: IL, imp: 3, tier: 4, checks: [http] }
3293 + - { id: sec-checkpoint-hosts-threatmap, name: "Check Point hosts threatmap", host: threatmap.checkpoint.com, cat: infrastructure, provider: checkpoint, svc: checkpoint, cc: IL, imp: 3, tier: 4, checks: [http] }
3294 + - { id: sec-checkpoint-hosts-sc1, name: "Check Point hosts sc1", host: sc1.checkpoint.com, cat: infrastructure, provider: checkpoint, svc: checkpoint, cc: IL, imp: 3, tier: 4, checks: [http] }
3295 + - { id: sec-cisco-talos-talos, name: "Cisco Talos / Cisco Security talos", host: talosintelligence.com, cat: infrastructure, provider: cisco, cc: US, imp: 4, tier: 3, checks: [http] }
3296 + - { id: sec-cisco-talos-talos-blog, name: "Cisco Talos / Cisco Security talos blog", host: blog.talosintelligence.com, cat: infrastructure, provider: cisco, cc: US, imp: 4, tier: 3, checks: [http] }
3297 + - { id: sec-cisco-talos-umbrella-status, name: "Cisco Talos / Cisco Security umbrella status", host: status.umbrella.com, cat: infrastructure, provider: cisco, cc: US, imp: 4, tier: 3, checks: [http] }
3298 + - { id: sec-cisco-talos-umbrella-docs, name: "Cisco Talos / Cisco Security umbrella docs", host: docs.umbrella.com, cat: infrastructure, provider: cisco, cc: US, imp: 4, tier: 3, checks: [http] }
3299 + - { id: sec-cisco-talos-psirt, name: "Cisco Talos / Cisco Security psirt", host: sec.cloudapps.cisco.com, url: "https://sec.cloudapps.cisco.com/security/center/publicationListing.x", cat: infrastructure, provider: cisco, cc: US, imp: 4, tier: 3, checks: [http, dns] }
3300 + - { id: sec-cisco-talos-software, name: "Cisco Talos / Cisco Security software", host: software.cisco.com, cat: infrastructure, provider: cisco, cc: US, imp: 4, tier: 3, checks: [http] }
3301 + - { id: sec-cisco-talos-cisco-status, name: "Cisco Talos / Cisco Security cisco status", host: status.cisco.com, cat: infrastructure, provider: cisco, cc: US, imp: 4, tier: 3, checks: [http] }
3302 + - { id: sec-cisco-talos-meraki-docs, name: "Cisco Talos / Cisco Security meraki docs", host: documentation.meraki.com, cat: infrastructure, provider: cisco, cc: US, imp: 4, tier: 3, checks: [http] }
3303 + - { id: sec-cisco-talos-secure-endpoint, name: "Cisco Talos / Cisco Security secure endpoint", host: console.amp.cisco.com, cat: infrastructure, provider: cisco, cc: US, imp: 4, tier: 3, checks: [http] }
3304 + - { id: sec-cisco-talos-xdr, name: "Cisco Talos / Cisco Security xdr", host: xdr.us.security.cisco.com, url: "https://xdr.us.security.cisco.com/", cat: infrastructure, provider: cisco, cc: US, imp: 4, tier: 3, checks: [http, dns] }
3305 + - { id: sec-cisco-talos-snort, name: "Cisco Talos / Cisco Security snort", host: www.snort.org, cat: infrastructure, provider: cisco, cc: US, imp: 4, tier: 3, checks: [http] }
3306 + - { id: sec-cisco-talos-clamav, name: "Cisco Talos / Cisco Security clamav", host: www.clamav.net, cat: infrastructure, provider: cisco, cc: US, imp: 4, tier: 3, checks: [http] }
3307 + - { id: sec-cisco-talos-clamav-db, name: "Cisco Talos / Cisco Security clamav db", host: database.clamav.net, url: "https://database.clamav.net/main.cvd", cat: infrastructure, provider: cisco, cc: US, imp: 4, tier: 3, checks: [http, dns] }
3308 + - { id: sec-crowdstrike-hosts-falcon, name: "CrowdStrike hosts falcon", host: falcon.crowdstrike.com, cat: infrastructure, provider: crowdstrike, cc: US, imp: 4, tier: 3, checks: [http] }
3309 + - { id: sec-crowdstrike-hosts-falcon-eu, name: "CrowdStrike hosts falcon eu", host: falcon.eu-1.crowdstrike.com, cat: infrastructure, provider: crowdstrike, cc: US, imp: 4, tier: 3, checks: [http] }
3310 + - { id: sec-crowdstrike-hosts-api, name: "CrowdStrike hosts API", host: api.crowdstrike.com, url: "https://api.crowdstrike.com/", cat: infrastructure, provider: crowdstrike, cc: US, imp: 4, tier: 3, checks: [http, dns] }
3311 + - { id: sec-crowdstrike-hosts-api-eu, name: "CrowdStrike hosts api eu", host: api.eu-1.crowdstrike.com, url: "https://api.eu-1.crowdstrike.com/", cat: infrastructure, provider: crowdstrike, cc: US, imp: 4, tier: 3, checks: [http, dns] }
3312 + - { id: sec-crowdstrike-hosts-supportportal, name: "CrowdStrike hosts supportportal", host: supportportal.crowdstrike.com, cat: infrastructure, provider: crowdstrike, cc: US, imp: 4, tier: 3, checks: [http] }
3313 + - { id: sec-crowdstrike-hosts-marketplace, name: "CrowdStrike hosts marketplace", host: marketplace.crowdstrike.com, cat: infrastructure, provider: crowdstrike, cc: US, imp: 4, tier: 3, checks: [http] }
3314 + - { id: sec-crowdstrike-hosts-adversary, name: "CrowdStrike hosts adversary", host: www.crowdstrike.com, url: "https://www.crowdstrike.com/adversaries/", cat: infrastructure, provider: crowdstrike, cc: US, imp: 4, tier: 3, checks: [http, dns] }
3315 + - { id: sec-crowdstrike-hosts-ts, name: "CrowdStrike hosts ts", host: ts01-b.cloudsink.net, url: "https://ts01-b.cloudsink.net/", cat: infrastructure, provider: crowdstrike, cc: US, imp: 4, tier: 3, checks: [http, dns] }
3316 + - { id: sec-crowdstrike-hosts-sensor, name: "CrowdStrike hosts sensor", host: lfodown01-b.cloudsink.net, url: "https://lfodown01-b.cloudsink.net/", cat: infrastructure, provider: crowdstrike, cc: US, imp: 4, tier: 3, checks: [http, dns] }
3317 + - { id: sec-sentinelone, name: "SentinelOne", host: www.sentinelone.com, cat: infrastructure, provider: sentinelone, svc: sentinelone, cc: US, imp: 3, tier: 4, checks: [http] }
3318 + - { id: sec-sentinelone-status, name: "SentinelOne status page", host: status.sentinelone.com, cat: infrastructure, provider: sentinelone, svc: sentinelone, cc: US, imp: 3, tier: 4, checks: [http] }
3319 + - { id: sec-sentinelone-usea1, name: "SentinelOne usea1", host: usea1-partners.sentinelone.net, url: "https://usea1-partners.sentinelone.net/", cat: infrastructure, provider: sentinelone, svc: sentinelone, cc: US, imp: 3, tier: 4, checks: [http] }
3320 + - { id: sec-sentinelone-support, name: "SentinelOne support", host: support.sentinelone.com, cat: infrastructure, provider: sentinelone, svc: sentinelone, cc: US, imp: 3, tier: 4, checks: [http] }
3321 + - { id: sec-sentinelone-community, name: "SentinelOne community", host: community.sentinelone.com, cat: infrastructure, provider: sentinelone, svc: sentinelone, cc: US, imp: 3, tier: 4, checks: [http] }
3322 + - { id: sec-sophos-status, name: "Sophos status page", host: status.sophos.com, cat: infrastructure, provider: sophos, cc: GB, imp: 3, tier: 4, checks: [http] }
3323 + - { id: sec-sophos-support, name: "Sophos support", host: support.sophos.com, cat: infrastructure, provider: sophos, cc: GB, imp: 3, tier: 4, checks: [http] }
3324 + - { id: sec-sophos-docs, name: "Sophos docs", host: docs.sophos.com, cat: infrastructure, provider: sophos, cc: GB, imp: 3, tier: 4, checks: [http] }
3325 + - { id: sec-sophos-community, name: "Sophos community", host: community.sophos.com, cat: infrastructure, provider: sophos, cc: GB, imp: 3, tier: 4, checks: [http] }
3326 + - { id: sec-sophos-news, name: "Sophos news", host: news.sophos.com, cat: infrastructure, provider: sophos, cc: GB, imp: 3, tier: 4, checks: [http] }
3327 + - { id: sec-sophos-id, name: "Sophos identity", host: id.sophos.com, cat: infrastructure, provider: sophos, cc: GB, imp: 3, tier: 4, checks: [http] }
3328 + - { id: sec-sophos-downloads, name: "Sophos downloads", host: downloads.sophos.com, url: "https://downloads.sophos.com/", cat: infrastructure, provider: sophos, cc: GB, imp: 3, tier: 4, checks: [http] }
3329 + - { id: sec-sophos-nakedsecurity, name: "Sophos nakedsecurity", host: nakedsecurity.sophos.com, cat: infrastructure, provider: sophos, cc: GB, imp: 3, tier: 4, checks: [http] }
3330 + - { id: sec-trendmicro, name: "Trend Micro", host: www.trendmicro.com, cat: infrastructure, provider: trendmicro, cc: JP, imp: 3, tier: 4, checks: [http] }
3331 + - { id: sec-trendmicro-status, name: "Trend Micro status page", host: status.trendmicro.com, cat: infrastructure, provider: trendmicro, cc: JP, imp: 3, tier: 4, checks: [http] }
3332 + - { id: sec-trendmicro-success, name: "Trend Micro success", host: success.trendmicro.com, cat: infrastructure, provider: trendmicro, cc: JP, imp: 3, tier: 4, checks: [http] }
3333 + - { id: sec-trendmicro-docs, name: "Trend Micro docs", host: docs.trendmicro.com, cat: infrastructure, provider: trendmicro, cc: JP, imp: 3, tier: 4, checks: [http] }
3334 + - { id: sec-trendmicro-zdi, name: "Trend Micro zdi", host: www.zerodayinitiative.com, cat: infrastructure, provider: trendmicro, cc: JP, imp: 3, tier: 4, checks: [http] }
3335 + - { id: sec-trendmicro-vision-one, name: "Trend Micro vision one", host: portal.xdr.trendmicro.com, url: "https://portal.xdr.trendmicro.com/", cat: infrastructure, provider: trendmicro, cc: JP, imp: 3, tier: 4, checks: [http] }
3336 + - { id: sec-trendmicro-cloudone, name: "Trend Micro cloudone", host: cloudone.trendmicro.com, url: "https://cloudone.trendmicro.com/", cat: infrastructure, provider: trendmicro, cc: JP, imp: 3, tier: 4, checks: [http] }
3337 + - { id: sec-trendmicro-helpcenter, name: "Trend Micro helpcenter", host: helpcenter.trendmicro.com, cat: infrastructure, provider: trendmicro, cc: JP, imp: 3, tier: 4, checks: [http] }
3338 + - { id: sec-trendmicro-files, name: "Trend Micro files", host: files.trendmicro.com, url: "https://files.trendmicro.com/", cat: infrastructure, provider: trendmicro, cc: JP, imp: 3, tier: 4, checks: [http] }
3339 + - { id: sec-kaspersky, name: "Kaspersky", host: www.kaspersky.com, cat: infrastructure, provider: kaspersky, cc: RU, imp: 3, tier: 4, checks: [http] }
3340 + - { id: sec-kaspersky-securelist, name: "Kaspersky securelist", host: securelist.com, cat: infrastructure, provider: kaspersky, cc: RU, imp: 3, tier: 4, checks: [http] }
3341 + - { id: sec-kaspersky-support, name: "Kaspersky support", host: support.kaspersky.com, cat: infrastructure, provider: kaspersky, cc: RU, imp: 3, tier: 4, checks: [http] }
3342 + - { id: sec-kaspersky-threats, name: "Kaspersky threats", host: threats.kaspersky.com, cat: infrastructure, provider: kaspersky, cc: RU, imp: 3, tier: 4, checks: [http] }
3343 + - { id: sec-kaspersky-opentip, name: "Kaspersky opentip", host: opentip.kaspersky.com, cat: infrastructure, provider: kaspersky, cc: RU, imp: 3, tier: 4, checks: [http] }
3344 + - { id: sec-kaspersky-ics-cert, name: "Kaspersky ics cert", host: ics-cert.kaspersky.com, cat: infrastructure, provider: kaspersky, cc: RU, imp: 3, tier: 4, checks: [http] }
3345 + - { id: sec-kaspersky-cybermap, name: "Kaspersky cybermap", host: cybermap.kaspersky.com, cat: infrastructure, provider: kaspersky, cc: RU, imp: 3, tier: 4, checks: [http] }
3346 + - { id: sec-kaspersky-encyclopedia, name: "Kaspersky encyclopedia", host: encyclopedia.kaspersky.com, cat: infrastructure, provider: kaspersky, cc: RU, imp: 3, tier: 4, checks: [http] }
3347 + - { id: sec-kaspersky-ru, name: "Kaspersky ru", host: www.kaspersky.ru, cat: infrastructure, provider: kaspersky, cc: RU, imp: 3, tier: 4, checks: [http] }
3348 + - { id: sec-eset, name: "ESET", host: www.eset.com, cat: infrastructure, provider: eset, svc: eset, cc: SK, imp: 3, tier: 4, checks: [http] }
3349 + - { id: sec-eset-welivesecurity, name: "ESET welivesecurity", host: www.welivesecurity.com, cat: infrastructure, provider: eset, svc: eset, cc: SK, imp: 3, tier: 4, checks: [http] }
3350 + - { id: sec-eset-support, name: "ESET support", host: support.eset.com, cat: infrastructure, provider: eset, svc: eset, cc: SK, imp: 3, tier: 4, checks: [http] }
3351 + - { id: sec-eset-help, name: "ESET help centre", host: help.eset.com, cat: infrastructure, provider: eset, svc: eset, cc: SK, imp: 3, tier: 4, checks: [http] }
3352 + - { id: sec-eset-forum, name: "ESET forum", host: forum.eset.com, cat: infrastructure, provider: eset, svc: eset, cc: SK, imp: 3, tier: 4, checks: [http] }
3353 + - { id: sec-eset-status, name: "ESET status page", host: status.eset.com, cat: infrastructure, provider: eset, svc: eset, cc: SK, imp: 3, tier: 4, checks: [http] }
3354 + - { id: sec-eset-repository, name: "ESET repository", host: repository.eset.com, url: "https://repository.eset.com/v1/", cat: infrastructure, provider: eset, svc: eset, cc: SK, imp: 3, tier: 4, checks: [http] }
3355 + - { id: sec-eset-update, name: "ESET update", host: update.eset.com, url: "https://update.eset.com/", cat: infrastructure, provider: eset, svc: eset, cc: SK, imp: 3, tier: 4, checks: [http] }
3356 + - { id: sec-eset-home, name: "ESET home", host: home.eset.com, cat: infrastructure, provider: eset, svc: eset, cc: SK, imp: 3, tier: 4, checks: [http] }
3357 + - { id: sec-eset-protect, name: "ESET protect", host: protect.eset.com, cat: infrastructure, provider: eset, svc: eset, cc: SK, imp: 3, tier: 4, checks: [http] }
3358 + - { id: sec-bitdefender, name: "Bitdefender", host: www.bitdefender.com, cat: infrastructure, provider: bitdefender, cc: RO, imp: 3, tier: 4, checks: [http] }
3359 + - { id: sec-bitdefender-central, name: "Bitdefender central", host: central.bitdefender.com, cat: infrastructure, provider: bitdefender, cc: RO, imp: 3, tier: 4, checks: [http] }
3360 + - { id: sec-bitdefender-gravityzone, name: "Bitdefender gravityzone", host: gravityzone.bitdefender.com, cat: infrastructure, provider: bitdefender, cc: RO, imp: 3, tier: 4, checks: [http] }
3361 + - { id: sec-bitdefender-download, name: "Bitdefender downloads", host: download.bitdefender.com, url: "https://download.bitdefender.com/", cat: infrastructure, provider: bitdefender, cc: RO, imp: 3, tier: 4, checks: [http] }
3362 + - { id: sec-bitdefender-nimbus, name: "Bitdefender nimbus", host: nimbus.bitdefender.net, url: "https://nimbus.bitdefender.net/", cat: infrastructure, provider: bitdefender, cc: RO, imp: 3, tier: 4, checks: [http] }
3363 + - { id: sec-bitdefender-community, name: "Bitdefender community", host: community.bitdefender.com, cat: infrastructure, provider: bitdefender, cc: RO, imp: 3, tier: 4, checks: [http] }
3364 + - { id: sec-malwarebytes, name: "Malwarebytes", host: www.malwarebytes.com, cat: infrastructure, provider: malwarebytes, cc: US, imp: 3, tier: 4, checks: [http] }
3365 + - { id: sec-malwarebytes-status, name: "Malwarebytes status page", host: status.malwarebytes.com, cat: infrastructure, provider: malwarebytes, cc: US, imp: 3, tier: 4, checks: [http] }
3366 + - { id: sec-malwarebytes-support, name: "Malwarebytes support", host: support.malwarebytes.com, cat: infrastructure, provider: malwarebytes, cc: US, imp: 3, tier: 4, checks: [http] }
3367 + - { id: sec-malwarebytes-forums, name: "Malwarebytes forum", host: forums.malwarebytes.com, cat: infrastructure, provider: malwarebytes, cc: US, imp: 3, tier: 4, checks: [http] }
3368 + - { id: sec-malwarebytes-downloads, name: "Malwarebytes downloads", host: downloads.malwarebytes.com, url: "https://downloads.malwarebytes.com/", cat: infrastructure, provider: malwarebytes, cc: US, imp: 3, tier: 4, checks: [http] }
3369 + - { id: sec-malwarebytes-telemetry, name: "Malwarebytes telemetry", host: telemetry.malwarebytes.com, url: "https://telemetry.malwarebytes.com/", cat: infrastructure, provider: malwarebytes, cc: US, imp: 3, tier: 4, checks: [http] }
3370 + - { id: sec-malwarebytes-data, name: "Malwarebytes data", host: data-cdn.mbamupdates.com, url: "https://data-cdn.mbamupdates.com/", cat: infrastructure, provider: malwarebytes, cc: US, imp: 3, tier: 4, checks: [http] }
3371 + - { id: sec-malwarebytes-threatdown, name: "Malwarebytes threatdown", host: www.threatdown.com, cat: infrastructure, provider: malwarebytes, cc: US, imp: 3, tier: 4, checks: [http] }
3372 + - { id: sec-malwarebytes-threatdown-status, name: "Malwarebytes threatdown status", host: status.threatdown.com, cat: infrastructure, provider: malwarebytes, cc: US, imp: 3, tier: 4, checks: [http] }
3373 + - { id: sec-gen-digital-gen, name: "Gen Digital (Norton / Avast / AVG / Avira / CCleaner) gen", host: www.gendigital.com, cat: infrastructure, provider: gen, cc: US, imp: 3, tier: 4, checks: [http] }
3374 + - { id: sec-gen-digital-norton, name: "Gen Digital (Norton / Avast / AVG / Avira / CCleaner) norton", host: us.norton.com, cat: infrastructure, provider: gen, cc: US, imp: 3, tier: 4, checks: [http] }
3375 + - { id: sec-gen-digital-norton-status, name: "Gen Digital (Norton / Avast / AVG / Avira / CCleaner) norton status", host: status.norton.com, cat: infrastructure, provider: gen, cc: US, imp: 3, tier: 4, checks: [http] }
3376 + - { id: sec-gen-digital-norton-support, name: "Gen Digital (Norton / Avast / AVG / Avira / CCleaner) norton support", host: support.norton.com, cat: infrastructure, provider: gen, cc: US, imp: 3, tier: 4, checks: [http] }
3377 + - { id: sec-gen-digital-norton-my, name: "Gen Digital (Norton / Avast / AVG / Avira / CCleaner) norton my", host: my.norton.com, cat: infrastructure, provider: gen, cc: US, imp: 3, tier: 4, checks: [http] }
3378 + - { id: sec-gen-digital-norton-lifelock, name: "Gen Digital (Norton / Avast / AVG / Avira / CCleaner) norton lifelock", host: lifelock.norton.com, cat: infrastructure, provider: gen, cc: US, imp: 3, tier: 4, checks: [http] }
3379 + - { id: sec-gen-digital-norton-liveupdate, name: "Gen Digital (Norton / Avast / AVG / Avira / CCleaner) norton liveupdate", host: liveupdate.symantecliveupdate.com, url: "https://liveupdate.symantecliveupdate.com/", cat: infrastructure, provider: gen, cc: US, imp: 3, tier: 4, checks: [http] }
3380 + - { id: sec-gen-digital-avast, name: "Gen Digital (Norton / Avast / AVG / Avira / CCleaner) avast", host: www.avast.com, cat: infrastructure, provider: gen, cc: US, imp: 3, tier: 4, checks: [http] }
3381 + - { id: sec-gen-digital-avast-support, name: "Gen Digital (Norton / Avast / AVG / Avira / CCleaner) avast support", host: support.avast.com, cat: infrastructure, provider: gen, cc: US, imp: 3, tier: 4, checks: [http] }
3382 + - { id: sec-gen-digital-avast-blog, name: "Gen Digital (Norton / Avast / AVG / Avira / CCleaner) avast blog", host: blog.avast.com, cat: infrastructure, provider: gen, cc: US, imp: 3, tier: 4, checks: [http] }
3383 + - { id: sec-gen-digital-avast-decoded, name: "Gen Digital (Norton / Avast / AVG / Avira / CCleaner) avast decoded", host: decoded.avast.io, cat: infrastructure, provider: gen, cc: US, imp: 3, tier: 4, checks: [http] }
3384 + - { id: sec-gen-digital-avast-my, name: "Gen Digital (Norton / Avast / AVG / Avira / CCleaner) avast my", host: my.avast.com, cat: infrastructure, provider: gen, cc: US, imp: 3, tier: 4, checks: [http] }
3385 + - { id: sec-gen-digital-avg, name: "Gen Digital (Norton / Avast / AVG / Avira / CCleaner) avg", host: www.avg.com, cat: infrastructure, provider: gen, cc: US, imp: 3, tier: 4, checks: [http] }
3386 + - { id: sec-gen-digital-avg-support, name: "Gen Digital (Norton / Avast / AVG / Avira / CCleaner) avg support", host: support.avg.com, cat: infrastructure, provider: gen, cc: US, imp: 3, tier: 4, checks: [http] }
3387 + - { id: sec-gen-digital-avira, name: "Gen Digital (Norton / Avast / AVG / Avira / CCleaner) avira", host: www.avira.com, cat: infrastructure, provider: gen, cc: US, imp: 3, tier: 4, checks: [http] }
3388 + - { id: sec-gen-digital-avira-support, name: "Gen Digital (Norton / Avast / AVG / Avira / CCleaner) avira support", host: support.avira.com, cat: infrastructure, provider: gen, cc: US, imp: 3, tier: 4, checks: [http] }
3389 + - { id: sec-gen-digital-ccleaner, name: "Gen Digital (Norton / Avast / AVG / Avira / CCleaner) ccleaner", host: www.ccleaner.com, cat: infrastructure, provider: gen, cc: US, imp: 3, tier: 4, checks: [http] }
3390 + - { id: sec-gen-digital-reputationdefender, name: "Gen Digital (Norton / Avast / AVG / Avira / CCleaner) reputationdefender", host: www.reputationdefender.com, cat: infrastructure, provider: gen, cc: US, imp: 3, tier: 4, checks: [http] }
3391 + - { id: sec-mcafee-mcafee-service, name: "McAfee / Trellix / Skyhigh mcafee service", host: service.mcafee.com, cat: infrastructure, provider: mcafee, cc: US, imp: 3, tier: 4, checks: [http] }
3392 + - { id: sec-mcafee-mcafee-home, name: "McAfee / Trellix / Skyhigh mcafee home", host: home.mcafee.com, cat: infrastructure, provider: mcafee, cc: US, imp: 3, tier: 4, checks: [http] }
3393 + - { id: sec-mcafee-mcafee-update, name: "McAfee / Trellix / Skyhigh mcafee update", host: update.nai.com, url: "https://update.nai.com/", cat: infrastructure, provider: mcafee, cc: US, imp: 3, tier: 4, checks: [http] }
3394 + - { id: sec-mcafee-trellix, name: "McAfee / Trellix / Skyhigh trellix", host: www.trellix.com, cat: infrastructure, provider: mcafee, cc: US, imp: 3, tier: 4, checks: [http] }
3395 + - { id: sec-mcafee-trellix-docs, name: "McAfee / Trellix / Skyhigh trellix docs", host: docs.trellix.com, cat: infrastructure, provider: mcafee, cc: US, imp: 3, tier: 4, checks: [http] }
3396 + - { id: sec-mcafee-trellix-thrive, name: "McAfee / Trellix / Skyhigh trellix thrive", host: thrive.trellix.com, cat: infrastructure, provider: mcafee, cc: US, imp: 3, tier: 4, checks: [http] }
3397 + - { id: sec-mcafee-trellix-status, name: "McAfee / Trellix / Skyhigh trellix status", host: status.trellix.com, cat: infrastructure, provider: mcafee, cc: US, imp: 3, tier: 4, checks: [http] }
3398 + - { id: sec-mcafee-skyhigh, name: "McAfee / Trellix / Skyhigh skyhigh", host: www.skyhighsecurity.com, cat: infrastructure, provider: mcafee, cc: US, imp: 3, tier: 4, checks: [http] }
3399 + - { id: sec-mcafee-skyhigh-status, name: "McAfee / Trellix / Skyhigh skyhigh status", host: status.skyhighsecurity.com, cat: infrastructure, provider: mcafee, cc: US, imp: 3, tier: 4, checks: [http] }
3400 + - { id: sec-paloalto-hosts-unit42, name: "Palo Alto Networks hosts unit42", host: unit42.paloaltonetworks.com, cat: infrastructure, provider: paloalto, svc: paloalto, cc: US, imp: 4, tier: 3, checks: [http] }
3401 + - { id: sec-paloalto-hosts-docs, name: "Palo Alto Networks hosts docs", host: docs.paloaltonetworks.com, cat: infrastructure, provider: paloalto, svc: paloalto, cc: US, imp: 4, tier: 3, checks: [http] }
3402 + - { id: sec-paloalto-hosts-support, name: "Palo Alto Networks hosts support", host: support.paloaltonetworks.com, cat: infrastructure, provider: paloalto, svc: paloalto, cc: US, imp: 4, tier: 3, checks: [http] }
3403 + - { id: sec-paloalto-hosts-live, name: "Palo Alto Networks hosts live", host: live.paloaltonetworks.com, cat: infrastructure, provider: paloalto, svc: paloalto, cc: US, imp: 4, tier: 3, checks: [http] }
3404 + - { id: sec-paloalto-hosts-security, name: "Palo Alto Networks hosts security", host: security.paloaltonetworks.com, url: "https://security.paloaltonetworks.com/rss.xml", cat: infrastructure, provider: paloalto, svc: paloalto, cc: US, imp: 4, tier: 3, checks: [http, dns] }
3405 + - { id: sec-paloalto-hosts-cortex, name: "Palo Alto Networks hosts cortex", host: www.paloaltonetworks.com, url: "https://www.paloaltonetworks.com/cortex", cat: infrastructure, provider: paloalto, svc: paloalto, cc: US, imp: 4, tier: 3, checks: [http, dns] }
3406 + - { id: sec-paloalto-hosts-apps, name: "Palo Alto Networks hosts apps", host: apps.paloaltonetworks.com, cat: infrastructure, provider: paloalto, svc: paloalto, cc: US, imp: 4, tier: 3, checks: [http] }
3407 + - { id: sec-paloalto-hosts-knowledge, name: "Palo Alto Networks hosts knowledge", host: knowledgebase.paloaltonetworks.com, cat: infrastructure, provider: paloalto, svc: paloalto, cc: US, imp: 4, tier: 3, checks: [http] }
3408 + - { id: sec-paloalto-hosts-beacon, name: "Palo Alto Networks hosts beacon", host: beacon.paloaltonetworks.com, cat: infrastructure, provider: paloalto, svc: paloalto, cc: US, imp: 4, tier: 3, checks: [http] }
3409 + - { id: sec-zscaler-hosts-help, name: "Zscaler hosts help centre", host: help.zscaler.com, cat: infrastructure, provider: zscaler, cc: US, imp: 3, tier: 4, checks: [http] }
3410 + - { id: sec-zscaler-hosts-community, name: "Zscaler hosts community", host: community.zscaler.com, cat: infrastructure, provider: zscaler, cc: US, imp: 3, tier: 4, checks: [http] }
3411 + - { id: sec-zscaler-hosts-ip, name: "Zscaler hosts ip", host: ip.zscaler.com, cat: infrastructure, provider: zscaler, cc: US, imp: 3, tier: 4, checks: [http] }
3412 + - { id: sec-zscaler-hosts-config, name: "Zscaler hosts config", host: config.zscaler.com, url: "https://config.zscaler.com/api/zscaler.net/cenr/json", cat: infrastructure, provider: zscaler, cc: US, imp: 3, tier: 4, checks: [http] }
3413 + - { id: sec-zscaler-hosts-threatlabz, name: "Zscaler hosts threatlabz", host: www.zscaler.com, url: "https://www.zscaler.com/blogs/security-research", cat: infrastructure, provider: zscaler, cc: US, imp: 3, tier: 4, checks: [http] }
3414 + - { id: sec-zscaler-hosts-partner, name: "Zscaler hosts partner", host: partner.zscaler.com, cat: infrastructure, provider: zscaler, cc: US, imp: 3, tier: 4, checks: [http] }
3415 + - { id: sec-netskope-netskope-docs, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate netskope docs", host: docs.netskope.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3416 + - { id: sec-netskope-netskope-community, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate netskope community", host: community.netskope.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3417 + - { id: sec-netskope-netskope-addon, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate netskope addon", host: addon.goskope.com, url: "https://addon.goskope.com/", cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3418 + - { id: sec-netskope-cato-status, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate cato status", host: status.catonetworks.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3419 + - { id: sec-netskope-cato-support, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate cato support", host: support.catonetworks.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3420 + - { id: sec-netskope-cato-cc, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate cato cc", host: cc.catonetworks.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3421 + - { id: sec-netskope-cloudflare-access, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate cloudflare access", host: cloudflareaccess.com, url: "https://cloudflareaccess.com/", cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3422 + - { id: sec-netskope-cloudflare-warp, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate cloudflare warp", host: one.one.one.one, url: "https://one.one.one.one/", cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3423 + - { id: sec-netskope-twingate-status, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate twingate status", host: status.twingate.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3424 + - { id: sec-netskope-twingate-docs, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate twingate docs", host: docs.twingate.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3425 + - { id: sec-netskope-perimeter81-status, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate perimeter81 status", host: status.perimeter81.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3426 + - { id: sec-netskope-banyan, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate banyan", host: www.banyansecurity.io, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3427 + - { id: sec-netskope-appgate, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate appgate", host: www.appgate.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3428 + - { id: sec-netskope-jamf-status, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate jamf status", host: status.jamf.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3429 + - { id: sec-netskope-jamf, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate jamf", host: www.jamf.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3430 + - { id: sec-netskope-jamf-docs, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate jamf docs", host: learn.jamf.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3431 + - { id: sec-netskope-jamf-community, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate jamf community", host: community.jamf.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3432 + - { id: sec-netskope-kandji, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate kandji", host: www.kandji.io, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3433 + - { id: sec-netskope-kandji-status, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate kandji status", host: status.kandji.io, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3434 + - { id: sec-netskope-mosyle, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate mosyle", host: mosyle.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3435 + - { id: sec-netskope-addigy, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate addigy", host: addigy.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3436 + - { id: sec-netskope-addigy-status, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate addigy status", host: status.addigy.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3437 + - { id: sec-netskope-fleetdm, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate fleetdm", host: fleetdm.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3438 + - { id: sec-netskope-hexnode, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate hexnode", host: www.hexnode.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3439 + - { id: sec-netskope-hexnode-status, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate hexnode status", host: status.hexnode.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3440 + - { id: sec-netskope-intune-portal, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate intune portal", host: intune.microsoft.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3441 + - { id: sec-netskope-endpoint-manager, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate endpoint manager", host: endpoint.microsoft.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3442 + - { id: sec-netskope-vmware-ws1, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate vmware ws1", host: www.omnissa.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3443 + - { id: sec-netskope-omnissa-status, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate omnissa status", host: status.workspaceone.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3444 + - { id: sec-netskope-omnissa-docs, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate omnissa docs", host: docs.omnissa.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3445 + - { id: sec-netskope-manageengine, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate manageengine", host: www.manageengine.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3446 + - { id: sec-netskope-manageengine-status, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate manageengine status", host: status.manageengine.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3447 + - { id: sec-netskope-scalefusion, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate scalefusion", host: scalefusion.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3448 + - { id: sec-netskope-miradore, name: "Netskope / Cato / Cloudflare One / Perimeter 81 / Twingate miradore", host: www.miradore.com, cat: infrastructure, provider: netskope, cc: US, imp: 3, tier: 4, checks: [http] }
3449 + - { id: sec-rapid7, name: "Rapid7", host: www.rapid7.com, cat: infrastructure, provider: rapid7, cc: US, imp: 3, tier: 4, checks: [http] }
3450 + - { id: sec-rapid7-status, name: "Rapid7 status page", host: status.rapid7.com, cat: infrastructure, provider: rapid7, cc: US, imp: 3, tier: 4, checks: [http] }
3451 + - { id: sec-rapid7-docs, name: "Rapid7 docs", host: docs.rapid7.com, cat: infrastructure, provider: rapid7, cc: US, imp: 3, tier: 4, checks: [http] }
3452 + - { id: sec-rapid7-insight, name: "Rapid7 insight", host: insight.rapid7.com, cat: infrastructure, provider: rapid7, cc: US, imp: 3, tier: 4, checks: [http] }
3453 + - { id: sec-rapid7-us, name: "Rapid7 us", host: us.api.insight.rapid7.com, url: "https://us.api.insight.rapid7.com/", cat: infrastructure, provider: rapid7, cc: US, imp: 3, tier: 4, checks: [http] }
3454 + - { id: sec-rapid7-eu, name: "Rapid7 eu", host: eu.api.insight.rapid7.com, url: "https://eu.api.insight.rapid7.com/", cat: infrastructure, provider: rapid7, cc: US, imp: 3, tier: 4, checks: [http] }
3455 + - { id: sec-rapid7-attackerkb, name: "Rapid7 attackerkb", host: attackerkb.com, cat: infrastructure, provider: rapid7, cc: US, imp: 3, tier: 4, checks: [http] }
3456 + - { id: sec-rapid7-metasploit, name: "Rapid7 metasploit", host: www.metasploit.com, cat: infrastructure, provider: rapid7, cc: US, imp: 3, tier: 4, checks: [http] }
3457 + - { id: sec-rapid7-metasploit-docs, name: "Rapid7 metasploit docs", host: docs.metasploit.com, cat: infrastructure, provider: rapid7, cc: US, imp: 3, tier: 4, checks: [http] }
3458 + - { id: sec-rapid7-discuss, name: "Rapid7 discussion forum", host: discuss.rapid7.com, cat: infrastructure, provider: rapid7, cc: US, imp: 3, tier: 4, checks: [http] }
3459 + - { id: sec-rapid7-opendata, name: "Rapid7 opendata", host: opendata.rapid7.com, cat: infrastructure, provider: rapid7, cc: US, imp: 3, tier: 4, checks: [http] }
3460 + - { id: sec-rapid7-velociraptor, name: "Rapid7 velociraptor", host: docs.velociraptor.app, cat: infrastructure, provider: rapid7, cc: US, imp: 3, tier: 4, checks: [http] }
3461 + - { id: sec-tenable, name: "Tenable", host: www.tenable.com, cat: infrastructure, provider: tenable, svc: tenable, cc: US, imp: 3, tier: 4, checks: [http] }
3462 + - { id: sec-tenable-status, name: "Tenable status page", host: status.tenable.com, cat: infrastructure, provider: tenable, svc: tenable, cc: US, imp: 3, tier: 4, checks: [http] }
3463 + - { id: sec-tenable-docs, name: "Tenable docs", host: docs.tenable.com, cat: infrastructure, provider: tenable, svc: tenable, cc: US, imp: 3, tier: 4, checks: [http] }
3464 + - { id: sec-tenable-community, name: "Tenable community", host: community.tenable.com, cat: infrastructure, provider: tenable, svc: tenable, cc: US, imp: 3, tier: 4, checks: [http] }
3465 + - { id: sec-tenable-cloud, name: "Tenable cloud", host: cloud.tenable.com, url: "https://cloud.tenable.com/", cat: infrastructure, provider: tenable, svc: tenable, cc: US, imp: 3, tier: 4, checks: [http] }
3466 + - { id: sec-tenable-plugins-nessus, name: "Tenable plugins nessus", host: plugins.nessus.org, url: "https://plugins.nessus.org/v2/plugins.php", cat: infrastructure, provider: tenable, svc: tenable, cc: US, imp: 3, tier: 4, checks: [http] }
3467 + - { id: sec-tenable-developer, name: "Tenable developer portal", host: developer.tenable.com, cat: infrastructure, provider: tenable, svc: tenable, cc: US, imp: 3, tier: 4, checks: [http] }
3468 + - { id: sec-tenable-sensor, name: "Tenable sensor", host: sensor.cloud.tenable.com, url: "https://sensor.cloud.tenable.com/", cat: infrastructure, provider: tenable, svc: tenable, cc: US, imp: 3, tier: 4, checks: [http] }
3469 + - { id: sec-qualys, name: "Qualys", host: www.qualys.com, cat: infrastructure, provider: qualys, svc: qualys, cc: US, imp: 3, tier: 4, checks: [http] }
3470 + - { id: sec-qualys-status, name: "Qualys status page", host: status.qualys.com, cat: infrastructure, provider: qualys, svc: qualys, cc: US, imp: 3, tier: 4, checks: [http] }
3471 + - { id: sec-qualys-docs, name: "Qualys docs", host: docs.qualys.com, cat: infrastructure, provider: qualys, svc: qualys, cc: US, imp: 3, tier: 4, checks: [http] }
3472 + - { id: sec-qualys-community, name: "Qualys community", host: community.qualys.com, cat: infrastructure, provider: qualys, svc: qualys, cc: US, imp: 3, tier: 4, checks: [http] }
3473 + - { id: sec-qualys-success, name: "Qualys success", host: success.qualys.com, cat: infrastructure, provider: qualys, svc: qualys, cc: US, imp: 3, tier: 4, checks: [http] }
3474 + - { id: sec-qualys-blog, name: "Qualys blog", host: blog.qualys.com, cat: infrastructure, provider: qualys, svc: qualys, cc: US, imp: 3, tier: 4, checks: [http] }
3475 + - { id: sec-qualys-threatprotect, name: "Qualys threatprotect", host: threatprotect.qualys.com, cat: infrastructure, provider: qualys, svc: qualys, cc: US, imp: 3, tier: 4, checks: [http] }
3476 + - { id: sec-qualys-qualysguard, name: "Qualys qualysguard", host: qualysguard.qualys.com, url: "https://qualysguard.qualys.com/", cat: infrastructure, provider: qualys, svc: qualys, cc: US, imp: 3, tier: 4, checks: [http] }
3477 + - { id: sec-qualys-qualysapi, name: "Qualys qualysapi", host: qualysapi.qualys.com, url: "https://qualysapi.qualys.com/msp/about.php", cat: infrastructure, provider: qualys, svc: qualys, cc: US, imp: 3, tier: 4, checks: [http] }
3478 + - { id: sec-qualys-ssllabs-api, name: "Qualys ssllabs api", host: api.ssllabs.com, url: "https://api.ssllabs.com/api/v3/info", cat: infrastructure, provider: qualys, svc: qualys, cc: US, imp: 3, tier: 4, checks: [http] }
3479 + - { id: sec-qualys-browsercheck, name: "Qualys browsercheck", host: browsercheck.qualys.com, cat: infrastructure, provider: qualys, svc: qualys, cc: US, imp: 3, tier: 4, checks: [http] }
3480 + - { id: sec-wiz, name: "Wiz", host: www.wiz.io, cat: infrastructure, provider: wiz, svc: wiz, cc: US, imp: 3, tier: 4, checks: [http] }
3481 + - { id: sec-wiz-status, name: "Wiz status page", host: status.wiz.io, cat: infrastructure, provider: wiz, svc: wiz, cc: US, imp: 3, tier: 4, checks: [http] }
3482 + - { id: sec-wiz-docs, name: "Wiz docs", host: docs.wiz.io, cat: infrastructure, provider: wiz, svc: wiz, cc: US, imp: 3, tier: 4, checks: [http] }
3483 + - { id: sec-wiz-cloudvulndb, name: "Wiz cloudvulndb", host: www.cloudvulndb.org, cat: infrastructure, provider: wiz, svc: wiz, cc: US, imp: 3, tier: 4, checks: [http] }
3484 + - { id: sec-wiz-threats, name: "Wiz threats", host: threats.wiz.io, cat: infrastructure, provider: wiz, svc: wiz, cc: US, imp: 3, tier: 4, checks: [http] }
3485 + - { id: sec-orca-orca, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet orca", host: orca.security, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3486 + - { id: sec-orca-orca-docs, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet orca docs", host: docs.orcasecurity.io, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3487 + - { id: sec-orca-lacework-status, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet lacework status", host: status.lacework.net, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3488 + - { id: sec-orca-lacework-fortinet, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet lacework fortinet", host: www.fortinet.com, url: "https://www.fortinet.com/products/lacework-forticnapp", cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3489 + - { id: sec-orca-sysdig, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet sysdig", host: sysdig.com, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3490 + - { id: sec-orca-sysdig-docs, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet sysdig docs", host: docs.sysdig.com, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3491 + - { id: sec-orca-sysdig-secure, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet sysdig secure", host: secure.sysdig.com, url: "https://secure.sysdig.com/", cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3492 + - { id: sec-orca-sysdig-download, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet sysdig download", host: download.sysdig.com, url: "https://download.sysdig.com/", cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3493 + - { id: sec-orca-aqua-status, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet aqua status", host: status.aquasec.com, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3494 + - { id: sec-orca-aqua-docs, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet aqua docs", host: docs.aquasec.com, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3495 + - { id: sec-orca-aqua-cloud, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet aqua cloud", host: cloud.aquasec.com, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3496 + - { id: sec-orca-upwind, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet upwind", host: www.upwind.io, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3497 + - { id: sec-orca-upwind-status, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet upwind status", host: status.upwind.io, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3498 + - { id: sec-orca-sweet, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet sweet", host: www.sweet.security, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3499 + - { id: sec-orca-armo, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet armo", host: www.armosec.io, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3500 + - { id: sec-orca-kubescape, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet kubescape", host: kubescape.io, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3501 + - { id: sec-orca-ermetic, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet ermetic", host: ermetic.com, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3502 + - { id: sec-orca-uptycs, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet uptycs", host: www.uptycs.com, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3503 + - { id: sec-orca-cyscale, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet cyscale", host: cyscale.com, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3504 + - { id: sec-orca-sonrai, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet sonrai", host: sonraisecurity.com, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3505 + - { id: sec-orca-cloudsploit, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet cloudsploit", host: cloudsploit.com, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3506 + - { id: sec-orca-prowler, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet prowler", host: prowler.com, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3507 + - { id: sec-orca-prowler-cloud, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet prowler cloud", host: cloud.prowler.com, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3508 + - { id: sec-orca-steampipe, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet steampipe", host: steampipe.io, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3509 + - { id: sec-orca-steampipe-hub, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet steampipe hub", host: hub.steampipe.io, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3510 + - { id: sec-orca-powerpipe, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet powerpipe", host: powerpipe.io, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3511 + - { id: sec-orca-cloud-custodian, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet cloud custodian", host: cloudcustodian.io, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3512 + - { id: sec-orca-checkov, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet checkov", host: www.checkov.io, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3513 + - { id: sec-orca-bridgecrew, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet bridgecrew", host: www.bridgecrew.cloud, url: "https://www.bridgecrew.cloud/", cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3514 + - { id: sec-orca-kics, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet kics", host: kics.io, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3515 + - { id: sec-orca-kics-docs, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet kics docs", host: docs.kics.io, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3516 + - { id: sec-orca-tfsec, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet tfsec", host: aquasecurity.github.io, url: "https://aquasecurity.github.io/tfsec/", cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3517 + - { id: sec-orca-terrascan, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet terrascan", host: runterrascan.io, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3518 + - { id: sec-orca-opa, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet opa", host: www.openpolicyagent.org, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3519 + - { id: sec-orca-opa-play, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet opa play", host: play.openpolicyagent.org, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3520 + - { id: sec-orca-kyverno, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet kyverno", host: kyverno.io, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3521 + - { id: sec-orca-gatekeeper, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet gatekeeper", host: open-policy-agent.github.io, url: "https://open-policy-agent.github.io/gatekeeper/website/", cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3522 + - { id: sec-orca-tetragon, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet tetragon", host: tetragon.io, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3523 + - { id: sec-orca-popeye, name: "Orca / Lacework / Sysdig / Aqua / Upwind / Sweet popeye", host: popeyecli.io, cat: infrastructure, provider: orca, cc: US, imp: 2, tier: 4, checks: [http] }
3524 + - { id: sec-veracode-veracode, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti veracode", host: www.veracode.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3525 + - { id: sec-veracode-veracode-status, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti veracode status", host: status.veracode.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3526 + - { id: sec-veracode-veracode-docs, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti veracode docs", host: docs.veracode.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3527 + - { id: sec-veracode-veracode-community, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti veracode community", host: community.veracode.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3528 + - { id: sec-veracode-veracode-api, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti veracode api", host: api.veracode.com, url: "https://api.veracode.com/", cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3529 + - { id: sec-veracode-veracode-analysiscenter, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti veracode analysiscenter", host: analysiscenter.veracode.com, url: "https://analysiscenter.veracode.com/", cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3530 + - { id: sec-veracode-veracode-eu, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti veracode eu", host: api.veracode.eu, url: "https://api.veracode.eu/", cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3531 + - { id: sec-veracode-checkmarx, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti checkmarx", host: checkmarx.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3532 + - { id: sec-veracode-checkmarx-docs, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti checkmarx docs", host: docs.checkmarx.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3533 + - { id: sec-veracode-checkmarx-ast, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti checkmarx ast", host: ast.checkmarx.net, url: "https://ast.checkmarx.net/", cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3534 + - { id: sec-veracode-checkmarx-eu, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti checkmarx eu", host: eu.ast.checkmarx.net, url: "https://eu.ast.checkmarx.net/", cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3535 + - { id: sec-veracode-checkmarx-us, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti checkmarx us", host: us.ast.checkmarx.net, url: "https://us.ast.checkmarx.net/", cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3536 + - { id: sec-veracode-fortify, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti fortify", host: www.opentext.com, url: "https://www.opentext.com/products/fortify-on-demand", cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3537 + - { id: sec-veracode-fortify-ondemand, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti fortify ondemand", host: ams.fortify.com, url: "https://ams.fortify.com/", cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3538 + - { id: sec-veracode-fortify-emea, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti fortify emea", host: emea.fortify.com, url: "https://emea.fortify.com/", cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3539 + - { id: sec-veracode-fortify-docs, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti fortify docs", host: www.microfocus.com, url: "https://www.microfocus.com/documentation/fortify-software-security-center/", cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3540 + - { id: sec-veracode-contrast, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti contrast", host: www.contrastsecurity.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3541 + - { id: sec-veracode-contrast-status, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti contrast status", host: status.contrastsecurity.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3542 + - { id: sec-veracode-contrast-docs, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti contrast docs", host: docs.contrastsecurity.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3543 + - { id: sec-veracode-contrast-app, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti contrast app", host: app.contrastsecurity.com, url: "https://app.contrastsecurity.com/Contrast/api/ng/global/properties", cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3544 + - { id: sec-veracode-invicti, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti invicti", host: www.invicti.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3545 + - { id: sec-veracode-invicti-status, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti invicti status", host: status.invicti.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3546 + - { id: sec-veracode-acunetix, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti acunetix", host: www.acunetix.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3547 + - { id: sec-veracode-netsparker, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti netsparker", host: www.netsparker.com, url: "https://www.netsparker.com/", cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3548 + - { id: sec-veracode-burp, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti burp", host: portswigger.net, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3549 + - { id: sec-veracode-zap, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti zap", host: www.zaproxy.org, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3550 + - { id: sec-veracode-nuclei, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti nuclei", host: projectdiscovery.io, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3551 + - { id: sec-veracode-nuclei-cloud, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti nuclei cloud", host: cloud.projectdiscovery.io, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3552 + - { id: sec-veracode-nuclei-docs, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti nuclei docs", host: docs.projectdiscovery.io, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3553 + - { id: sec-veracode-projectdiscovery-status, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti projectdiscovery status", host: status.projectdiscovery.io, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3554 + - { id: sec-veracode-escape, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti escape", host: escape.tech, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3555 + - { id: sec-veracode-escape-status, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti escape status", host: status.escape.tech, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3556 + - { id: sec-veracode-apisec, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti apisec", host: www.apisec.ai, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3557 + - { id: sec-veracode-salt, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti salt", host: salt.security, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3558 + - { id: sec-veracode-noname, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti noname", host: nonamesecurity.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3559 + - { id: sec-veracode-akamai-api-sec, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti akamai api sec", host: www.akamai.com, url: "https://www.akamai.com/products/api-security", cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3560 + - { id: sec-veracode-traceable, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti traceable", host: www.traceable.ai, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3561 + - { id: sec-veracode-traceable-status, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti traceable status", host: status.traceable.ai, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3562 + - { id: sec-veracode-42crunch, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti 42crunch", host: 42crunch.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3563 + - { id: sec-veracode-42crunch-platform, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti 42crunch platform", host: platform.42crunch.com, url: "https://platform.42crunch.com/", cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3564 + - { id: sec-veracode-42crunch-status, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti 42crunch status", host: status.42crunch.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3565 + - { id: sec-veracode-wallarm, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti wallarm", host: www.wallarm.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3566 + - { id: sec-veracode-wallarm-status, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti wallarm status", host: status.wallarm.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3567 + - { id: sec-veracode-wallarm-docs, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti wallarm docs", host: docs.wallarm.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3568 + - { id: sec-veracode-imperva-status, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti imperva status", host: status.imperva.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3569 + - { id: sec-veracode-imperva-docs, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti imperva docs", host: docs.imperva.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3570 + - { id: sec-veracode-imperva-www, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti imperva www", host: www.imperva.com, url: "https://www.imperva.com/products/", cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3571 + - { id: sec-veracode-f5-docs, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti f5 docs", host: techdocs.f5.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3572 + - { id: sec-veracode-f5-my, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti f5 my", host: my.f5.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3573 + - { id: sec-veracode-f5-support, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti f5 support", host: support.f5.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3574 + - { id: sec-veracode-f5-downloads, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti f5 downloads", host: downloads.f5.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3575 + - { id: sec-veracode-f5-nginx, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti f5 nginx", host: www.nginx.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3576 + - { id: sec-veracode-f5-nginx-org, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti f5 nginx org", host: nginx.org, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3577 + - { id: sec-veracode-f5-nginx-docs, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti f5 nginx docs", host: docs.nginx.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3578 + - { id: sec-veracode-signalsciences-dashboard, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti signalsciences dashboard", host: dashboard.signalsciences.net, url: "https://dashboard.signalsciences.net/api/v0/", cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3579 + - { id: sec-veracode-radware, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti radware", host: www.radware.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3580 + - { id: sec-veracode-radware-cloud, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti radware cloud", host: portals.radware.com, url: "https://portals.radware.com/", cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3581 + - { id: sec-veracode-radware-live, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti radware live", host: livethreatmap.radware.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3582 + - { id: sec-veracode-netscout, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti netscout", host: www.netscout.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3583 + - { id: sec-veracode-netscout-horizon, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti netscout horizon", host: horizon.netscout.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3584 + - { id: sec-veracode-a10-threat, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti a10 threat", host: threats.a10networks.com, url: "https://threats.a10networks.com/", cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3585 + - { id: sec-veracode-corero, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti corero", host: www.corero.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3586 + - { id: sec-veracode-link11, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti link11", host: www.link11.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3587 + - { id: sec-veracode-link11-status, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti link11 status", host: status.link11.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3588 + - { id: sec-veracode-path, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti path", host: path.net, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3589 + - { id: sec-veracode-path-status, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti path status", host: status.path.net, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3590 + - { id: sec-veracode-gcore-status, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti gcore status", host: status.gcore.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3591 + - { id: sec-veracode-gcore-www, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti gcore www", host: gcore.com, url: "https://gcore.com/ddos-protection", cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3592 + - { id: sec-veracode-ddos-guard, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti ddos guard", host: ddos-guard.net, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3593 + - { id: sec-veracode-qrator-www, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti qrator www", host: qrator.net, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3594 + - { id: sec-veracode-stormwall, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti stormwall", host: stormwall.network, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3595 + - { id: sec-veracode-myra, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti myra", host: www.myrasecurity.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3596 + - { id: sec-veracode-myra-status, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti myra status", host: status.myrasecurity.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3597 + - { id: sec-veracode-nexusguard, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti nexusguard", host: www.nexusguard.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3598 + - { id: sec-veracode-sucuri-status, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti sucuri status", host: status.sucuri.net, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3599 + - { id: sec-veracode-sucuri-sitecheck, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti sucuri sitecheck", host: sitecheck.sucuri.net, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3600 + - { id: sec-veracode-sucuri-labs, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti sucuri labs", host: labs.sucuri.net, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3601 + - { id: sec-veracode-sucuri-blog, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti sucuri blog", host: blog.sucuri.net, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3602 + - { id: sec-veracode-wordfence, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti wordfence", host: www.wordfence.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3603 + - { id: sec-veracode-patchstack, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti patchstack", host: patchstack.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3604 + - { id: sec-veracode-wpscan, name: "Veracode / Checkmarx / Fortify / Contrast / Invicti wpscan", host: wpscan.com, cat: developer, provider: veracode, svc: veracode, cc: US, imp: 2, tier: 4, checks: [http] }
3605 + - { id: sec-hackerone-hackerone, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack hackerone", host: www.hackerone.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3606 + - { id: sec-hackerone-hackerone-api, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack hackerone api", host: api.hackerone.com, url: "https://api.hackerone.com/v1/hackers/hacktivity", cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3607 + - { id: sec-hackerone-hackerone-docs, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack hackerone docs", host: docs.hackerone.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3608 + - { id: sec-hackerone-hackerone-hacktivity, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack hackerone hacktivity", host: hackerone.com, url: "https://hackerone.com/hacktivity", cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3609 + - { id: sec-hackerone-hackerone-cdn, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack hackerone cdn", host: profile-photos.hackerone-user-content.com, url: "https://profile-photos.hackerone-user-content.com/", cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3610 + - { id: sec-hackerone-bugcrowd, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack bugcrowd", host: www.bugcrowd.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3611 + - { id: sec-hackerone-bugcrowd-docs, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack bugcrowd docs", host: docs.bugcrowd.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3612 + - { id: sec-hackerone-bugcrowd-programs, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack bugcrowd programs", host: bugcrowd.com, url: "https://bugcrowd.com/programs", cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3613 + - { id: sec-hackerone-bugcrowd-api, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack bugcrowd api", host: api.bugcrowd.com, url: "https://api.bugcrowd.com/", cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3614 + - { id: sec-hackerone-bugcrowd-tracker, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack bugcrowd tracker", host: tracker.bugcrowd.com, url: "https://tracker.bugcrowd.com/", cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3615 + - { id: sec-hackerone-intigriti, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack intigriti", host: www.intigriti.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3616 + - { id: sec-hackerone-intigriti-status, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack intigriti status", host: status.intigriti.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3617 + - { id: sec-hackerone-intigriti-app, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack intigriti app", host: app.intigriti.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3618 + - { id: sec-hackerone-intigriti-api, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack intigriti api", host: api.intigriti.com, url: "https://api.intigriti.com/", cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3619 + - { id: sec-hackerone-intigriti-kb, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack intigriti kb", host: kb.intigriti.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3620 + - { id: sec-hackerone-intigriti-blog, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack intigriti blog", host: blog.intigriti.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3621 + - { id: sec-hackerone-yeswehack, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack yeswehack", host: www.yeswehack.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3622 + - { id: sec-hackerone-yeswehack-app, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack yeswehack app", host: yeswehack.com, url: "https://yeswehack.com/programs", cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3623 + - { id: sec-hackerone-yeswehack-api, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack yeswehack api", host: api.yeswehack.com, url: "https://api.yeswehack.com/", cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3624 + - { id: sec-hackerone-yeswehack-dojo, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack yeswehack dojo", host: dojo-yeswehack.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3625 + - { id: sec-hackerone-yeswehack-blog, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack yeswehack blog", host: blog.yeswehack.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3626 + - { id: sec-hackerone-synack, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack synack", host: www.synack.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3627 + - { id: sec-hackerone-synack-platform, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack synack platform", host: platform.synack.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3628 + - { id: sec-hackerone-cobalt, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack cobalt", host: www.cobalt.io, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3629 + - { id: sec-hackerone-cobalt-status, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack cobalt status", host: status.cobalt.io, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3630 + - { id: sec-hackerone-cobalt-app, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack cobalt app", host: app.cobalt.io, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3631 + - { id: sec-hackerone-cobalt-api, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack cobalt api", host: api.cobalt.io, url: "https://api.cobalt.io/", cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3632 + - { id: sec-hackerone-cobalt-docs, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack cobalt docs", host: docs.cobalt.io, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3633 + - { id: sec-hackerone-hackenproof, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack hackenproof", host: hackenproof.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3634 + - { id: sec-hackerone-immunefi, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack immunefi", host: immunefi.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3635 + - { id: sec-hackerone-code4rena, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack code4rena", host: code4rena.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3636 + - { id: sec-hackerone-sherlock, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack sherlock", host: www.sherlock.xyz, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3637 + - { id: sec-hackerone-sherlock-audits, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack sherlock audits", host: audits.sherlock.xyz, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3638 + - { id: sec-hackerone-cantina, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack cantina", host: cantina.xyz, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3639 + - { id: sec-hackerone-hats, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack hats", host: hats.finance, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3640 + - { id: sec-hackerone-openbugbounty, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack openbugbounty", host: www.openbugbounty.org, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3641 + - { id: sec-hackerone-federacy, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack federacy", host: www.federacy.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3642 + - { id: sec-hackerone-zerocopter, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack zerocopter", host: www.zerocopter.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3643 + - { id: sec-hackerone-bugbase, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack bugbase", host: bugbase.ai, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3644 + - { id: sec-hackerone-huntr, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack huntr", host: huntr.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3645 + - { id: sec-hackerone-disclose, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack disclose", host: disclose.io, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3646 + - { id: sec-hackerone-securitytxt, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack securitytxt", host: securitytxt.org, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3647 + - { id: sec-hackerone-hacker101, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack hacker101", host: www.hacker101.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3648 + - { id: sec-hackerone-hackthebox, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack hackthebox", host: www.hackthebox.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3649 + - { id: sec-hackerone-hackthebox-status, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack hackthebox status", host: status.hackthebox.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3650 + - { id: sec-hackerone-hackthebox-app, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack hackthebox app", host: app.hackthebox.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3651 + - { id: sec-hackerone-hackthebox-academy, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack hackthebox academy", host: academy.hackthebox.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3652 + - { id: sec-hackerone-hackthebox-ctf, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack hackthebox ctf", host: ctf.hackthebox.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3653 + - { id: sec-hackerone-tryhackme, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack tryhackme", host: tryhackme.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3654 + - { id: sec-hackerone-tryhackme-status, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack tryhackme status", host: status.tryhackme.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3655 + - { id: sec-hackerone-pentesterlab, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack pentesterlab", host: pentesterlab.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3656 + - { id: sec-hackerone-overthewire, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack overthewire", host: overthewire.org, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3657 + - { id: sec-hackerone-picoctf, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack picoctf", host: picoctf.org, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3658 + - { id: sec-hackerone-picoctf-play, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack picoctf play", host: play.picoctf.org, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3659 + - { id: sec-hackerone-ctftime, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack ctftime", host: ctftime.org, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3660 + - { id: sec-hackerone-root-me, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack root me", host: www.root-me.org, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3661 + - { id: sec-hackerone-vulnhub, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack vulnhub", host: www.vulnhub.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3662 + - { id: sec-hackerone-hackthissite, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack hackthissite", host: www.hackthissite.org, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3663 + - { id: sec-hackerone-offsec, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack offsec", host: www.offsec.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3664 + - { id: sec-hackerone-offsec-portal, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack offsec portal", host: portal.offsec.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3665 + - { id: sec-hackerone-offsec-status, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack offsec status", host: status.offsec.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3666 + - { id: sec-hackerone-kali-http, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack kali http", host: http.kali.org, url: "https://http.kali.org/README", cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3667 + - { id: sec-hackerone-kali-cdimage, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack kali cdimage", host: cdimage.kali.org, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3668 + - { id: sec-hackerone-parrot, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack parrot", host: www.parrotsec.org, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3669 + - { id: sec-hackerone-parrot-deb, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack parrot deb", host: deb.parrot.sh, url: "https://deb.parrot.sh/parrot/dists/lory/Release", cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3670 + - { id: sec-hackerone-blackarch, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack blackarch", host: blackarch.org, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3671 + - { id: sec-hackerone-exploit-db, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack exploit db", host: www.exploit-db.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3672 + - { id: sec-hackerone-packetstorm, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack packetstorm", host: packetstormsecurity.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3673 + - { id: sec-hackerone-sploitus, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack sploitus", host: sploitus.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3674 + - { id: sec-hackerone-vulners, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack vulners", host: vulners.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3675 + - { id: sec-hackerone-vuldb, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack vuldb", host: vuldb.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3676 + - { id: sec-hackerone-0day-today, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack 0day today", host: 0day.today, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3677 + - { id: sec-hackerone-cxsecurity, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack cxsecurity", host: cxsecurity.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3678 + - { id: sec-hackerone-seebug, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack seebug", host: www.seebug.org, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3679 + - { id: sec-hackerone-zoomeye-api, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack zoomeye api", host: api.zoomeye.org, url: "https://api.zoomeye.org/", cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3680 + - { id: sec-hackerone-fofa, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack fofa", host: en.fofa.info, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3681 + - { id: sec-hackerone-fofa-api, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack fofa api", host: fofa.info, url: "https://fofa.info/api/v1/info/my", cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3682 + - { id: sec-hackerone-quake, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack quake", host: quake.360.net, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3683 + - { id: sec-hackerone-hunter-qianxin, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack hunter qianxin", host: hunter.qianxin.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3684 + - { id: sec-hackerone-threatbook, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack threatbook", host: threatbook.io, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3685 + - { id: sec-hackerone-threatbook-api, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack threatbook api", host: api.threatbook.io, url: "https://api.threatbook.io/v1/ti/ip/basic", cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3686 + - { id: sec-hackerone-360-netlab, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack 360 netlab", host: blog.netlab.360.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3687 + - { id: sec-hackerone-360-ti, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack 360 ti", host: ti.360.net, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3688 + - { id: sec-hackerone-qianxin, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack qianxin", host: ti.qianxin.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3689 + - { id: sec-hackerone-nsfocus, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack nsfocus", host: nti.nsfocus.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3690 + - { id: sec-hackerone-venustech, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack venustech", host: www.venustech.com.cn, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3691 + - { id: sec-hackerone-sangfor, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack sangfor", host: www.sangfor.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3692 + - { id: sec-hackerone-hillstone, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack hillstone", host: www.hillstonenet.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3693 + - { id: sec-hackerone-antiy, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack antiy", host: www.antiy.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3694 + - { id: sec-hackerone-rising, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack rising", host: www.rising.com.cn, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3695 + - { id: sec-hackerone-qihoo, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack qihoo", host: www.360.cn, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3696 + - { id: sec-hackerone-tencent-security, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack tencent security", host: s.tencent.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3697 + - { id: sec-hackerone-alibaba-security, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack alibaba security", host: security.alibaba.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3698 + - { id: sec-hackerone-huawei-psirt, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack huawei psirt", host: www.huawei.com, url: "https://www.huawei.com/en/psirt", cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3699 + - { id: sec-hackerone-zte-psirt, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack zte psirt", host: support.zte.com.cn, url: "https://support.zte.com.cn/support/news/NewsList.aspx?type=1", cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3700 + - { id: sec-hackerone-xiaomi-sec, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack xiaomi sec", host: sec.xiaomi.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3701 + - { id: sec-hackerone-oppo-sec, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack oppo sec", host: security.oppo.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3702 + - { id: sec-hackerone-vivo-sec, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack vivo sec", host: security.vivo.com.cn, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3703 + - { id: sec-hackerone-samsung-sec, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack samsung sec", host: security.samsungmobile.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3704 + - { id: sec-hackerone-samsung-semi-sec, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack samsung semi sec", host: semiconductor.samsung.com, url: "https://semiconductor.samsung.com/support/quality-support/product-security-updates/", cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3705 + - { id: sec-hackerone-lg-sec, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack lg sec", host: lgsecurity.lge.com, cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3706 + - { id: sec-hackerone-sony-psirt, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack sony psirt", host: www.sony.com, url: "https://www.sony.com/en/SonyInfo/csr_report/compliance/security/", cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3707 + - { id: sec-hackerone-hitachi-psirt, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack hitachi psirt", host: www.hitachi.com, url: "https://www.hitachi.com/hirt/", cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3708 + - { id: sec-hackerone-nec-psirt, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack nec psirt", host: jpn.nec.com, url: "https://jpn.nec.com/security-info/", cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3709 + - { id: sec-hackerone-panasonic-psirt, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack panasonic psirt", host: holdings.panasonic, url: "https://holdings.panasonic/global/corporate/product-security.html", cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3710 + - { id: sec-hackerone-toshiba-psirt, name: "HackerOne / Bugcrowd / Intigriti / YesWeHack / Synack toshiba psirt", host: www.global.toshiba, url: "https://www.global.toshiba/ww/security/products.html", cat: developer, provider: hackerone, cc: US, imp: 3, tier: 4, checks: [http] }
3711 + - { id: sec-hibp, name: "Have I Been Pwned", host: haveibeenpwned.com, cat: developer, provider: hibp, cc: AU, imp: 3, tier: 4, checks: [http] }
3712 + - { id: sec-hibp-passwords, name: "Have I Been Pwned passwords", host: api.pwnedpasswords.com, url: "https://api.pwnedpasswords.com/range/21BD1", cat: developer, provider: hibp, cc: AU, imp: 3, tier: 4, checks: [http] }
3713 + - { id: sec-hibp-status, name: "Have I Been Pwned status page", host: status.haveibeenpwned.com, cat: developer, provider: hibp, cc: AU, imp: 3, tier: 4, checks: [http] }
3714 + - { id: sec-virustotal, name: "VirusTotal", host: www.virustotal.com, cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http] }
3715 + - { id: sec-virustotal-docs, name: "VirusTotal docs", host: docs.virustotal.com, cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http] }
3716 + - { id: sec-virustotal-blog, name: "VirusTotal blog", host: blog.virustotal.com, cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http] }
3717 + - { id: sec-virustotal-support, name: "VirusTotal support", host: support.virustotal.com, cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http] }
3718 + - { id: sec-virustotal-developers, name: "VirusTotal developer portal", host: developers.virustotal.com, cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http] }
3719 + - { id: sec-virustotal-yara, name: "VirusTotal yara", host: virustotal.github.io, url: "https://virustotal.github.io/yara/", cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http, dns] }
3720 + - { id: sec-virustotal-chronicle, name: "VirusTotal chronicle", host: chronicle.security, cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http] }
3721 + - { id: sec-virustotal-mandiant, name: "VirusTotal mandiant", host: www.mandiant.com, cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http] }
3722 + - { id: sec-virustotal-mandiant-advantage, name: "VirusTotal mandiant advantage", host: advantage.mandiant.com, cat: developer, provider: google, svc: google, cc: US, imp: 4, tier: 3, checks: [http] }
3723 + - { id: sec-shodan-shodan-api, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe shodan api", host: api.shodan.io, url: "https://api.shodan.io/api-info", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3724 + - { id: sec-shodan-shodan-internetdb, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe shodan internetdb", host: internetdb.shodan.io, url: "https://internetdb.shodan.io/8.8.8.8", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3725 + - { id: sec-shodan-shodan-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe shodan status", host: status.shodan.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3726 + - { id: sec-shodan-shodan-help, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe shodan help", host: help.shodan.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3727 + - { id: sec-shodan-shodan-developer, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe shodan developer", host: developer.shodan.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3728 + - { id: sec-shodan-shodan-trends, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe shodan trends", host: trends.shodan.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3729 + - { id: sec-shodan-shodan-exposure, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe shodan exposure", host: exposure.shodan.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3730 + - { id: sec-shodan-shodan-images, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe shodan images", host: images.shodan.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3731 + - { id: sec-shodan-shodan-maps, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe shodan maps", host: maps.shodan.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3732 + - { id: sec-shodan-shodan-monitor, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe shodan monitor", host: monitor.shodan.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3733 + - { id: sec-shodan-shodan-account, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe shodan account", host: account.shodan.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3734 + - { id: sec-shodan-censys, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe censys", host: censys.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3735 + - { id: sec-shodan-censys-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe censys status", host: status.censys.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3736 + - { id: sec-shodan-censys-docs, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe censys docs", host: docs.censys.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3737 + - { id: sec-shodan-censys-platform, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe censys platform", host: platform.censys.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3738 + - { id: sec-shodan-censys-api-platform, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe censys api platform", host: api.platform.censys.io, url: "https://api.platform.censys.io/v3/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3739 + - { id: sec-shodan-greynoise, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe greynoise", host: www.greynoise.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3740 + - { id: sec-shodan-greynoise-viz, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe greynoise viz", host: viz.greynoise.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3741 + - { id: sec-shodan-greynoise-api, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe greynoise api", host: api.greynoise.io, url: "https://api.greynoise.io/v3/community/8.8.8.8", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3742 + - { id: sec-shodan-greynoise-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe greynoise status", host: status.greynoise.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3743 + - { id: sec-shodan-greynoise-docs, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe greynoise docs", host: docs.greynoise.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3744 + - { id: sec-shodan-binaryedge, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe binaryedge", host: www.binaryedge.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3745 + - { id: sec-shodan-binaryedge-api, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe binaryedge api", host: api.binaryedge.io, url: "https://api.binaryedge.io/v2/user/subscription", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3746 + - { id: sec-shodan-binaryedge-app, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe binaryedge app", host: app.binaryedge.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3747 + - { id: sec-shodan-onyphe, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe onyphe", host: www.onyphe.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3748 + - { id: sec-shodan-netlas, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe netlas", host: netlas.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3749 + - { id: sec-shodan-netlas-app, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe netlas app", host: app.netlas.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3750 + - { id: sec-shodan-criminalip, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe criminalip", host: www.criminalip.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3751 + - { id: sec-shodan-criminalip-api, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe criminalip api", host: api.criminalip.io, url: "https://api.criminalip.io/v1/asset/ip/report?ip=8.8.8.8", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3752 + - { id: sec-shodan-fullhunt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe fullhunt", host: fullhunt.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3753 + - { id: sec-shodan-leakix, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe leakix", host: leakix.net, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3754 + - { id: sec-shodan-securitytrails, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe securitytrails", host: securitytrails.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3755 + - { id: sec-shodan-securitytrails-api, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe securitytrails api", host: api.securitytrails.com, url: "https://api.securitytrails.com/v1/ping", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3756 + - { id: sec-shodan-securitytrails-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe securitytrails status", host: status.securitytrails.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3757 + - { id: sec-shodan-securitytrails-docs, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe securitytrails docs", host: docs.securitytrails.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3758 + - { id: sec-shodan-recordedfuture, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe recordedfuture", host: www.recordedfuture.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3759 + - { id: sec-shodan-recordedfuture-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe recordedfuture status", host: status.recordedfuture.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3760 + - { id: sec-shodan-recordedfuture-app, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe recordedfuture app", host: app.recordedfuture.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3761 + - { id: sec-shodan-recordedfuture-api, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe recordedfuture api", host: api.recordedfuture.com, url: "https://api.recordedfuture.com/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3762 + - { id: sec-shodan-recordedfuture-triage, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe recordedfuture triage", host: tria.ge, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3763 + - { id: sec-shodan-hatching, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe hatching", host: hatching.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3764 + - { id: sec-shodan-intel471, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe intel471", host: intel471.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3765 + - { id: sec-shodan-flashpoint, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe flashpoint", host: flashpoint.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3766 + - { id: sec-shodan-digitalshadows, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe digitalshadows", host: www.reliaquest.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3767 + - { id: sec-shodan-cybersixgill, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe cybersixgill", host: cybersixgill.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3768 + - { id: sec-shodan-kela, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe kela", host: www.kelacyber.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3769 + - { id: sec-shodan-socradar, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe socradar", host: socradar.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3770 + - { id: sec-shodan-socradar-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe socradar status", host: status.socradar.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3771 + - { id: sec-shodan-cyble, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe cyble", host: cyble.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3772 + - { id: sec-shodan-cyble-vision, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe cyble vision", host: cyble.ai, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3773 + - { id: sec-shodan-zerofox, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe zerofox", host: www.zerofox.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3774 + - { id: sec-shodan-zerofox-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe zerofox status", host: status.zerofox.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3775 + - { id: sec-shodan-silobreaker, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe silobreaker", host: www.silobreaker.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3776 + - { id: sec-shodan-anomali, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe anomali", host: www.anomali.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3777 + - { id: sec-shodan-anomali-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe anomali status", host: status.anomali.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3778 + - { id: sec-shodan-anomali-ui, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe anomali ui", host: ui.threatstream.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3779 + - { id: sec-shodan-threatconnect, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe threatconnect", host: threatconnect.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3780 + - { id: sec-shodan-threatquotient, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe threatquotient", host: www.threatq.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3781 + - { id: sec-shodan-eclecticiq, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe eclecticiq", host: www.eclecticiq.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3782 + - { id: sec-shodan-opencti, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe opencti", host: filigran.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3783 + - { id: sec-shodan-opencti-demo, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe opencti demo", host: demo.opencti.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3784 + - { id: sec-shodan-misp, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe misp", host: www.misp-project.org, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3785 + - { id: sec-shodan-misp-training, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe misp training", host: www.circl.lu, url: "https://www.circl.lu/services/misp-training-materials/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3786 + - { id: sec-shodan-thehive, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe thehive", host: strangebee.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3787 + - { id: sec-shodan-intelowl, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe intelowl", host: intelowlproject.github.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3788 + - { id: sec-shodan-yeti, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe yeti", host: yeti-platform.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3789 + - { id: sec-shodan-maltego, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe maltego", host: www.maltego.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3790 + - { id: sec-shodan-maltego-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe maltego status", host: status.maltego.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3791 + - { id: sec-shodan-maltego-docs, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe maltego docs", host: docs.maltego.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3792 + - { id: sec-shodan-spiderfoot, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe spiderfoot", host: www.spiderfoot.net, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3793 + - { id: sec-shodan-amass, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe amass", host: owasp.org, url: "https://owasp.org/www-project-amass/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3794 + - { id: sec-shodan-certspotter, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe certspotter", host: sslmate.com, url: "https://sslmate.com/certspotter/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3795 + - { id: sec-shodan-certspotter-api, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe certspotter api", host: api.certspotter.com, url: "https://api.certspotter.com/v1/issuances?domain=example.com&expand=dns_names", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3796 + - { id: sec-shodan-certstream, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe certstream", host: certstream.calidog.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3797 + - { id: sec-shodan-google-ct, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe google ct", host: transparencyreport.google.com, url: "https://transparencyreport.google.com/https/certificates", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3798 + - { id: sec-shodan-google-ct-log, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe google ct log", host: ct.googleapis.com, url: "https://ct.googleapis.com/logs/us1/argon2025h2/ct/v1/get-sth", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3799 + - { id: sec-shodan-cloudflare-nimbus, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe cloudflare nimbus", host: ct.cloudflare.com, url: "https://ct.cloudflare.com/logs/nimbus2025/ct/v1/get-sth", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3800 + - { id: sec-shodan-hardenize, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe hardenize", host: www.hardenize.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3801 + - { id: sec-shodan-securityheaders, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe securityheaders", host: securityheaders.com, url: "https://securityheaders.com/?q=example.com&followRedirects=on", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3802 + - { id: sec-shodan-observatory, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe observatory", host: observatory.mozilla.org, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3803 + - { id: sec-shodan-observatory-developer, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe observatory developer", host: developer.mozilla.org, url: "https://developer.mozilla.org/en-US/observatory", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3804 + - { id: sec-shodan-observatory-api, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe observatory api", host: observatory-api.mdn.mozilla.net, url: "https://observatory-api.mdn.mozilla.net/api/v2/scan?host=example.com", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3805 + - { id: sec-shodan-mozilla-ssl-config, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe mozilla ssl config", host: ssl-config.mozilla.org, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3806 + - { id: sec-shodan-mozilla-tls-guidelines, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe mozilla tls guidelines", host: wiki.mozilla.org, url: "https://wiki.mozilla.org/Security/Server_Side_TLS", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3807 + - { id: sec-shodan-cryptcheck, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe cryptcheck", host: cryptcheck.fr, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3808 + - { id: sec-shodan-testssl, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe testssl", host: testssl.sh, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3809 + - { id: sec-shodan-sslshopper, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe sslshopper", host: www.sslshopper.com, url: "https://www.sslshopper.com/ssl-checker.html", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3810 + - { id: sec-shodan-digicert-tools, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe digicert tools", host: www.digicert.com, url: "https://www.digicert.com/help/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3811 + - { id: sec-shodan-ssltools, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe ssltools", host: ssltools.digicert.com, url: "https://ssltools.digicert.com/checker/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3812 + - { id: sec-shodan-geekflare-tls, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe geekflare tls", host: geekflare.com, url: "https://geekflare.com/tools/tls-test", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3813 + - { id: sec-shodan-immuniweb, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe immuniweb", host: www.immuniweb.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3814 + - { id: sec-shodan-internet-nl, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe internet nl", host: internet.nl, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3815 + - { id: sec-shodan-internet-nl-batch, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe internet nl batch", host: batch.internet.nl, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3816 + - { id: sec-shodan-webbkoll, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe webbkoll", host: webbkoll.5july.net, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3817 + - { id: sec-shodan-webbkoll-dataskydd, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe webbkoll dataskydd", host: webbkoll.dataskydd.net, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3818 + - { id: sec-shodan-blacklight, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe blacklight", host: themarkup.org, url: "https://themarkup.org/blacklight", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3819 + - { id: sec-shodan-dnssec-debugger, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe dnssec debugger", host: dnssec-debugger.verisignlabs.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3820 + - { id: sec-shodan-dmarcian, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe dmarcian", host: dmarcian.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3821 + - { id: sec-shodan-dmarcian-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe dmarcian status", host: status.dmarcian.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3822 + - { id: sec-shodan-dmarc-org, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe dmarc org", host: dmarc.org, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3823 + - { id: sec-shodan-valimail, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe valimail", host: www.valimail.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3824 + - { id: sec-shodan-valimail-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe valimail status", host: status.valimail.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3825 + - { id: sec-shodan-valimail-tools, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe valimail tools", host: domain-checker.valimail.com, url: "https://domain-checker.valimail.com/dmarc/example.com", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3826 + - { id: sec-shodan-easydmarc, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe easydmarc", host: easydmarc.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3827 + - { id: sec-shodan-powerdmarc, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe powerdmarc", host: powerdmarc.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3828 + - { id: sec-shodan-agari, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe agari", host: www.fortra.com, url: "https://www.fortra.com/product-lines/agari", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3829 + - { id: sec-shodan-proofpoint-threat, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe proofpoint threat", host: www.proofpoint.com, url: "https://www.proofpoint.com/us/threat-insight", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3830 + - { id: sec-shodan-proofpoint-emergingthreats, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe proofpoint emergingthreats", host: rules.emergingthreats.net, url: "https://rules.emergingthreats.net/open/suricata/rules/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3831 + - { id: sec-shodan-mimecast-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe mimecast status", host: status.mimecast.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3832 + - { id: sec-shodan-mimecast-www, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe mimecast www", host: www.mimecast.com, url: "https://www.mimecast.com/products/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3833 + - { id: sec-shodan-abnormal, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe abnormal", host: abnormalsecurity.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3834 + - { id: sec-shodan-abnormal-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe abnormal status", host: status.abnormalsecurity.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3835 + - { id: sec-shodan-barracuda-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe barracuda status", host: status.barracuda.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3836 + - { id: sec-shodan-barracuda-www, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe barracuda www", host: www.barracuda.com, url: "https://www.barracuda.com/products", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3837 + - { id: sec-shodan-barracuda-campus, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe barracuda campus", host: campus.barracuda.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3838 + - { id: sec-shodan-spamhaus-tech, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe spamhaus tech", host: www.spamhaus.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3839 + - { id: sec-shodan-spamcop, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe spamcop", host: www.spamcop.net, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3840 + - { id: sec-shodan-surbl, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe surbl", host: www.surbl.org, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3841 + - { id: sec-shodan-multirbl, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe multirbl", host: multirbl.valli.org, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3842 + - { id: sec-shodan-abuseipdb, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe abuseipdb", host: www.abuseipdb.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3843 + - { id: sec-shodan-abuseipdb-api, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe abuseipdb api", host: api.abuseipdb.com, url: "https://api.abuseipdb.com/api/v2/check?ipAddress=8.8.8.8", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3844 + - { id: sec-shodan-abuseipdb-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe abuseipdb status", host: status.abuseipdb.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3845 + - { id: sec-shodan-urlhaus-api, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe urlhaus api", host: urlhaus-api.abuse.ch, url: "https://urlhaus-api.abuse.ch/v1/urls/recent/limit/1/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3846 + - { id: sec-shodan-malwarebazaar, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe malwarebazaar", host: bazaar.abuse.ch, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3847 + - { id: sec-shodan-malwarebazaar-api, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe malwarebazaar api", host: mb-api.abuse.ch, url: "https://mb-api.abuse.ch/api/v1/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3848 + - { id: sec-shodan-threatfox, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe threatfox", host: threatfox.abuse.ch, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3849 + - { id: sec-shodan-threatfox-api, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe threatfox api", host: threatfox-api.abuse.ch, url: "https://threatfox-api.abuse.ch/api/v1/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3850 + - { id: sec-shodan-feodotracker, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe feodotracker", host: feodotracker.abuse.ch, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3851 + - { id: sec-shodan-sslbl, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe sslbl", host: sslbl.abuse.ch, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3852 + - { id: sec-shodan-yaraify, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe yaraify", host: yaraify.abuse.ch, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3853 + - { id: sec-shodan-hunting-abuse, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe hunting abuse", host: hunting.abuse.ch, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3854 + - { id: sec-shodan-phishtank, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe phishtank", host: phishtank.org, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3855 + - { id: sec-shodan-phishtank-www, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe phishtank www", host: www.phishtank.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3856 + - { id: sec-shodan-phishtank-check, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe phishtank check", host: checkurl.phishtank.com, url: "https://checkurl.phishtank.com/checkurl/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3857 + - { id: sec-shodan-phishtank-data, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe phishtank data", host: data.phishtank.com, url: "https://data.phishtank.com/data/online-valid.json", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3858 + - { id: sec-shodan-openphish, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe openphish", host: openphish.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3859 + - { id: sec-shodan-phishstats, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe phishstats", host: phishstats.info, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3860 + - { id: sec-shodan-phishing-army, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe phishing army", host: phishing.army, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3861 + - { id: sec-shodan-phish-report, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe phish report", host: phish.report, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3862 + - { id: sec-shodan-apwg, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe apwg", host: apwg.org, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3863 + - { id: sec-shodan-apwg-ecx, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe apwg ecx", host: ecrimex.net, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3864 + - { id: sec-shodan-checkphish, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe checkphish", host: checkphish.bolster.ai, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3865 + - { id: sec-shodan-bolster, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe bolster", host: bolster.ai, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3866 + - { id: sec-shodan-netcraft, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe netcraft", host: www.netcraft.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3867 + - { id: sec-shodan-netcraft-report, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe netcraft report", host: report.netcraft.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3868 + - { id: sec-shodan-netcraft-sitereport, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe netcraft sitereport", host: sitereport.netcraft.com, url: "https://sitereport.netcraft.com/?url=example.com", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3869 + - { id: sec-shodan-netcraft-toolbar, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe netcraft toolbar", host: toolbar.netcraft.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3870 + - { id: sec-shodan-google-sb-api, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe google sb api", host: safebrowsing.googleapis.com, url: "https://safebrowsing.googleapis.com/v4/threatLists", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3871 + - { id: sec-shodan-google-webrisk, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe google webrisk", host: webrisk.googleapis.com, url: "https://webrisk.googleapis.com/$discovery/rest?version=v1", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3872 + - { id: sec-shodan-ms-defender-update, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe ms defender update", host: go.microsoft.com, url: "https://go.microsoft.com/fwlink/?LinkID=121721&arch=x64", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3873 + - { id: sec-shodan-ms-msrc, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe ms msrc", host: msrc.microsoft.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3874 + - { id: sec-shodan-msrc-api, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe msrc api", host: api.msrc.microsoft.com, url: "https://api.msrc.microsoft.com/cvrf/v3.0/updates", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3875 + - { id: sec-shodan-ms-defender-portal, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe ms defender portal", host: security.microsoft.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3876 + - { id: sec-shodan-apple-security, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe apple security", host: support.apple.com, url: "https://support.apple.com/en-us/100100", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3877 + - { id: sec-shodan-apple-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe apple psirt", host: security.apple.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3878 + - { id: sec-shodan-gpz, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe gpz", host: googleprojectzero.blogspot.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3879 + - { id: sec-shodan-gpz-issues, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe gpz issues", host: project-zero.issues.chromium.org, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3880 + - { id: sec-shodan-google-security-blog, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe google security blog", host: security.googleblog.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3881 + - { id: sec-shodan-google-bughunters, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe google bughunters", host: bughunters.google.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3882 + - { id: sec-shodan-chrome-releases, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe chrome releases", host: chromereleases.googleblog.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3883 + - { id: sec-shodan-chromium-security, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe chromium security", host: www.chromium.org, url: "https://www.chromium.org/Home/chromium-security/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3884 + - { id: sec-shodan-android-bulletins, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe android bulletins", host: source.android.com, url: "https://source.android.com/docs/security/bulletin", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3885 + - { id: sec-shodan-mozilla-security, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe mozilla security", host: www.mozilla.org, url: "https://www.mozilla.org/en-US/security/advisories/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3886 + - { id: sec-shodan-mozilla-bugzilla, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe mozilla bugzilla", host: bugzilla.mozilla.org, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3887 + - { id: sec-shodan-mozilla-hacks, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe mozilla hacks", host: hacks.mozilla.org, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3888 + - { id: sec-shodan-meta-bounty, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe meta bounty", host: bugbounty.meta.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3889 + - { id: sec-shodan-meta-security, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe meta security", host: about.fb.com, url: "https://about.fb.com/news/tag/security/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3890 + - { id: sec-shodan-meta-whitehat, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe meta whitehat", host: www.facebook.com, url: "https://www.facebook.com/whitehat", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3891 + - { id: sec-shodan-netflix-security, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe netflix security", host: netflixtechblog.com, url: "https://netflixtechblog.com/tagged/security", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3892 + - { id: sec-shodan-github-security-lab, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe github security lab", host: securitylab.github.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3893 + - { id: sec-shodan-github-bounty, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe github bounty", host: bounty.github.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3894 + - { id: sec-shodan-gitlab-security, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe gitlab security", host: about.gitlab.com, url: "https://about.gitlab.com/security/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3895 + - { id: sec-shodan-sap-security, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe sap security", host: support.sap.com, url: "https://support.sap.com/en/my-support/knowledge-base/security-notes-news.html", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3896 + - { id: sec-shodan-adobe-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe adobe psirt", host: helpx.adobe.com, url: "https://helpx.adobe.com/security.html", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3897 + - { id: sec-shodan-vmware-vmsa, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe vmware vmsa", host: support.broadcom.com, url: "https://support.broadcom.com/web/ecx/security-advisory", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3898 + - { id: sec-shodan-broadcom-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe broadcom psirt", host: www.broadcom.com, url: "https://www.broadcom.com/support/vmware-security-advisories", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3899 + - { id: sec-shodan-ibm-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe ibm psirt", host: www.ibm.com, url: "https://www.ibm.com/support/pages/bulletin/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3900 + - { id: sec-shodan-ibm-xforce, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe ibm xforce", host: exchange.xforce.ibmcloud.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3901 + - { id: sec-shodan-ibm-xforce-api, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe ibm xforce api", host: api.xforce.ibmcloud.com, url: "https://api.xforce.ibmcloud.com/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3902 + - { id: sec-shodan-ibm-security-intel, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe ibm security intel", host: securityintelligence.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3903 + - { id: sec-shodan-hp-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe hp psirt", host: support.hp.com, url: "https://support.hp.com/us-en/security-bulletins", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3904 + - { id: sec-shodan-dell-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe dell psirt", host: www.dell.com, url: "https://www.dell.com/support/security/en-us", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3905 + - { id: sec-shodan-lenovo-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe lenovo psirt", host: support.lenovo.com, url: "https://support.lenovo.com/us/en/product_security/home", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3906 + - { id: sec-shodan-nvidia-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe nvidia psirt", host: www.nvidia.com, url: "https://www.nvidia.com/en-us/security/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3907 + - { id: sec-shodan-arm-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe arm psirt", host: developer.arm.com, url: "https://developer.arm.com/Arm%20Security%20Center", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3908 + - { id: sec-shodan-qualcomm-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe qualcomm psirt", host: www.qualcomm.com, url: "https://www.qualcomm.com/company/product-security/bulletins", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3909 + - { id: sec-shodan-siemens-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe siemens psirt", host: www.siemens.com, url: "https://www.siemens.com/global/en/products/services/cert.html", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3910 + - { id: sec-shodan-siemens-cert-api, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe siemens cert api", host: cert-portal.siemens.com, url: "https://cert-portal.siemens.com/productcert/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3911 + - { id: sec-shodan-schneider-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe schneider psirt", host: www.se.com, url: "https://www.se.com/ww/en/work/support/cybersecurity/security-notifications.jsp", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3912 + - { id: sec-shodan-abb-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe abb psirt", host: global.abb, url: "https://global.abb/group/en/technology/cyber-security/alerts-and-notifications", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3913 + - { id: sec-shodan-rockwell-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe rockwell psirt", host: www.rockwellautomation.com, url: "https://www.rockwellautomation.com/en-us/trust-center/security-advisories.html", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3914 + - { id: sec-shodan-honeywell-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe honeywell psirt", host: www.honeywell.com, url: "https://www.honeywell.com/us/en/product-security", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3915 + - { id: sec-shodan-ge-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe ge psirt", host: www.gevernova.com, url: "https://www.gevernova.com/software/security", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3916 + - { id: sec-shodan-johnson-controls-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe johnson controls psirt", host: www.johnsoncontrols.com, url: "https://www.johnsoncontrols.com/cyber-solutions/security-advisories", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3917 + - { id: sec-shodan-bosch-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe bosch psirt", host: psirt.bosch.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3918 + - { id: sec-shodan-phoenix-contact-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe phoenix contact psirt", host: www.phoenixcontact.com, url: "https://www.phoenixcontact.com/en-pc/psirt", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3919 + - { id: sec-shodan-moxa-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe moxa psirt", host: www.moxa.com, url: "https://www.moxa.com/en/support/product-support/security-advisory", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3920 + - { id: sec-shodan-hikvision-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe hikvision psirt", host: www.hikvision.com, url: "https://www.hikvision.com/en/support/cybersecurity/security-advisory/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3921 + - { id: sec-shodan-dahua-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe dahua psirt", host: www.dahuasecurity.com, url: "https://www.dahuasecurity.com/support/cybersecurity/annoucementNotice", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3922 + - { id: sec-shodan-axis-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe axis psirt", host: www.axis.com, url: "https://www.axis.com/support/cybersecurity/security-advisories", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3923 + - { id: sec-shodan-ubiquiti-security, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe ubiquiti security", host: community.ui.com, url: "https://community.ui.com/releases", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3924 + - { id: sec-shodan-zyxel-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe zyxel psirt", host: www.zyxel.com, url: "https://www.zyxel.com/global/en/support/security-advisories", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3925 + - { id: sec-shodan-netgear-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe netgear psirt", host: www.netgear.com, url: "https://www.netgear.com/about/security/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3926 + - { id: sec-shodan-tp-link-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe tp link psirt", host: www.tp-link.com, url: "https://www.tp-link.com/us/support/faq/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3927 + - { id: sec-shodan-dlink-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe dlink psirt", host: supportannouncement.us.dlink.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3928 + - { id: sec-shodan-asus-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe asus psirt", host: www.asus.com, url: "https://www.asus.com/content/asus-product-security-advisory/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3929 + - { id: sec-shodan-synology-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe synology psirt", host: www.synology.com, url: "https://www.synology.com/en-global/security/advisory", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3930 + - { id: sec-shodan-qnap-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe qnap psirt", host: www.qnap.com, url: "https://www.qnap.com/en/security-advisories", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3931 + - { id: sec-shodan-western-digital-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe western digital psirt", host: www.westerndigital.com, url: "https://www.westerndigital.com/support/product-security", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3932 + - { id: sec-shodan-seagate-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe seagate psirt", host: www.seagate.com, url: "https://www.seagate.com/support/kb/seagate-product-security-updates/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3933 + - { id: sec-shodan-juniper-sirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe juniper sirt", host: supportportal.juniper.net, url: "https://supportportal.juniper.net/s/knowledge?language=en_US", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3934 + - { id: sec-shodan-juniper-advisories, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe juniper advisories", host: advisory.juniper.net, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3935 + - { id: sec-shodan-arista-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe arista psirt", host: www.arista.com, url: "https://www.arista.com/en/support/advisories-notices", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3936 + - { id: sec-shodan-extreme-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe extreme psirt", host: extremeportal.force.com, url: "https://extremeportal.force.com/ExtrArticleDetail?an=000116385", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3937 + - { id: sec-shodan-hpe-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe hpe psirt", host: support.hpe.com, url: "https://support.hpe.com/connect/s/securitybulletinlibrary", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3938 + - { id: sec-shodan-aruba-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe aruba psirt", host: www.arubanetworks.com, url: "https://www.arubanetworks.com/support-services/security-bulletins/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3939 + - { id: sec-shodan-citrix-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe citrix psirt", host: support.citrix.com, url: "https://support.citrix.com/securitybulletins", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3940 + - { id: sec-shodan-ivanti-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe ivanti psirt", host: forums.ivanti.com, url: "https://forums.ivanti.com/s/security-advisory", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3941 + - { id: sec-shodan-sonicwall-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe sonicwall psirt", host: psirt.global.sonicwall.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3942 + - { id: sec-shodan-sonicwall-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe sonicwall status", host: status.sonicwall.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3943 + - { id: sec-shodan-watchguard-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe watchguard psirt", host: www.watchguard.com, url: "https://www.watchguard.com/wgrd-psirt", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3944 + - { id: sec-shodan-watchguard-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe watchguard status", host: status.watchguard.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3945 + - { id: sec-shodan-forcepoint, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe forcepoint", host: www.forcepoint.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3946 + - { id: sec-shodan-forcepoint-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe forcepoint status", host: status.forcepoint.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3947 + - { id: sec-shodan-forcepoint-support, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe forcepoint support", host: support.forcepoint.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3948 + - { id: sec-shodan-forcepoint-cloud, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe forcepoint cloud", host: admin.forcepoint.net, url: "https://admin.forcepoint.net/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3949 + - { id: sec-shodan-menlo, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe menlo", host: www.menlosecurity.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3950 + - { id: sec-shodan-menlo-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe menlo status", host: status.menlosecurity.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3951 + - { id: sec-shodan-iboss, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe iboss", host: www.iboss.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3952 + - { id: sec-shodan-iboss-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe iboss status", host: status.iboss.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3953 + - { id: sec-shodan-lookout, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe lookout", host: www.lookout.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3954 + - { id: sec-shodan-zimperium, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe zimperium", host: www.zimperium.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3955 + - { id: sec-shodan-tanium, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe tanium", host: www.tanium.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3956 + - { id: sec-shodan-tanium-docs, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe tanium docs", host: docs.tanium.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3957 + - { id: sec-shodan-tanium-community, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe tanium community", host: community.tanium.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3958 + - { id: sec-shodan-cybereason, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe cybereason", host: www.cybereason.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3959 + - { id: sec-shodan-cybereason-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe cybereason status", host: status.cybereason.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3960 + - { id: sec-shodan-cylance, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe cylance", host: www.blackberry.com, url: "https://www.blackberry.com/us/en/products/cylance-endpoint-security", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3961 + - { id: sec-shodan-blackberry-psirt, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe blackberry psirt", host: support.blackberry.com, url: "https://support.blackberry.com/kb/articleDetail?articleNumber=000094444", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3962 + - { id: sec-shodan-carbon-black-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe carbon black status", host: status.carbonblack.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3963 + - { id: sec-shodan-carbon-black-community, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe carbon black community", host: community.carbonblack.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3964 + - { id: sec-shodan-symantec-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe symantec status", host: status.broadcom.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3965 + - { id: sec-shodan-symantec-support, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe symantec support", host: techdocs.broadcom.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3966 + - { id: sec-shodan-symantec-sep, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe symantec sep", host: sep.securitycloud.symantec.com, url: "https://sep.securitycloud.symantec.com/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3967 + - { id: sec-shodan-symantec-liveupdate, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe symantec liveupdate", host: liveupdate.symantec.com, url: "https://liveupdate.symantec.com/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3968 + - { id: sec-shodan-webroot, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe webroot", host: www.webroot.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3969 + - { id: sec-shodan-webroot-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe webroot status", host: status.webroot.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3970 + - { id: sec-shodan-webroot-support, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe webroot support", host: support.webroot.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3971 + - { id: sec-shodan-g-data, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe g data", host: www.gdata.de, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3972 + - { id: sec-shodan-g-data-en, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe g data en", host: www.gdatasoftware.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3973 + - { id: sec-shodan-f-secure, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe f secure", host: www.f-secure.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3974 + - { id: sec-shodan-f-secure-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe f secure status", host: status.f-secure.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3975 + - { id: sec-shodan-withsecure, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe withsecure", host: www.withsecure.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3976 + - { id: sec-shodan-withsecure-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe withsecure status", host: status.withsecure.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3977 + - { id: sec-shodan-withsecure-labs, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe withsecure labs", host: labs.withsecure.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3978 + - { id: sec-shodan-emsisoft, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe emsisoft", host: www.emsisoft.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3979 + - { id: sec-shodan-emsisoft-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe emsisoft status", host: status.emsisoft.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3980 + - { id: sec-shodan-emsisoft-blog, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe emsisoft blog", host: blog.emsisoft.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3981 + - { id: sec-shodan-nomoreransom, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe nomoreransom", host: www.nomoreransom.org, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3982 + - { id: sec-shodan-id-ransomware, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe id ransomware", host: id-ransomware.malwarehunterteam.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3983 + - { id: sec-shodan-ransomware-live-api, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe ransomware live api", host: api.ransomware.live, url: "https://api.ransomware.live/v2/recentvictims", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3984 + - { id: sec-shodan-ransomwatch, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe ransomwatch", host: ransomwatch.telemetry.ltd, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3985 + - { id: sec-shodan-ransomlook, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe ransomlook", host: www.ransomlook.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3986 + - { id: sec-shodan-ransomfeed, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe ransomfeed", host: ransomfeed.it, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3987 + - { id: sec-shodan-hudsonrock, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe hudsonrock", host: www.hudsonrock.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3988 + - { id: sec-shodan-dehashed, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe dehashed", host: www.dehashed.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3989 + - { id: sec-shodan-dehashed-api, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe dehashed api", host: api.dehashed.com, url: "https://api.dehashed.com/v2/search", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3990 + - { id: sec-shodan-leakcheck, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe leakcheck", host: leakcheck.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3991 + - { id: sec-shodan-intelx, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe intelx", host: intelx.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3992 + - { id: sec-shodan-intelx-api, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe intelx api", host: 2.intelx.io, url: "https://2.intelx.io/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3993 + - { id: sec-shodan-snusbase, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe snusbase", host: snusbase.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3994 + - { id: sec-shodan-breachdirectory, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe breachdirectory", host: breachdirectory.org, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3995 + - { id: sec-shodan-scylla-sh, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe scylla sh", host: scylla.so, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3996 + - { id: sec-shodan-spycloud, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe spycloud", host: spycloud.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3997 + - { id: sec-shodan-spycloud-status, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe spycloud status", host: status.spycloud.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3998 + - { id: sec-shodan-constella, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe constella", host: constella.ai, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
3999 + - { id: sec-shodan-enzoic, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe enzoic", host: www.enzoic.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
4000 + - { id: sec-shodan-enzoic-api, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe enzoic api", host: api.enzoic.com, url: "https://api.enzoic.com/v1/passwords?partialSha1=21BD1", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
4001 + - { id: sec-shodan-firefox-monitor, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe firefox monitor", host: monitor.mozilla.org, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
4002 + - { id: sec-shodan-firefox-monitor-www, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe firefox monitor www", host: monitor.firefox.com, url: "https://monitor.firefox.com/", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
4003 + - { id: sec-shodan-google-password-checkup, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe google password checkup", host: passwords.google.com, url: "https://passwords.google.com/checkup/start", cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
4004 + - { id: sec-shodan-1password-watchtower, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe 1password watchtower", host: watchtower.1password.com, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
4005 + - { id: sec-shodan-passkeys-io, name: "Shodan / Censys / GreyNoise / BinaryEdge / Onyphe passkeys io", host: www.passkeys.io, cat: developer, provider: shodan, cc: null, imp: 3, tier: 4, checks: [http] }
4006 + - { id: sec-cisa-us-cert, name: "CISA us cert", host: us-cert.cisa.gov, url: "https://us-cert.cisa.gov/", cat: infrastructure, provider: cisa, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4007 + - { id: sec-cisa-ics-cert, name: "CISA ics cert", host: ics-cert.us-cert.gov, url: "https://ics-cert.us-cert.gov/", cat: infrastructure, provider: cisa, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4008 + - { id: sec-cisa-stopransomware, name: "CISA stopransomware", host: www.stopransomware.gov, cat: infrastructure, provider: cisa, cc: US, imp: 5, tier: 3, checks: [http] }
4009 + - { id: sec-cisa-cyber-gov, name: "CISA cyber gov", host: www.cyber.gov, url: "https://www.cyber.gov/", cat: infrastructure, provider: cisa, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4010 + - { id: sec-cisa-dhs, name: "CISA dhs", host: www.dhs.gov, url: "https://www.dhs.gov/topics/cybersecurity", cat: infrastructure, provider: cisa, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4011 + - { id: sec-cisa-nsa-cyber, name: "CISA nsa cyber", host: www.nsa.gov, url: "https://www.nsa.gov/Cybersecurity/", cat: infrastructure, provider: cisa, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4012 + - { id: sec-cisa-fbi-ic3, name: "CISA fbi ic3", host: www.ic3.gov, cat: infrastructure, provider: cisa, cc: US, imp: 5, tier: 3, checks: [http] }
4013 + - { id: sec-cisa-fbi-cyber, name: "CISA fbi cyber", host: www.fbi.gov, url: "https://www.fbi.gov/investigate/cyber", cat: infrastructure, provider: cisa, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4014 + - { id: sec-cisa-secret-service-cyber, name: "CISA secret service cyber", host: www.secretservice.gov, url: "https://www.secretservice.gov/investigations/cyber", cat: infrastructure, provider: cisa, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4015 + - { id: sec-cisa-fedramp, name: "CISA fedramp", host: www.fedramp.gov, cat: infrastructure, provider: cisa, cc: US, imp: 5, tier: 3, checks: [http] }
4016 + - { id: sec-cisa-fedramp-marketplace, name: "CISA fedramp marketplace", host: marketplace.fedramp.gov, cat: infrastructure, provider: cisa, cc: US, imp: 5, tier: 3, checks: [http] }
4017 + - { id: sec-cisa-nist-ncp, name: "CISA nist ncp", host: ncp.nist.gov, cat: infrastructure, provider: cisa, cc: US, imp: 5, tier: 3, checks: [http] }
4018 + - { id: sec-cisa-nist-nccoe, name: "CISA nist nccoe", host: www.nccoe.nist.gov, cat: infrastructure, provider: cisa, cc: US, imp: 5, tier: 3, checks: [http] }
4019 + - { id: sec-cisa-nvd-api, name: "CISA nvd api", host: services.nvd.nist.gov, url: "https://services.nvd.nist.gov/rest/json/cves/2.0?resultsPerPage=1", cat: infrastructure, provider: cisa, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4020 + - { id: sec-cisa-nist-samate, name: "CISA nist samate", host: samate.nist.gov, cat: infrastructure, provider: cisa, cc: US, imp: 5, tier: 3, checks: [http] }
4021 + - { id: sec-cisa-nist-time, name: "CISA nist time", host: tf.nist.gov, cat: infrastructure, provider: cisa, cc: US, imp: 5, tier: 3, checks: [http] }
4022 + - { id: sec-mitre-cve-api, name: "MITRE CVE / ATT&CK / CWE / CAPEC cve api", host: cveawg.mitre.org, url: "https://cveawg.mitre.org/api/cve/CVE-2021-44228", cat: infrastructure, provider: mitre, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4023 + - { id: sec-mitre-cve-mitre, name: "MITRE CVE / ATT&CK / CWE / CAPEC cve mitre", host: cve.mitre.org, cat: infrastructure, provider: mitre, cc: US, imp: 5, tier: 3, checks: [http] }
4024 + - { id: sec-mitre-attack, name: "MITRE CVE / ATT&CK / CWE / CAPEC attack", host: attack.mitre.org, cat: infrastructure, provider: mitre, cc: US, imp: 5, tier: 3, checks: [http] }
4025 + - { id: sec-mitre-attack-navigator, name: "MITRE CVE / ATT&CK / CWE / CAPEC attack navigator", host: mitre-attack.github.io, url: "https://mitre-attack.github.io/attack-navigator/", cat: infrastructure, provider: mitre, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4026 + - { id: sec-mitre-attack-taxii, name: "MITRE CVE / ATT&CK / CWE / CAPEC attack taxii", host: attack-taxii.mitre.org, url: "https://attack-taxii.mitre.org/api/v21/collections/", cat: infrastructure, provider: mitre, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4027 + - { id: sec-mitre-d3fend, name: "MITRE CVE / ATT&CK / CWE / CAPEC d3fend", host: d3fend.mitre.org, cat: infrastructure, provider: mitre, cc: US, imp: 5, tier: 3, checks: [http] }
4028 + - { id: sec-mitre-engage, name: "MITRE CVE / ATT&CK / CWE / CAPEC engage", host: engage.mitre.org, cat: infrastructure, provider: mitre, cc: US, imp: 5, tier: 3, checks: [http] }
4029 + - { id: sec-mitre-cwe, name: "MITRE CVE / ATT&CK / CWE / CAPEC cwe", host: cwe.mitre.org, cat: infrastructure, provider: mitre, cc: US, imp: 5, tier: 3, checks: [http] }
4030 + - { id: sec-mitre-cwe-api, name: "MITRE CVE / ATT&CK / CWE / CAPEC cwe api", host: cwe-api.mitre.org, url: "https://cwe-api.mitre.org/api/v1/cwe/weakness/79", cat: infrastructure, provider: mitre, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4031 + - { id: sec-mitre-capec, name: "MITRE CVE / ATT&CK / CWE / CAPEC capec", host: capec.mitre.org, cat: infrastructure, provider: mitre, cc: US, imp: 5, tier: 3, checks: [http] }
4032 + - { id: sec-mitre-caldera, name: "MITRE CVE / ATT&CK / CWE / CAPEC caldera", host: caldera.mitre.org, cat: infrastructure, provider: mitre, cc: US, imp: 5, tier: 3, checks: [http] }
4033 + - { id: sec-mitre-atlas, name: "MITRE CVE / ATT&CK / CWE / CAPEC atlas", host: atlas.mitre.org, cat: infrastructure, provider: mitre, cc: US, imp: 5, tier: 3, checks: [http] }
4034 + - { id: sec-mitre-ctid, name: "MITRE CVE / ATT&CK / CWE / CAPEC ctid", host: ctid.mitre.org, cat: infrastructure, provider: mitre, cc: US, imp: 5, tier: 3, checks: [http] }
4035 + - { id: sec-mitre-mitre-www, name: "MITRE CVE / ATT&CK / CWE / CAPEC mitre www", host: www.mitre.org, cat: infrastructure, provider: mitre, cc: US, imp: 5, tier: 3, checks: [http] }
4036 + - { id: sec-mitre-cvss, name: "MITRE CVE / ATT&CK / CWE / CAPEC cvss", host: www.first.org, url: "https://www.first.org/cvss/", cat: infrastructure, provider: mitre, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4037 + - { id: sec-mitre-first-api, name: "MITRE CVE / ATT&CK / CWE / CAPEC first api", host: api.first.org, url: "https://api.first.org/data/v1/teams?limit=1", cat: infrastructure, provider: mitre, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4038 + - { id: sec-mitre-oasis-csaf, name: "MITRE CVE / ATT&CK / CWE / CAPEC oasis csaf", host: oasis-open.github.io, url: "https://oasis-open.github.io/csaf-documentation/", cat: infrastructure, provider: mitre, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4039 + - { id: sec-mitre-openvex, name: "MITRE CVE / ATT&CK / CWE / CAPEC openvex", host: openvex.dev, cat: infrastructure, provider: mitre, cc: US, imp: 5, tier: 3, checks: [http] }
4040 + - { id: sec-mitre-ssvc-cert, name: "MITRE CVE / ATT&CK / CWE / CAPEC ssvc cert", host: certcc.github.io, url: "https://certcc.github.io/SSVC/", cat: infrastructure, provider: mitre, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4041 + - { id: sec-mitre-certcc, name: "MITRE CVE / ATT&CK / CWE / CAPEC certcc", host: www.kb.cert.org, cat: infrastructure, provider: mitre, cc: US, imp: 5, tier: 3, checks: [http] }
4042 + - { id: sec-mitre-certcc-vince, name: "MITRE CVE / ATT&CK / CWE / CAPEC certcc vince", host: kb.cert.org, url: "https://kb.cert.org/vince/", cat: infrastructure, provider: mitre, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4043 + - { id: sec-mitre-certcc-sei, name: "MITRE CVE / ATT&CK / CWE / CAPEC certcc sei", host: www.sei.cmu.edu, cat: infrastructure, provider: mitre, cc: US, imp: 5, tier: 3, checks: [http] }
4044 + - { id: sec-mitre-sei-insights, name: "MITRE CVE / ATT&CK / CWE / CAPEC sei insights", host: insights.sei.cmu.edu, cat: infrastructure, provider: mitre, cc: US, imp: 5, tier: 3, checks: [http] }
4045 + - { id: sec-mitre-cert-org, name: "MITRE CVE / ATT&CK / CWE / CAPEC cert org", host: www.cert.org, url: "https://www.cert.org/", cat: infrastructure, provider: mitre, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4046 + - { id: sec-certs-europe-enisa-euvd, name: "European CERTs & agencies enisa euvd", host: euvd.enisa.europa.eu, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4047 + - { id: sec-certs-europe-enisa-euvd-api, name: "European CERTs & agencies enisa euvd api", host: euvdservices.enisa.europa.eu, url: "https://euvdservices.enisa.europa.eu/api/lastvulnerabilities", cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4048 + - { id: sec-certs-europe-cert-eu, name: "European CERTs & agencies cert eu", host: www.cert.europa.eu, url: "https://www.cert.europa.eu/", cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4049 + - { id: sec-certs-europe-ncsc-uk-checkyour, name: "European CERTs & agencies ncsc uk checkyour", host: checkcybersecurity.service.ncsc.gov.uk, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4050 + - { id: sec-certs-europe-ncsc-uk-mailcheck, name: "European CERTs & agencies ncsc uk mailcheck", host: www.mailcheck.service.ncsc.gov.uk, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4051 + - { id: sec-certs-europe-ncsc-uk-webcheck, name: "European CERTs & agencies ncsc uk webcheck", host: www.webcheck.service.ncsc.gov.uk, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4052 + - { id: sec-certs-europe-ncsc-uk-report, name: "European CERTs & agencies ncsc uk report", host: report.ncsc.gov.uk, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4053 + - { id: sec-certs-europe-gchq, name: "European CERTs & agencies gchq", host: www.gchq.gov.uk, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4054 + - { id: sec-certs-europe-ncsc-ie, name: "European CERTs & agencies ncsc ie", host: www.ncsc.gov.ie, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4055 + - { id: sec-certs-europe-anssi-cert, name: "European CERTs & agencies anssi cert", host: www.cert.ssi.gouv.fr, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4056 + - { id: sec-certs-europe-cybermalveillance, name: "European CERTs & agencies cybermalveillance", host: www.cybermalveillance.gouv.fr, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4057 + - { id: sec-certs-europe-bsi-warnings, name: "European CERTs & agencies bsi warnings", host: wid.cert-bund.de, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4058 + - { id: sec-certs-europe-allianz-cybersicherheit, name: "European CERTs & agencies allianz cybersicherheit", host: www.allianz-fuer-cybersicherheit.de, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4059 + - { id: sec-certs-europe-dfn-cert, name: "European CERTs & agencies dfn cert", host: www.dfn-cert.de, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4060 + - { id: sec-certs-europe-dfn-cert-advisories, name: "European CERTs & agencies dfn cert advisories", host: adv-archiv.dfn-cert.de, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4061 + - { id: sec-certs-europe-ncsc-nl-advisories, name: "European CERTs & agencies ncsc nl advisories", host: advisories.ncsc.nl, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4062 + - { id: sec-certs-europe-dtc-nl, name: "European CERTs & agencies dtc nl", host: www.digitaltrustcenter.nl, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4063 + - { id: sec-certs-europe-ccb-be-cert, name: "European CERTs & agencies ccb be cert", host: cert.be, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4064 + - { id: sec-certs-europe-safeonweb, name: "European CERTs & agencies safeonweb", host: safeonweb.be, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4065 + - { id: sec-certs-europe-circl-cve, name: "European CERTs & agencies circl cve", host: cve.circl.lu, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4066 + - { id: sec-certs-europe-circl-vulnerability-lookup, name: "European CERTs & agencies circl vulnerability lookup", host: vulnerability.circl.lu, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4067 + - { id: sec-certs-europe-circl-lookyloo, name: "European CERTs & agencies circl lookyloo", host: lookyloo.circl.lu, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4068 + - { id: sec-certs-europe-circl-pandora, name: "European CERTs & agencies circl pandora", host: pandora.circl.lu, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4069 + - { id: sec-certs-europe-circl-ail, name: "European CERTs & agencies circl ail", host: ail-project.org, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4070 + - { id: sec-certs-europe-circl-hashlookup, name: "European CERTs & agencies circl hashlookup", host: hashlookup.circl.lu, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4071 + - { id: sec-certs-europe-govcert-lu, name: "European CERTs & agencies govcert lu", host: www.govcert.lu, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4072 + - { id: sec-certs-europe-ncsc-ch-report, name: "European CERTs & agencies ncsc ch report", host: www.report.ncsc.admin.ch, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4073 + - { id: sec-certs-europe-melani, name: "European CERTs & agencies melani", host: www.melani.admin.ch, url: "https://www.melani.admin.ch/", cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4074 + - { id: sec-certs-europe-switch-cert, name: "European CERTs & agencies switch cert", host: www.switch.ch, url: "https://www.switch.ch/en/security", cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4075 + - { id: sec-certs-europe-cert-at, name: "European CERTs & agencies cert at", host: www.cert.at, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4076 + - { id: sec-certs-europe-govcert-at, name: "European CERTs & agencies govcert at", host: www.govcert.gv.at, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4077 + - { id: sec-certs-europe-csirt-cz, name: "European CERTs & agencies csirt cz", host: csirt.cz, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4078 + - { id: sec-certs-europe-csirt-cz-www, name: "European CERTs & agencies csirt cz www", host: www.csirt.cz, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4079 + - { id: sec-certs-europe-cert-pl-lista, name: "European CERTs & agencies cert pl lista", host: hole.cert.pl, url: "https://hole.cert.pl/domains/domains.json", cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4080 + - { id: sec-certs-europe-nask, name: "European CERTs & agencies nask", host: www.nask.pl, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4081 + - { id: sec-certs-europe-cert-hu, name: "European CERTs & agencies cert hu", host: nki.gov.hu, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4082 + - { id: sec-certs-europe-sk-cert, name: "European CERTs & agencies sk cert", host: www.sk-cert.sk, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4083 + - { id: sec-certs-europe-csirt-sk, name: "European CERTs & agencies csirt sk", host: www.csirt.sk, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4084 + - { id: sec-certs-europe-si-cert, name: "European CERTs & agencies si cert", host: www.cert.si, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4085 + - { id: sec-certs-europe-cert-hr, name: "European CERTs & agencies cert hr", host: www.cert.hr, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4086 + - { id: sec-certs-europe-cert-ro, name: "European CERTs & agencies cert ro", host: dnsc.ro, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4087 + - { id: sec-certs-europe-cert-ro-www, name: "European CERTs & agencies cert ro www", host: www.dnsc.ro, url: "https://www.dnsc.ro/", cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4088 + - { id: sec-certs-europe-cert-bg, name: "European CERTs & agencies cert bg", host: www.govcert.bg, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4089 + - { id: sec-certs-europe-cert-gr, name: "European CERTs & agencies cert gr", host: www.gsis.gr, url: "https://www.gsis.gr/", cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4090 + - { id: sec-certs-europe-cert-cy, name: "European CERTs & agencies cert cy", host: csirt.cy, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4091 + - { id: sec-certs-europe-cert-it, name: "European CERTs & agencies cert it", host: www.csirt.gov.it, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4092 + - { id: sec-certs-europe-cert-it-agid, name: "European CERTs & agencies cert it agid", host: cert-agid.gov.it, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4093 + - { id: sec-certs-europe-ccn, name: "European CERTs & agencies ccn", host: www.ccn.cni.es, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4094 + - { id: sec-certs-europe-cert-pt-www, name: "European CERTs & agencies cert pt www", host: www.cert.pt, url: "https://www.cert.pt/", cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4095 + - { id: sec-certs-europe-cert-se-www, name: "European CERTs & agencies cert se www", host: cert.se, url: "https://cert.se/", cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4096 + - { id: sec-certs-europe-ncsc-se, name: "European CERTs & agencies ncsc se", host: www.ncsc.se, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4097 + - { id: sec-certs-europe-cert-dk-sikkerdigital, name: "European CERTs & agencies cert dk sikkerdigital", host: sikkerdigital.dk, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4098 + - { id: sec-certs-europe-cert-is, name: "European CERTs & agencies cert is", host: www.cert.is, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4099 + - { id: sec-certs-europe-cert-ee-cert, name: "European CERTs & agencies cert ee cert", host: cert.ee, url: "https://cert.ee/", cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4100 + - { id: sec-certs-europe-cert-lv, name: "European CERTs & agencies cert lv", host: cert.lv, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4101 + - { id: sec-certs-europe-cert-lt, name: "European CERTs & agencies cert lt", host: www.nksc.lt, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4102 + - { id: sec-certs-europe-cert-lt-cert, name: "European CERTs & agencies cert lt cert", host: www.cert.lt, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4103 + - { id: sec-certs-europe-scpc-ua, name: "European CERTs & agencies scpc ua", host: scpc.gov.ua, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4104 + - { id: sec-certs-europe-cert-az, name: "European CERTs & agencies cert az", host: cert.gov.az, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4105 + - { id: sec-certs-europe-cert-by, name: "European CERTs & agencies cert by", host: cert.by, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4106 + - { id: sec-certs-europe-cert-ru, name: "European CERTs & agencies cert ru", host: www.cert.ru, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4107 + - { id: sec-certs-europe-cert-gib, name: "European CERTs & agencies cert gib", host: www.group-ib.com, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4108 + - { id: sec-certs-europe-fincert, name: "European CERTs & agencies fincert", host: www.cbr.ru, url: "https://www.cbr.ru/information_security/fincert/", cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4109 + - { id: sec-certs-europe-cert-kg, name: "European CERTs & agencies cert kg", host: cert.gov.kg, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4110 + - { id: sec-certs-europe-cert-tj, name: "European CERTs & agencies cert tj", host: cert.tj, cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http] }
4111 + - { id: sec-certs-europe-cert-il, name: "European CERTs & agencies cert il", host: www.gov.il, url: "https://www.gov.il/en/departments/israel_national_cyber_directorate", cat: infrastructure, provider: enisa, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4112 + - { id: sec-certs-world-cccs-assemblyline, name: "CERTs & agencies (Americas, APAC, Africa) cccs assemblyline", host: cybercentrecanada.github.io, url: "https://cybercentrecanada.github.io/assemblyline4_docs/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4113 + - { id: sec-certs-world-csis, name: "CERTs & agencies (Americas, APAC, Africa) csis", host: www.canada.ca, url: "https://www.canada.ca/en/security-intelligence-service.html", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4114 + - { id: sec-certs-world-rcmp-cyber, name: "CERTs & agencies (Americas, APAC, Africa) rcmp cyber", host: www.rcmp-grc.gc.ca, url: "https://www.rcmp-grc.gc.ca/en/cybercrime", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4115 + - { id: sec-certs-world-canadian-antifraud, name: "CERTs & agencies (Americas, APAC, Africa) canadian antifraud", host: antifraudcentre-centreantifraude.ca, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4116 + - { id: sec-certs-world-getcybersafe, name: "CERTs & agencies (Americas, APAC, Africa) getcybersafe", host: www.getcybersafe.gc.ca, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4117 + - { id: sec-certs-world-cira-cybersecurity, name: "CERTs & agencies (Americas, APAC, Africa) cira cybersecurity", host: www.cira.ca, url: "https://www.cira.ca/en/cybersecurity-services/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4118 + - { id: sec-certs-world-cyberquebec, name: "CERTs & agencies (Americas, APAC, Africa) cyberquebec", host: www.quebec.ca, url: "https://www.quebec.ca/gouvernement/politiques-orientations/cybersecurite", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4119 + - { id: sec-certs-world-ontario-cyber, name: "CERTs & agencies (Americas, APAC, Africa) ontario cyber", host: www.ontario.ca, url: "https://www.ontario.ca/page/cyber-security", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4120 + - { id: sec-certs-world-bc-cyber, name: "CERTs & agencies (Americas, APAC, Africa) bc cyber", host: www2.gov.bc.ca, url: "https://www2.gov.bc.ca/gov/content/governments/services-for-government/information-management-technology/information-security", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4121 + - { id: sec-certs-world-auscert, name: "CERTs & agencies (Americas, APAC, Africa) auscert", host: auscert.org.au, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4122 + - { id: sec-certs-world-cert-nz, name: "CERTs & agencies (Americas, APAC, Africa) cert nz", host: www.cert.govt.nz, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4123 + - { id: sec-certs-world-gcsb-nz, name: "CERTs & agencies (Americas, APAC, Africa) gcsb nz", host: www.gcsb.govt.nz, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4124 + - { id: sec-certs-world-jpcert-blog, name: "CERTs & agencies (Americas, APAC, Africa) jpcert blog", host: blogs.jpcert.or.jp, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4125 + - { id: sec-certs-world-jvn, name: "CERTs & agencies (Americas, APAC, Africa) jvn", host: jvn.jp, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4126 + - { id: sec-certs-world-jvn-ipedia, name: "CERTs & agencies (Americas, APAC, Africa) jvn ipedia", host: jvndb.jvn.jp, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4127 + - { id: sec-certs-world-ipa, name: "CERTs & agencies (Americas, APAC, Africa) ipa", host: www.ipa.go.jp, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4128 + - { id: sec-certs-world-ncsc-jp, name: "CERTs & agencies (Americas, APAC, Africa) ncsc jp", host: www.cyber.go.jp, url: "https://www.cyber.go.jp/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4129 + - { id: sec-certs-world-nis-kr, name: "CERTs & agencies (Americas, APAC, Africa) nis kr", host: www.nis.go.kr, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4130 + - { id: sec-certs-world-ncsc-kr-www, name: "CERTs & agencies (Americas, APAC, Africa) ncsc kr www", host: www.ncsc.go.kr, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4131 + - { id: sec-certs-world-cyberswachhta, name: "CERTs & agencies (Americas, APAC, Africa) cyberswachhta", host: www.csk.gov.in, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4132 + - { id: sec-certs-world-meity-cyber, name: "CERTs & agencies (Americas, APAC, Africa) meity cyber", host: www.meity.gov.in, url: "https://www.meity.gov.in/cyber-security", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4133 + - { id: sec-certs-world-cybercrime-in, name: "CERTs & agencies (Americas, APAC, Africa) cybercrime in", host: cybercrime.gov.in, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4134 + - { id: sec-certs-world-cnnvd, name: "CERTs & agencies (Americas, APAC, Africa) cnnvd", host: www.cnnvd.org.cn, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4135 + - { id: sec-certs-world-cnitsec, name: "CERTs & agencies (Americas, APAC, Africa) cnitsec", host: www.itsec.gov.cn, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4136 + - { id: sec-certs-world-cstis, name: "CERTs & agencies (Americas, APAC, Africa) cstis", host: www.cstis.cn, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4137 + - { id: sec-certs-world-twcert, name: "CERTs & agencies (Americas, APAC, Africa) twcert", host: www.twcert.org.tw, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4138 + - { id: sec-certs-world-tacert, name: "CERTs & agencies (Americas, APAC, Africa) tacert", host: cert.tanet.edu.tw, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4139 + - { id: sec-certs-world-nics-tw, name: "CERTs & agencies (Americas, APAC, Africa) nics tw", host: www.nics.nat.gov.tw, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4140 + - { id: sec-certs-world-hkcert, name: "CERTs & agencies (Americas, APAC, Africa) hkcert", host: www.hkcert.org, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4141 + - { id: sec-certs-world-govcert-hk, name: "CERTs & agencies (Americas, APAC, Africa) govcert hk", host: www.govcert.gov.hk, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4142 + - { id: sec-certs-world-cybersecurity-hk, name: "CERTs & agencies (Americas, APAC, Africa) cybersecurity hk", host: www.cybersecurity.hk, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4143 + - { id: sec-certs-world-pcpd-hk, name: "CERTs & agencies (Americas, APAC, Africa) pcpd hk", host: www.pcpd.org.hk, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4144 + - { id: sec-certs-world-scamshield-sg, name: "CERTs & agencies (Americas, APAC, Africa) scamshield sg", host: www.scamshield.gov.sg, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4145 + - { id: sec-certs-world-mycert, name: "CERTs & agencies (Americas, APAC, Africa) mycert", host: www.mycert.org.my, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4146 + - { id: sec-certs-world-ncsa-th, name: "CERTs & agencies (Americas, APAC, Africa) ncsa th", host: www.ncsa.or.th, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4147 + - { id: sec-certs-world-etda-th, name: "CERTs & agencies (Americas, APAC, Africa) etda th", host: www.etda.or.th, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4148 + - { id: sec-certs-world-id-sirtii, name: "CERTs & agencies (Americas, APAC, Africa) id sirtii", host: www.idsirtii.or.id, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4149 + - { id: sec-certs-world-bssn-csirt, name: "CERTs & agencies (Americas, APAC, Africa) bssn csirt", host: bssn.go.id, url: "https://bssn.go.id/govcsirt/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4150 + - { id: sec-certs-world-cert-ph, name: "CERTs & agencies (Americas, APAC, Africa) cert ph", host: www.dict.gov.ph, url: "https://www.dict.gov.ph/cybersecurity/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4151 + - { id: sec-certs-world-ncert-ph, name: "CERTs & agencies (Americas, APAC, Africa) ncert ph", host: ncert.gov.ph, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4152 + - { id: sec-certs-world-cicc-ph, name: "CERTs & agencies (Americas, APAC, Africa) cicc ph", host: cicc.gov.ph, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4153 + - { id: sec-certs-world-mmcert, name: "CERTs & agencies (Americas, APAC, Africa) mmcert", host: www.mmcert.org.mm, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4154 + - { id: sec-certs-world-srilanka-cert, name: "CERTs & agencies (Americas, APAC, Africa) srilanka cert", host: www.cert.gov.lk, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4155 + - { id: sec-certs-world-npcert, name: "CERTs & agencies (Americas, APAC, Africa) npcert", host: www.npcert.org, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4156 + - { id: sec-certs-world-lao-cert, name: "CERTs & agencies (Americas, APAC, Africa) lao cert", host: www.laocert.gov.la, url: "https://www.laocert.gov.la/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4157 + - { id: sec-certs-world-maldives-cert, name: "CERTs & agencies (Americas, APAC, Africa) maldives cert", host: www.ncit.gov.mv, url: "https://www.ncit.gov.mv/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4158 + - { id: sec-certs-world-bhutan-cirt, name: "CERTs & agencies (Americas, APAC, Africa) bhutan cirt", host: www.btcirt.bt, url: "https://www.btcirt.bt/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4159 + - { id: sec-certs-world-iran-cert, name: "CERTs & agencies (Americas, APAC, Africa) iran cert", host: cert.ir, url: "https://cert.ir/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4160 + - { id: sec-certs-world-iran-maher, name: "CERTs & agencies (Americas, APAC, Africa) iran maher", host: www.certcc.ir, url: "https://www.certcc.ir/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4161 + - { id: sec-certs-world-saudi-cert, name: "CERTs & agencies (Americas, APAC, Africa) saudi cert", host: cert.gov.sa, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4162 + - { id: sec-certs-world-uae-aecert, name: "CERTs & agencies (Americas, APAC, Africa) uae aecert", host: www.tdra.gov.ae, url: "https://www.tdra.gov.ae/en/aecert", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4163 + - { id: sec-certs-world-oman-cert, name: "CERTs & agencies (Americas, APAC, Africa) oman cert", host: www.cert.gov.om, url: "https://www.cert.gov.om/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4164 + - { id: sec-certs-world-oman-mtcit, name: "CERTs & agencies (Americas, APAC, Africa) oman mtcit", host: www.mtcit.gov.om, url: "https://www.mtcit.gov.om/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4165 + - { id: sec-certs-world-kuwait-cert, name: "CERTs & agencies (Americas, APAC, Africa) kuwait cert", host: www.citra.gov.kw, url: "https://www.citra.gov.kw/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4166 + - { id: sec-certs-world-bahrain-ncsc, name: "CERTs & agencies (Americas, APAC, Africa) bahrain ncsc", host: www.ncsc.gov.bh, url: "https://www.ncsc.gov.bh/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4167 + - { id: sec-certs-world-jordan-ncsc, name: "CERTs & agencies (Americas, APAC, Africa) jordan ncsc", host: www.ncsc.jo, url: "https://www.ncsc.jo/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4168 + - { id: sec-certs-world-egypt-cert, name: "CERTs & agencies (Americas, APAC, Africa) egypt cert", host: www.egcert.eg, url: "https://www.egcert.eg/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4169 + - { id: sec-certs-world-egypt-ntra, name: "CERTs & agencies (Americas, APAC, Africa) egypt ntra", host: www.tra.gov.eg, url: "https://www.tra.gov.eg/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4170 + - { id: sec-certs-world-morocco-macert, name: "CERTs & agencies (Americas, APAC, Africa) morocco macert", host: www.dgssi.gov.ma, url: "https://www.dgssi.gov.ma/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4171 + - { id: sec-certs-world-algeria-cert, name: "CERTs & agencies (Americas, APAC, Africa) algeria cert", host: www.cerist.dz, url: "https://www.cerist.dz/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4172 + - { id: sec-certs-world-nigeria-cert, name: "CERTs & agencies (Americas, APAC, Africa) nigeria cert", host: cert.gov.ng, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4173 + - { id: sec-certs-world-nigeria-ncc-csirt, name: "CERTs & agencies (Americas, APAC, Africa) nigeria ncc csirt", host: www.ncc.gov.ng, url: "https://www.ncc.gov.ng/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4174 + - { id: sec-certs-world-ghana-cert, name: "CERTs & agencies (Americas, APAC, Africa) ghana cert", host: www.cert-gh.org, url: "https://www.cert-gh.org/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4175 + - { id: sec-certs-world-tanzania-cert, name: "CERTs & agencies (Americas, APAC, Africa) tanzania cert", host: www.tzcert.go.tz, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4176 + - { id: sec-certs-world-uganda-cert, name: "CERTs & agencies (Americas, APAC, Africa) uganda cert", host: www.ug-cert.ug, url: "https://www.ug-cert.ug/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4177 + - { id: sec-certs-world-ethiopia-insa, name: "CERTs & agencies (Americas, APAC, Africa) ethiopia insa", host: www.insa.gov.et, url: "https://www.insa.gov.et/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4178 + - { id: sec-certs-world-south-africa-sabric, name: "CERTs & agencies (Americas, APAC, Africa) south africa sabric", host: www.sabric.co.za, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4179 + - { id: sec-certs-world-zimbabwe-cert, name: "CERTs & agencies (Americas, APAC, Africa) zimbabwe cert", host: www.potraz.gov.zw, url: "https://www.potraz.gov.zw/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4180 + - { id: sec-certs-world-botswana-cert, name: "CERTs & agencies (Americas, APAC, Africa) botswana cert", host: www.bocra.org.bw, url: "https://www.bocra.org.bw/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4181 + - { id: sec-certs-world-namibia-cert, name: "CERTs & agencies (Americas, APAC, Africa) namibia cert", host: www.cran.na, url: "https://www.cran.na/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4182 + - { id: sec-certs-world-mauritius-cert, name: "CERTs & agencies (Americas, APAC, Africa) mauritius cert", host: cert-mu.govmu.org, url: "https://cert-mu.govmu.org/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4183 + - { id: sec-certs-world-cameroon-cert, name: "CERTs & agencies (Americas, APAC, Africa) cameroon cert", host: www.antic.cm, url: "https://www.antic.cm/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4184 + - { id: sec-certs-world-africacert, name: "CERTs & agencies (Americas, APAC, Africa) africacert", host: www.africacert.org, url: "https://www.africacert.org/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4185 + - { id: sec-certs-world-afnog, name: "CERTs & agencies (Americas, APAC, Africa) afnog", host: www.afnog.org, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4186 + - { id: sec-certs-world-afrinic-cert, name: "CERTs & agencies (Americas, APAC, Africa) afrinic cert", host: afrinic.net, url: "https://afrinic.net/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4187 + - { id: sec-certs-world-brazil-cert, name: "CERTs & agencies (Americas, APAC, Africa) brazil cert", host: www.cert.br, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4188 + - { id: sec-certs-world-brazil-ctir, name: "CERTs & agencies (Americas, APAC, Africa) brazil ctir", host: www.gov.br, url: "https://www.gov.br/ctir/pt-br", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4189 + - { id: sec-certs-world-brazil-nic, name: "CERTs & agencies (Americas, APAC, Africa) brazil nic", host: www.nic.br, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4190 + - { id: sec-certs-world-brazil-cgi, name: "CERTs & agencies (Americas, APAC, Africa) brazil cgi", host: cgi.br, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4191 + - { id: sec-certs-world-brazil-safernet, name: "CERTs & agencies (Americas, APAC, Africa) brazil safernet", host: www.safernet.org.br, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4192 + - { id: sec-certs-world-mexico-cert, name: "CERTs & agencies (Americas, APAC, Africa) mexico cert", host: www.gob.mx, url: "https://www.gob.mx/sspc", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4193 + - { id: sec-certs-world-mexico-unam-cert, name: "CERTs & agencies (Americas, APAC, Africa) mexico unam cert", host: www.cert.unam.mx, url: "https://www.cert.unam.mx/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4194 + - { id: sec-certs-world-mexico-unam-cert-www, name: "CERTs & agencies (Americas, APAC, Africa) mexico unam cert www", host: www.seguridad.unam.mx, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4195 + - { id: sec-certs-world-argentina-cert, name: "CERTs & agencies (Americas, APAC, Africa) argentina cert", host: www.argentina.gob.ar, url: "https://www.argentina.gob.ar/jefatura/innovacion-publica/ssetic/direccion-nacional-ciberseguridad/cert-ar", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4196 + - { id: sec-certs-world-argentina-ba-cert, name: "CERTs & agencies (Americas, APAC, Africa) argentina ba cert", host: www.buenosaires.gob.ar, url: "https://www.buenosaires.gob.ar/ciberseguridad", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4197 + - { id: sec-certs-world-chile-anci, name: "CERTs & agencies (Americas, APAC, Africa) chile anci", host: www.anci.gob.cl, url: "https://www.anci.gob.cl/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4198 + - { id: sec-certs-world-colombia-colcert, name: "CERTs & agencies (Americas, APAC, Africa) colombia colcert", host: www.colcert.gov.co, url: "https://www.colcert.gov.co/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4199 + - { id: sec-certs-world-colombia-csirt, name: "CERTs & agencies (Americas, APAC, Africa) colombia csirt", host: www.csirt.gov.co, url: "https://www.csirt.gov.co/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4200 + - { id: sec-certs-world-colombia-mintic, name: "CERTs & agencies (Americas, APAC, Africa) colombia mintic", host: www.mintic.gov.co, url: "https://www.mintic.gov.co/portal/inicio/Iniciativas/Seguridad-Digital/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4201 + - { id: sec-certs-world-colombia-ccit, name: "CERTs & agencies (Americas, APAC, Africa) colombia ccit", host: www.ccit.org.co, url: "https://www.ccit.org.co/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4202 + - { id: sec-certs-world-peru-pecert, name: "CERTs & agencies (Americas, APAC, Africa) peru pecert", host: www.gob.pe, url: "https://www.gob.pe/pecert", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4203 + - { id: sec-certs-world-peru-cert, name: "CERTs & agencies (Americas, APAC, Africa) peru cert", host: www.pecert.gob.pe, url: "https://www.pecert.gob.pe/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4204 + - { id: sec-certs-world-uruguay-certuy, name: "CERTs & agencies (Americas, APAC, Africa) uruguay certuy", host: www.gub.uy, url: "https://www.gub.uy/centro-nacional-respuesta-incidentes-seguridad-informatica", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4205 + - { id: sec-certs-world-uruguay-cert, name: "CERTs & agencies (Americas, APAC, Africa) uruguay cert", host: www.cert.uy, url: "https://www.cert.uy/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4206 + - { id: sec-certs-world-paraguay-cert, name: "CERTs & agencies (Americas, APAC, Africa) paraguay cert", host: www.cert.gov.py, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4207 + - { id: sec-certs-world-paraguay-cert-www, name: "CERTs & agencies (Americas, APAC, Africa) paraguay cert www", host: cert.gov.py, url: "https://cert.gov.py/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4208 + - { id: sec-certs-world-bolivia-cert, name: "CERTs & agencies (Americas, APAC, Africa) bolivia cert", host: www.csirt.gob.bo, url: "https://www.csirt.gob.bo/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4209 + - { id: sec-certs-world-bolivia-agetic, name: "CERTs & agencies (Americas, APAC, Africa) bolivia agetic", host: www.agetic.gob.bo, url: "https://www.agetic.gob.bo/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4210 + - { id: sec-certs-world-costa-rica-cert, name: "CERTs & agencies (Americas, APAC, Africa) costa rica cert", host: www.micitt.go.cr, url: "https://www.micitt.go.cr/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4211 + - { id: sec-certs-world-panama-cert, name: "CERTs & agencies (Americas, APAC, Africa) panama cert", host: cert.pa, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4212 + - { id: sec-certs-world-dominican-cert, name: "CERTs & agencies (Americas, APAC, Africa) dominican cert", host: csirt.gob.do, url: "https://csirt.gob.do/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4213 + - { id: sec-certs-world-dominican-cncs, name: "CERTs & agencies (Americas, APAC, Africa) dominican cncs", host: www.cncs.gob.do, url: "https://www.cncs.gob.do/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4214 + - { id: sec-certs-world-jamaica-cert, name: "CERTs & agencies (Americas, APAC, Africa) jamaica cert", host: www.cirt.gov.jm, url: "https://www.cirt.gov.jm/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4215 + - { id: sec-certs-world-lacnic-csirt, name: "CERTs & agencies (Americas, APAC, Africa) lacnic csirt", host: csirt.lacnic.net, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4216 + - { id: sec-certs-world-lacnic-warp, name: "CERTs & agencies (Americas, APAC, Africa) lacnic warp", host: warp.lacnic.net, url: "https://warp.lacnic.net/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4217 + - { id: sec-certs-world-oas-cyber, name: "CERTs & agencies (Americas, APAC, Africa) oas cyber", host: www.oas.org, url: "https://www.oas.org/en/sms/cicte/prog-cybersecurity.asp", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4218 + - { id: sec-certs-world-apcert, name: "CERTs & agencies (Americas, APAC, Africa) apcert", host: www.apcert.org, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4219 + - { id: sec-certs-world-apnic-security, name: "CERTs & agencies (Americas, APAC, Africa) apnic security", host: www.apnic.net, url: "https://www.apnic.net/community/security/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4220 + - { id: sec-certs-world-oic-cert, name: "CERTs & agencies (Americas, APAC, Africa) oic cert", host: www.oic-cert.org, url: "https://www.oic-cert.org/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4221 + - { id: sec-certs-world-ti-cert, name: "CERTs & agencies (Americas, APAC, Africa) ti cert", host: www.trusted-introducer.org, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4222 + - { id: sec-certs-world-tf-csirt, name: "CERTs & agencies (Americas, APAC, Africa) tf csirt", host: tf-csirt.org, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4223 + - { id: sec-certs-world-tf-csirt-www, name: "CERTs & agencies (Americas, APAC, Africa) tf csirt www", host: www.tf-csirt.org, url: "https://www.tf-csirt.org/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4224 + - { id: sec-certs-world-geant-security, name: "CERTs & agencies (Americas, APAC, Africa) geant security", host: security.geant.org, url: "https://security.geant.org/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4225 + - { id: sec-certs-world-egi-csirt, name: "CERTs & agencies (Americas, APAC, Africa) egi csirt", host: csirt.egi.eu, url: "https://csirt.egi.eu/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4226 + - { id: sec-certs-world-ren-isac, name: "CERTs & agencies (Americas, APAC, Africa) ren isac", host: www.ren-isac.net, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4227 + - { id: sec-certs-world-ms-isac, name: "CERTs & agencies (Americas, APAC, Africa) ms isac", host: www.cisecurity.org, url: "https://www.cisecurity.org/ms-isac", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4228 + - { id: sec-certs-world-cis-workbench, name: "CERTs & agencies (Americas, APAC, Africa) cis workbench", host: workbench.cisecurity.org, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4229 + - { id: sec-certs-world-fs-isac, name: "CERTs & agencies (Americas, APAC, Africa) fs isac", host: www.fsisac.com, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4230 + - { id: sec-certs-world-h-isac, name: "CERTs & agencies (Americas, APAC, Africa) h isac", host: h-isac.org, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4231 + - { id: sec-certs-world-e-isac, name: "CERTs & agencies (Americas, APAC, Africa) e isac", host: www.eisac.com, url: "https://www.eisac.com/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4232 + - { id: sec-certs-world-auto-isac, name: "CERTs & agencies (Americas, APAC, Africa) auto isac", host: automotiveisac.com, cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http] }
4233 + - { id: sec-certs-world-a-isac, name: "CERTs & agencies (Americas, APAC, Africa) a isac", host: www.a-isac.com, url: "https://www.a-isac.com/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4234 + - { id: sec-certs-world-it-isac, name: "CERTs & agencies (Americas, APAC, Africa) it isac", host: www.it-isac.org, url: "https://www.it-isac.org/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4235 + - { id: sec-certs-world-retail-isac, name: "CERTs & agencies (Americas, APAC, Africa) retail isac", host: rhisac.org, url: "https://rhisac.org/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4236 + - { id: sec-certs-world-space-isac, name: "CERTs & agencies (Americas, APAC, Africa) space isac", host: s-isac.org, url: "https://s-isac.org/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4237 + - { id: sec-certs-world-nrf-isac, name: "CERTs & agencies (Americas, APAC, Africa) nrf isac", host: nrf.com, url: "https://nrf.com/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4238 + - { id: sec-certs-world-national-council-isacs, name: "CERTs & agencies (Americas, APAC, Africa) national council isacs", host: www.nationalisacs.org, url: "https://www.nationalisacs.org/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4239 + - { id: sec-certs-world-cta, name: "CERTs & agencies (Americas, APAC, Africa) cta", host: www.cyberthreatalliance.org, url: "https://www.cyberthreatalliance.org/", cat: infrastructure, provider: cccs, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4240 + - { id: sec-owasp-cheatsheets, name: "OWASP & security standards bodies cheatsheets", host: cheatsheetseries.owasp.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4241 + - { id: sec-owasp-dependency-check-nvd, name: "OWASP & security standards bodies dependency check nvd", host: jeremylong.github.io, url: "https://jeremylong.github.io/DependencyCheck/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4242 + - { id: sec-owasp-juice-shop-demo, name: "OWASP & security standards bodies juice shop demo", host: demo.owasp-juice.shop, url: "https://demo.owasp-juice.shop/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4243 + - { id: sec-owasp-samm, name: "OWASP & security standards bodies samm", host: owaspsamm.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4244 + - { id: sec-owasp-llm-top10, name: "OWASP & security standards bodies llm top10", host: genai.owasp.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4245 + - { id: sec-owasp-mastg, name: "OWASP & security standards bodies mastg", host: mas.owasp.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4246 + - { id: sec-owasp-owasp-wiki, name: "OWASP & security standards bodies owasp wiki", host: wiki.owasp.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4247 + - { id: sec-owasp-sans, name: "OWASP & security standards bodies sans", host: www.sans.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4248 + - { id: sec-owasp-sans-isc, name: "OWASP & security standards bodies sans isc", host: isc.sans.edu, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4249 + - { id: sec-owasp-sans-dshield, name: "OWASP & security standards bodies sans dshield", host: www.dshield.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4250 + - { id: sec-owasp-sans-institute-status, name: "OWASP & security standards bodies sans institute status", host: status.sans.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4251 + - { id: sec-owasp-sans-giac, name: "OWASP & security standards bodies sans giac", host: www.giac.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4252 + - { id: sec-owasp-isc2, name: "OWASP & security standards bodies isc2", host: www.isc2.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4253 + - { id: sec-owasp-isaca, name: "OWASP & security standards bodies isaca", host: www.isaca.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4254 + - { id: sec-owasp-comptia, name: "OWASP & security standards bodies comptia", host: www.comptia.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4255 + - { id: sec-owasp-ec-council, name: "OWASP & security standards bodies ec council", host: www.eccouncil.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4256 + - { id: sec-owasp-cloud-security-alliance, name: "OWASP & security standards bodies cloud security alliance", host: cloudsecurityalliance.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4257 + - { id: sec-owasp-pci-docs, name: "OWASP & security standards bodies pci docs", host: docs-prv.pcisecuritystandards.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4258 + - { id: sec-owasp-pci-listings, name: "OWASP & security standards bodies pci listings", host: listings.pcisecuritystandards.org, url: "https://listings.pcisecuritystandards.org/assessors_and_solutions/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4259 + - { id: sec-owasp-iso-27001, name: "OWASP & security standards bodies iso 27001", host: www.iso.org, url: "https://www.iso.org/standard/27001", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4260 + - { id: sec-owasp-iec-62443, name: "OWASP & security standards bodies iec 62443", host: www.isa.org, url: "https://www.isa.org/standards-and-publications/isa-standards/isa-iec-62443-series-of-standards", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4261 + - { id: sec-owasp-etsi, name: "OWASP & security standards bodies etsi", host: www.etsi.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4262 + - { id: sec-owasp-cen-cenelec, name: "OWASP & security standards bodies cen cenelec", host: www.cencenelec.eu, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4263 + - { id: sec-owasp-enisa-certification, name: "OWASP & security standards bodies enisa certification", host: certification.enisa.europa.eu, url: "https://certification.enisa.europa.eu/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4264 + - { id: sec-owasp-common-criteria, name: "OWASP & security standards bodies common criteria", host: www.commoncriteriaportal.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4265 + - { id: sec-owasp-niap, name: "OWASP & security standards bodies niap", host: www.niap-ccevs.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4266 + - { id: sec-owasp-soc2-aicpa, name: "OWASP & security standards bodies soc2 aicpa", host: www.aicpa-cima.com, url: "https://www.aicpa-cima.com/topic/audit-assurance/audit-and-assurance-greater-than-soc-2", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4267 + - { id: sec-owasp-hitrust, name: "OWASP & security standards bodies hitrust", host: hitrustalliance.net, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4268 + - { id: sec-owasp-hipaa, name: "OWASP & security standards bodies hipaa", host: www.hhs.gov, url: "https://www.hhs.gov/hipaa/index.html", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4269 + - { id: sec-owasp-gdpr, name: "OWASP & security standards bodies gdpr", host: gdpr.eu, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4270 + - { id: sec-owasp-gdpr-info, name: "OWASP & security standards bodies gdpr info", host: gdpr-info.eu, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4271 + - { id: sec-owasp-eu-cra, name: "OWASP & security standards bodies eu cra", host: digital-strategy.ec.europa.eu, url: "https://digital-strategy.ec.europa.eu/en/policies/cyber-resilience-act", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4272 + - { id: sec-owasp-eu-dora, name: "OWASP & security standards bodies eu dora", host: www.eiopa.europa.eu, url: "https://www.eiopa.europa.eu/digital-operational-resilience-act-dora_en", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4273 + - { id: sec-owasp-eu-ai-act, name: "OWASP & security standards bodies eu ai act", host: artificialintelligenceact.eu, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4274 + - { id: sec-owasp-ccpa, name: "OWASP & security standards bodies ccpa", host: oag.ca.gov, url: "https://oag.ca.gov/privacy/ccpa", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4275 + - { id: sec-owasp-pipeda, name: "OWASP & security standards bodies pipeda", host: www.priv.gc.ca, url: "https://www.priv.gc.ca/en/privacy-topics/privacy-laws-in-canada/the-personal-information-protection-and-electronic-documents-act-pipeda/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4276 + - { id: sec-owasp-cai-quebec, name: "OWASP & security standards bodies cai quebec", host: www.cai.gouv.qc.ca, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4277 + - { id: sec-owasp-dpc-ie, name: "OWASP & security standards bodies dpc ie", host: www.dataprotection.ie, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4278 + - { id: sec-owasp-pdp-id, name: "OWASP & security standards bodies pdp id", host: www.komdigi.go.id, url: "https://www.komdigi.go.id/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4279 + - { id: sec-owasp-iapp, name: "OWASP & security standards bodies iapp", host: iapp.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4280 + - { id: sec-owasp-epic, name: "OWASP & security standards bodies epic", host: epic.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4281 + - { id: sec-owasp-eff-coveryourtracks, name: "OWASP & security standards bodies eff coveryourtracks", host: coveryourtracks.eff.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4282 + - { id: sec-owasp-eff-privacy-badger, name: "OWASP & security standards bodies eff privacy badger", host: privacybadger.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4283 + - { id: sec-owasp-citizenlab, name: "OWASP & security standards bodies citizenlab", host: citizenlab.ca, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4284 + - { id: sec-owasp-amnesty-tech, name: "OWASP & security standards bodies amnesty tech", host: www.amnesty.org, url: "https://www.amnesty.org/en/tech/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4285 + - { id: sec-owasp-hrw-tech, name: "OWASP & security standards bodies hrw tech", host: www.hrw.org, url: "https://www.hrw.org/topic/technology-and-rights", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4286 + - { id: sec-owasp-privacyinternational, name: "OWASP & security standards bodies privacyinternational", host: privacyinternational.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4287 + - { id: sec-owasp-noyb, name: "OWASP & security standards bodies noyb", host: noyb.eu, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4288 + - { id: sec-owasp-article19, name: "OWASP & security standards bodies article19", host: www.article19.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4289 + - { id: sec-owasp-cdt, name: "OWASP & security standards bodies cdt", host: cdt.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4290 + - { id: sec-owasp-bits-of-freedom, name: "OWASP & security standards bodies bits of freedom", host: www.bitsoffreedom.nl, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4291 + - { id: sec-owasp-la-quadrature, name: "OWASP & security standards bodies la quadrature", host: www.laquadrature.net, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4292 + - { id: sec-owasp-ccc, name: "OWASP & security standards bodies ccc", host: www.ccc.de, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4293 + - { id: sec-owasp-ccc-events, name: "OWASP & security standards bodies ccc events", host: events.ccc.de, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4294 + - { id: sec-owasp-ccc-media, name: "OWASP & security standards bodies ccc media", host: media.ccc.de, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4295 + - { id: sec-owasp-digitalcourage, name: "OWASP & security standards bodies digitalcourage", host: digitalcourage.de, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4296 + - { id: sec-owasp-netzpolitik, name: "OWASP & security standards bodies netzpolitik", host: netzpolitik.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4297 + - { id: sec-owasp-edri, name: "OWASP & security standards bodies edri", host: edri.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4298 + - { id: sec-owasp-openrightsgroup, name: "OWASP & security standards bodies openrightsgroup", host: www.openrightsgroup.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4299 + - { id: sec-owasp-bigbrotherwatch, name: "OWASP & security standards bodies bigbrotherwatch", host: bigbrotherwatch.org.uk, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4300 + - { id: sec-owasp-liberty-uk, name: "OWASP & security standards bodies liberty uk", host: www.libertyhumanrights.org.uk, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4301 + - { id: sec-owasp-aclu-tech, name: "OWASP & security standards bodies aclu tech", host: www.aclu.org, url: "https://www.aclu.org/issues/privacy-technology", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4302 + - { id: sec-owasp-fight-for-future, name: "OWASP & security standards bodies fight for future", host: www.fightforthefuture.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4303 + - { id: sec-owasp-demand-progress, name: "OWASP & security standards bodies demand progress", host: demandprogress.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4304 + - { id: sec-owasp-freedom-house, name: "OWASP & security standards bodies freedom house", host: freedomhouse.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4305 + - { id: sec-owasp-rsf, name: "OWASP & security standards bodies rsf", host: rsf.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4306 + - { id: sec-owasp-cpj, name: "OWASP & security standards bodies cpj", host: cpj.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4307 + - { id: sec-owasp-censored-planet, name: "OWASP & security standards bodies censored planet", host: censoredplanet.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4308 + - { id: sec-owasp-censored-planet-data, name: "OWASP & security standards bodies censored planet data", host: data.censoredplanet.org, url: "https://data.censoredplanet.org/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4309 + - { id: sec-owasp-icfp, name: "OWASP & security standards bodies icfp", host: www.opentech.fund, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4310 + - { id: sec-owasp-tor-onionoo, name: "OWASP & security standards bodies tor onionoo", host: onionoo.torproject.org, url: "https://onionoo.torproject.org/summary?limit=1", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4311 + - { id: sec-owasp-tor-check, name: "OWASP & security standards bodies tor check", host: check.torproject.org, url: "https://check.torproject.org/api/ip", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4312 + - { id: sec-owasp-tor-dist, name: "OWASP & security standards bodies tor dist", host: dist.torproject.org, url: "https://dist.torproject.org/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4313 + - { id: sec-owasp-tor-bridges, name: "OWASP & security standards bodies tor bridges", host: bridges.torproject.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4314 + - { id: sec-owasp-tor-blog, name: "OWASP & security standards bodies tor blog", host: blog.torproject.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4315 + - { id: sec-owasp-tor-support, name: "OWASP & security standards bodies tor support", host: support.torproject.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4316 + - { id: sec-owasp-tor-community, name: "OWASP & security standards bodies tor community", host: community.torproject.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4317 + - { id: sec-owasp-tor-gitlab, name: "OWASP & security standards bodies tor gitlab", host: gitlab.torproject.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4318 + - { id: sec-owasp-tor-status, name: "OWASP & security standards bodies tor status", host: status.torproject.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4319 + - { id: sec-owasp-tor-aus, name: "OWASP & security standards bodies tor aus", host: aus1.torproject.org, url: "https://aus1.torproject.org/torbrowser/update_3/release/downloads.json", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4320 + - { id: sec-owasp-i2p-plus, name: "OWASP & security standards bodies i2p plus", host: i2pplus.github.io, url: "https://i2pplus.github.io/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4321 + - { id: sec-owasp-freenet-www, name: "OWASP & security standards bodies freenet www", host: freenetproject.org, url: "https://freenetproject.org/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4322 + - { id: sec-owasp-tails, name: "OWASP & security standards bodies tails", host: tails.net, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4323 + - { id: sec-owasp-tails-www, name: "OWASP & security standards bodies tails www", host: tails.boum.org, url: "https://tails.boum.org/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4324 + - { id: sec-owasp-whonix, name: "OWASP & security standards bodies whonix", host: www.whonix.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4325 + - { id: sec-owasp-qubes, name: "OWASP & security standards bodies qubes", host: www.qubes-os.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4326 + - { id: sec-owasp-qubes-repo, name: "OWASP & security standards bodies qubes repo", host: yum.qubes-os.org, url: "https://yum.qubes-os.org/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4327 + - { id: sec-owasp-grapheneos, name: "OWASP & security standards bodies grapheneos", host: grapheneos.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4328 + - { id: sec-owasp-grapheneos-releases, name: "OWASP & security standards bodies grapheneos releases", host: releases.grapheneos.org, url: "https://releases.grapheneos.org/husky-stable", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4329 + - { id: sec-owasp-calyxos, name: "OWASP & security standards bodies calyxos", host: calyxos.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4330 + - { id: sec-owasp-lineageos, name: "OWASP & security standards bodies lineageos", host: lineageos.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4331 + - { id: sec-owasp-lineageos-download, name: "OWASP & security standards bodies lineageos download", host: download.lineageos.org, url: "https://download.lineageos.org/api/v1/types/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4332 + - { id: sec-owasp-e-foundation, name: "OWASP & security standards bodies e foundation", host: e.foundation, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4333 + - { id: sec-owasp-murena, name: "OWASP & security standards bodies murena", host: murena.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4334 + - { id: sec-owasp-signal-status, name: "OWASP & security standards bodies signal status", host: status.signal.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4335 + - { id: sec-owasp-signal-updates, name: "OWASP & security standards bodies signal updates", host: updates.signal.org, url: "https://updates.signal.org/desktop/latest-mac.yml", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4336 + - { id: sec-owasp-simplex-status, name: "OWASP & security standards bodies simplex status", host: status.simplex.chat, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4337 + - { id: sec-owasp-threema-status, name: "OWASP & security standards bodies threema status", host: status.threema.ch, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4338 + - { id: sec-owasp-threema-work, name: "OWASP & security standards bodies threema work", host: threema.com, url: "https://threema.com/en/work", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4339 + - { id: sec-owasp-wire-status, name: "OWASP & security standards bodies wire status", host: status.wire.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4340 + - { id: sec-owasp-wire-www, name: "OWASP & security standards bodies wire www", host: wire.com, url: "https://wire.com/en/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4341 + - { id: sec-owasp-wire-app, name: "OWASP & security standards bodies wire app", host: app.wire.com, url: "https://app.wire.com/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4342 + - { id: sec-owasp-wire-support, name: "OWASP & security standards bodies wire support", host: support.wire.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4343 + - { id: sec-owasp-wickr, name: "OWASP & security standards bodies wickr", host: wickr.com, url: "https://wickr.com/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4344 + - { id: sec-owasp-element-www, name: "OWASP & security standards bodies element www", host: element.io, url: "https://element.io/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4345 + - { id: sec-owasp-element-app, name: "OWASP & security standards bodies element app", host: app.element.io, url: "https://app.element.io/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4346 + - { id: sec-owasp-element-status, name: "OWASP & security standards bodies element status", host: status.element.io, url: "https://status.element.io/api/v2/summary.json", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4347 + - { id: sec-owasp-element-ems, name: "OWASP & security standards bodies element ems", host: ems.element.io, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4348 + - { id: sec-owasp-matrix-www, name: "OWASP & security standards bodies matrix www", host: matrix.org, url: "https://matrix.org/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4349 + - { id: sec-owasp-matrix-federation, name: "OWASP & security standards bodies matrix federation", host: federationtester.matrix.org, url: "https://federationtester.matrix.org/api/report?server_name=matrix.org", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4350 + - { id: sec-owasp-matrix-client, name: "OWASP & security standards bodies matrix client", host: matrix-client.matrix.org, url: "https://matrix-client.matrix.org/_matrix/client/versions", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4351 + - { id: sec-owasp-xmpp-compliance, name: "OWASP & security standards bodies xmpp compliance", host: compliance.conversations.im, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4352 + - { id: sec-owasp-xmpp-prosody, name: "OWASP & security standards bodies xmpp prosody", host: prosody.im, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4353 + - { id: sec-owasp-xmpp-ejabberd, name: "OWASP & security standards bodies xmpp ejabberd", host: www.ejabberd.im, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4354 + - { id: sec-owasp-xmpp-monal, name: "OWASP & security standards bodies xmpp monal", host: monal-im.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4355 + - { id: sec-owasp-xmpp-dino, name: "OWASP & security standards bodies xmpp dino", host: dino.im, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4356 + - { id: sec-owasp-xmpp-snikket, name: "OWASP & security standards bodies xmpp snikket", host: snikket.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4357 + - { id: sec-owasp-xmpp-jmp, name: "OWASP & security standards bodies xmpp jmp", host: jmp.chat, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4358 + - { id: sec-owasp-xmpp-quicksy, name: "OWASP & security standards bodies xmpp quicksy", host: quicksy.im, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4359 + - { id: sec-owasp-cryptpad, name: "OWASP & security standards bodies cryptpad", host: cryptpad.fr, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4360 + - { id: sec-owasp-cryptpad-org, name: "OWASP & security standards bodies cryptpad org", host: cryptpad.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4361 + - { id: sec-owasp-tuta-status, name: "OWASP & security standards bodies tuta status", host: status.tuta.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4362 + - { id: sec-owasp-tuta-mail, name: "OWASP & security standards bodies tuta mail", host: app.tuta.com, url: "https://app.tuta.com/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4363 + - { id: sec-owasp-tuta-api, name: "OWASP & security standards bodies tuta api", host: mail.tutanota.com, url: "https://mail.tutanota.com/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4364 + - { id: sec-owasp-mailbox-org, name: "OWASP & security standards bodies mailbox org", host: mailbox.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4365 + - { id: sec-owasp-mailbox-status, name: "OWASP & security standards bodies mailbox status", host: status.mailbox.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4366 + - { id: sec-owasp-posteo, name: "OWASP & security standards bodies posteo", host: posteo.de, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4367 + - { id: sec-owasp-mailfence, name: "OWASP & security standards bodies mailfence", host: mailfence.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4368 + - { id: sec-owasp-startmail, name: "OWASP & security standards bodies startmail", host: www.startmail.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4369 + - { id: sec-owasp-startmail-status, name: "OWASP & security standards bodies startmail status", host: status.startmail.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4370 + - { id: sec-owasp-runbox, name: "OWASP & security standards bodies runbox", host: runbox.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4371 + - { id: sec-owasp-fastmail-status, name: "OWASP & security standards bodies fastmail status", host: www.fastmailstatus.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4372 + - { id: sec-owasp-fastmail-app, name: "OWASP & security standards bodies fastmail app", host: app.fastmail.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4373 + - { id: sec-owasp-fastmail-api, name: "OWASP & security standards bodies fastmail api", host: api.fastmail.com, url: "https://api.fastmail.com/.well-known/jmap", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4374 + - { id: sec-owasp-hey, name: "OWASP & security standards bodies hey", host: www.hey.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4375 + - { id: sec-owasp-hey-app, name: "OWASP & security standards bodies hey app", host: app.hey.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4376 + - { id: sec-owasp-skiff, name: "OWASP & security standards bodies skiff", host: skiff.com, url: "https://skiff.com/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4377 + - { id: sec-owasp-countermail, name: "OWASP & security standards bodies countermail", host: countermail.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4378 + - { id: sec-owasp-hushmail, name: "OWASP & security standards bodies hushmail", host: www.hushmail.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4379 + - { id: sec-owasp-kolab, name: "OWASP & security standards bodies kolab", host: kolabnow.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4380 + - { id: sec-owasp-kolab-status, name: "OWASP & security standards bodies kolab status", host: status.kolabnow.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4381 + - { id: sec-owasp-disroot, name: "OWASP & security standards bodies disroot", host: disroot.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4382 + - { id: sec-owasp-disroot-status, name: "OWASP & security standards bodies disroot status", host: status.disroot.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4383 + - { id: sec-owasp-riseup, name: "OWASP & security standards bodies riseup", host: riseup.net, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4384 + - { id: sec-owasp-systemli, name: "OWASP & security standards bodies systemli", host: www.systemli.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4385 + - { id: sec-owasp-mailpile, name: "OWASP & security standards bodies mailpile", host: www.mailpile.is, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4386 + - { id: sec-owasp-thunderbird, name: "OWASP & security standards bodies thunderbird", host: www.thunderbird.net, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4387 + - { id: sec-owasp-thunderbird-updates, name: "OWASP & security standards bodies thunderbird updates", host: aus.thunderbird.net, url: "https://aus.thunderbird.net/update/3/Thunderbird/128.0/default/default/default/default/default/update.xml", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4388 + - { id: sec-owasp-thunderbird-addons, name: "OWASP & security standards bodies thunderbird addons", host: addons.thunderbird.net, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4389 + - { id: sec-owasp-thunderbird-support, name: "OWASP & security standards bodies thunderbird support", host: support.mozilla.org, url: "https://support.mozilla.org/en-US/products/thunderbird", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4390 + - { id: sec-owasp-mozilla-relay, name: "OWASP & security standards bodies mozilla relay", host: relay.firefox.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4391 + - { id: sec-owasp-mozilla-monitor-status, name: "OWASP & security standards bodies mozilla monitor status", host: status.mozilla.org, url: "https://status.mozilla.org/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4392 + - { id: sec-owasp-mullvad-api, name: "OWASP & security standards bodies mullvad api", host: api.mullvad.net, url: "https://api.mullvad.net/www/relays/all/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4393 + - { id: sec-owasp-mullvad-am-i, name: "OWASP & security standards bodies mullvad am i", host: am.i.mullvad.net, url: "https://am.i.mullvad.net/json", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4394 + - { id: sec-owasp-ivpn-api, name: "OWASP & security standards bodies ivpn api", host: api.ivpn.net, url: "https://api.ivpn.net/v4/geo-lookup", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4395 + - { id: sec-owasp-windscribe-api, name: "OWASP & security standards bodies windscribe api", host: api.windscribe.com, url: "https://api.windscribe.com/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4396 + - { id: sec-owasp-pia-serverlist, name: "OWASP & security standards bodies pia serverlist", host: serverlist.piaservers.net, url: "https://serverlist.piaservers.net/vpninfo/servers/v6", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4397 + - { id: sec-owasp-surfshark-api, name: "OWASP & security standards bodies surfshark api", host: api.surfshark.com, url: "https://api.surfshark.com/v1/server/clusters", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4398 + - { id: sec-owasp-cyberghost, name: "OWASP & security standards bodies cyberghost", host: www.cyberghostvpn.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4399 + - { id: sec-owasp-cyberghost-status, name: "OWASP & security standards bodies cyberghost status", host: status.cyberghostvpn.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4400 + - { id: sec-owasp-hotspotshield, name: "OWASP & security standards bodies hotspotshield", host: www.hotspotshield.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4401 + - { id: sec-owasp-hotspotshield-status, name: "OWASP & security standards bodies hotspotshield status", host: status.hotspotshield.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4402 + - { id: sec-owasp-tunnelbear, name: "OWASP & security standards bodies tunnelbear", host: www.tunnelbear.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4403 + - { id: sec-owasp-tunnelbear-status, name: "OWASP & security standards bodies tunnelbear status", host: status.tunnelbear.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4404 + - { id: sec-owasp-hide-me, name: "OWASP & security standards bodies hide me", host: hide.me, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4405 + - { id: sec-owasp-protonvpn-status, name: "OWASP & security standards bodies protonvpn status", host: protonstatus.com, url: "https://protonstatus.com/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4406 + - { id: sec-owasp-vpn-unlimited, name: "OWASP & security standards bodies vpn unlimited", host: www.vpnunlimited.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4407 + - { id: sec-owasp-vypr, name: "OWASP & security standards bodies vypr", host: www.vyprvpn.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4408 + - { id: sec-owasp-purevpn, name: "OWASP & security standards bodies purevpn", host: www.purevpn.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4409 + - { id: sec-owasp-purevpn-status, name: "OWASP & security standards bodies purevpn status", host: status.purevpn.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4410 + - { id: sec-owasp-torguard, name: "OWASP & security standards bodies torguard", host: torguard.net, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4411 + - { id: sec-owasp-torguard-status, name: "OWASP & security standards bodies torguard status", host: status.torguard.net, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4412 + - { id: sec-owasp-airvpn, name: "OWASP & security standards bodies airvpn", host: airvpn.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4413 + - { id: sec-owasp-ovpn, name: "OWASP & security standards bodies ovpn", host: www.ovpn.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4414 + - { id: sec-owasp-ovpn-status, name: "OWASP & security standards bodies ovpn status", host: status.ovpn.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4415 + - { id: sec-owasp-azire, name: "OWASP & security standards bodies azire", host: www.azirevpn.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4416 + - { id: sec-owasp-cryptostorm, name: "OWASP & security standards bodies cryptostorm", host: cryptostorm.is, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4417 + - { id: sec-owasp-wireguard-git, name: "OWASP & security standards bodies wireguard git", host: git.zx2c4.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4418 + - { id: sec-owasp-wireguard-download, name: "OWASP & security standards bodies wireguard download", host: download.wireguard.com, url: "https://download.wireguard.com/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4419 + - { id: sec-owasp-openvpn-status, name: "OWASP & security standards bodies openvpn status", host: status.openvpn.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4420 + - { id: sec-owasp-openvpn-community, name: "OWASP & security standards bodies openvpn community", host: community.openvpn.net, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4421 + - { id: sec-owasp-openvpn-build, name: "OWASP & security standards bodies openvpn build", host: build.openvpn.net, url: "https://build.openvpn.net/downloads/releases/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4422 + - { id: sec-owasp-openvpn-swupdate, name: "OWASP & security standards bodies openvpn swupdate", host: swupdate.openvpn.net, url: "https://swupdate.openvpn.net/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4423 + - { id: sec-owasp-openvpn-cloud, name: "OWASP & security standards bodies openvpn cloud", host: cloud.openvpn.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4424 + - { id: sec-owasp-openvpn-packages, name: "OWASP & security standards bodies openvpn packages", host: packages.openvpn.net, url: "https://packages.openvpn.net/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4425 + - { id: sec-owasp-tailscale-status, name: "OWASP & security standards bodies tailscale status", host: status.tailscale.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4426 + - { id: sec-owasp-tailscale-login, name: "OWASP & security standards bodies tailscale login", host: login.tailscale.com, url: "https://login.tailscale.com/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4427 + - { id: sec-owasp-tailscale-derp, name: "OWASP & security standards bodies tailscale derp", host: derp1.tailscale.com, url: "https://derp1.tailscale.com/derp/probe", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4428 + - { id: sec-owasp-tailscale-log, name: "OWASP & security standards bodies tailscale log", host: log.tailscale.io, url: "https://log.tailscale.io/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4429 + - { id: sec-owasp-tailscale-docs, name: "OWASP & security standards bodies tailscale docs", host: tailscale.com, url: "https://tailscale.com/kb", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4430 + - { id: sec-owasp-headscale, name: "OWASP & security standards bodies headscale", host: headscale.net, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4431 + - { id: sec-owasp-netbird-status, name: "OWASP & security standards bodies netbird status", host: status.netbird.io, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4432 + - { id: sec-owasp-netbird-api, name: "OWASP & security standards bodies netbird api", host: api.netbird.io, url: "https://api.netbird.io/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4433 + - { id: sec-owasp-netmaker, name: "OWASP & security standards bodies netmaker", host: www.netmaker.io, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4434 + - { id: sec-owasp-netmaker-status, name: "OWASP & security standards bodies netmaker status", host: status.netmaker.io, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4435 + - { id: sec-owasp-zerotier-status, name: "OWASP & security standards bodies zerotier status", host: status.zerotier.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4436 + - { id: sec-owasp-zerotier-download, name: "OWASP & security standards bodies zerotier download", host: download.zerotier.com, url: "https://download.zerotier.com/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4437 + - { id: sec-owasp-zerotier-docs, name: "OWASP & security standards bodies zerotier docs", host: docs.zerotier.com, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4438 + - { id: sec-owasp-nebula, name: "OWASP & security standards bodies nebula", host: www.defined.net, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4439 + - { id: sec-owasp-tinc, name: "OWASP & security standards bodies tinc", host: www.tinc-vpn.org, cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http] }
4440 + - { id: sec-owasp-cloudflare-warp-api, name: "OWASP & security standards bodies cloudflare warp api", host: api.cloudflareclient.com, url: "https://api.cloudflareclient.com/v0a2158/reg", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4441 + - { id: sec-owasp-cloudflare-warp-engage, name: "OWASP & security standards bodies cloudflare warp engage", host: engage.cloudflareclient.com, url: "https://engage.cloudflareclient.com/", cat: developer, provider: owasp, cc: null, imp: 4, tier: 3, checks: [http, dns] }
4442 + # ───────── Productivity, collaboration, design, storage & business SaaS (891)
4443 + - { id: saas-google-workspace-docs, name: "Google Workspace hosts docs", host: docs.google.com, url: "https://docs.google.com/document/u/0/", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4444 + - { id: saas-google-workspace-classroom, name: "Google Workspace hosts classroom", host: classroom.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4445 + - { id: saas-google-workspace-keep, name: "Google Workspace hosts keep", host: keep.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4446 + - { id: saas-google-workspace-sites, name: "Google Workspace hosts sites", host: sites.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4447 + - { id: saas-google-workspace-groups, name: "Google Workspace hosts groups", host: groups.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4448 + - { id: saas-google-workspace-contacts, name: "Google Workspace hosts contacts", host: contacts.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4449 + - { id: saas-google-workspace-mail, name: "Google Workspace hosts mail", host: mail.google.com, url: "https://mail.google.com/mail/u/0/", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4450 + - { id: saas-google-workspace-gmail, name: "Google Workspace hosts gmail", host: gmail.com, url: "https://gmail.com/", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4451 + - { id: saas-google-workspace-jamboard, name: "Google Workspace hosts jamboard", host: jamboard.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4452 + - { id: saas-google-workspace-support, name: "Google Workspace hosts support", host: support.google.com, url: "https://support.google.com/a/", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4453 + - { id: saas-google-workspace-apps-script, name: "Google Workspace hosts apps script", host: script.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4454 + - { id: saas-google-workspace-sheets-api, name: "Google Workspace hosts sheets api", host: sheets.googleapis.com, url: "https://sheets.googleapis.com/$discovery/rest?version=v4", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4455 + - { id: saas-google-workspace-gmail-api, name: "Google Workspace hosts gmail api", host: gmail.googleapis.com, url: "https://gmail.googleapis.com/$discovery/rest?version=v1", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4456 + - { id: saas-google-workspace-people-api, name: "Google Workspace hosts people api", host: people.googleapis.com, url: "https://people.googleapis.com/$discovery/rest?version=v1", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4457 + - { id: saas-google-workspace-translate-api, name: "Google Workspace hosts translate api", host: translation.googleapis.com, url: "https://translation.googleapis.com/$discovery/rest?version=v3", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4458 + - { id: saas-google-workspace-lens, name: "Google Workspace hosts lens", host: lens.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4459 + - { id: saas-google-workspace-one, name: "Google Workspace hosts one", host: one.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4460 + - { id: saas-google-workspace-fonts, name: "Google Workspace hosts fonts", host: fonts.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4461 + - { id: saas-google-workspace-tagmanager, name: "Google Workspace hosts tagmanager", host: tagmanager.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4462 + - { id: saas-google-workspace-gtm, name: "Google Workspace hosts gtm", host: www.googletagmanager.com, url: "https://www.googletagmanager.com/gtag/js?id=G-XXXX", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4463 + - { id: saas-google-workspace-analytics-collect, name: "Google Workspace hosts analytics collect", host: www.google-analytics.com, url: "https://www.google-analytics.com/g/collect", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4464 + - { id: saas-google-workspace-analytics-api, name: "Google Workspace hosts analytics api", host: analyticsdata.googleapis.com, url: "https://analyticsdata.googleapis.com/$discovery/rest?version=v1beta", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4465 + - { id: saas-google-workspace-doubleclick, name: "Google Workspace hosts doubleclick", host: googleads.g.doubleclick.net, url: "https://googleads.g.doubleclick.net/pagead/id", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4466 + - { id: saas-google-workspace-gstatic-ads, name: "Google Workspace hosts gstatic ads", host: pagead2.googlesyndication.com, url: "https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4467 + - { id: saas-google-workspace-search-console, name: "Google Workspace hosts search console", host: search.google.com, url: "https://search.google.com/search-console/about", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4468 + - { id: saas-google-workspace-business, name: "Google Workspace hosts business", host: business.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4469 + - { id: saas-google-workspace-merchant, name: "Google Workspace hosts merchant", host: merchants.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4470 + - { id: saas-google-workspace-marketing-platform, name: "Google Workspace hosts marketing platform", host: marketingplatform.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4471 + - { id: saas-google-workspace-looker-studio, name: "Google Workspace hosts looker studio", host: lookerstudio.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4472 + - { id: saas-google-workspace-optimize, name: "Google Workspace hosts optimize", host: optimize.google.com, url: "https://optimize.google.com/", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4473 + - { id: saas-google-workspace-recaptcha-enterprise, name: "Google Workspace hosts recaptcha enterprise", host: recaptchaenterprise.googleapis.com, url: "https://recaptchaenterprise.googleapis.com/$discovery/rest?version=v1", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4474 + - { id: saas-google-workspace-chromeos, name: "Google Workspace hosts chromeos", host: chromeos.google, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4475 + - { id: saas-google-workspace-android-enterprise, name: "Google Workspace hosts android enterprise", host: www.android.com, url: "https://www.android.com/enterprise/", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4476 + - { id: saas-google-workspace-pixel, name: "Google Workspace hosts pixel", host: store.google.com, url: "https://store.google.com/", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4477 + - { id: saas-google-workspace-fi, name: "Google Workspace hosts fi", host: fi.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4478 + - { id: saas-google-workspace-nest, name: "Google Workspace hosts nest", host: home.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4479 + - { id: saas-google-workspace-fitbit-status, name: "Google Workspace hosts fitbit status", host: status.fitbit.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4480 + - { id: saas-google-workspace-waze-status, name: "Google Workspace hosts waze status", host: status.waze.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4481 + - { id: saas-google-workspace-google-podcasts, name: "Google Workspace hosts google podcasts", host: podcasts.google.com, url: "https://podcasts.google.com/", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4482 + - { id: saas-google-workspace-google-books, name: "Google Workspace hosts google books", host: books.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4483 + - { id: saas-google-workspace-google-patents, name: "Google Workspace hosts google patents", host: patents.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4484 + - { id: saas-google-workspace-google-shopping, name: "Google Workspace hosts google shopping", host: shopping.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4485 + - { id: saas-google-workspace-google-takeout, name: "Google Workspace hosts google takeout", host: takeout.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4486 + - { id: saas-google-workspace-google-dashboard, name: "Google Workspace hosts google dashboard", host: myaccount.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4487 + - { id: saas-google-workspace-google-safety, name: "Google Workspace hosts google safety", host: safety.google, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4488 + - { id: saas-google-workspace-google-about, name: "Google Workspace hosts google about", host: about.google, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4489 + - { id: saas-google-workspace-google-careers, name: "Google Workspace hosts google careers", host: careers.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4490 + - { id: saas-google-workspace-google-grow, name: "Google Workspace hosts google grow", host: grow.google, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4491 + - { id: saas-google-workspace-google-skillshop, name: "Google Workspace hosts google skillshop", host: skillshop.withgoogle.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4492 + - { id: saas-google-workspace-google-digital-garage, name: "Google Workspace hosts google digital garage", host: learndigital.withgoogle.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4493 + - { id: saas-google-workspace-google-for-startups, name: "Google Workspace hosts google for startups", host: startup.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4494 + - { id: saas-google-workspace-google-org, name: "Google Workspace hosts google org", host: www.google.org, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4495 + - { id: saas-google-workspace-google-crisis, name: "Google Workspace hosts google crisis", host: crisisresponse.google, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4496 + - { id: saas-google-workspace-google-domains, name: "Google Workspace hosts google domains", host: domains.google, url: "https://domains.google/", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4497 + - { id: saas-google-workspace-google-api-console, name: "Google Workspace hosts google api console", host: console.developers.google.com, url: "https://console.developers.google.com/", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4498 + - { id: saas-google-workspace-google-cloud-console, name: "Google Workspace hosts google cloud console", host: console.cloud.google.com, url: "https://console.cloud.google.com/", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4499 + - { id: saas-google-workspace-google-amp, name: "Google Workspace hosts google amp", host: amp.dev, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4500 + - { id: saas-google-workspace-google-amp-cdn, name: "Google Workspace hosts google amp cdn", host: cdn.ampproject.org, url: "https://cdn.ampproject.org/v0.js", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4501 + - { id: saas-google-workspace-google-chrome-status, name: "Google Workspace hosts google chrome status", host: chromestatus.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4502 + - { id: saas-google-workspace-google-chromium-dash, name: "Google Workspace hosts google chromium dash", host: chromiumdash.appspot.com, url: "https://chromiumdash.appspot.com/fetch_releases?channel=Stable&platform=Mac&num=1", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4503 + - { id: saas-google-workspace-google-chrome-releases, name: "Google Workspace hosts google chrome releases", host: googlechromereleases.blogspot.com, url: "https://googlechromereleases.blogspot.com/", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4504 + - { id: saas-google-workspace-google-chrome-webstore-api, name: "Google Workspace hosts google chrome webstore api", host: chrome.google.com, url: "https://chrome.google.com/webstore/", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4505 + - { id: saas-google-workspace-google-chrome-update, name: "Google Workspace hosts google chrome update", host: update.googleapis.com, url: "https://update.googleapis.com/service/update2", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4506 + - { id: saas-google-workspace-google-android-ci, name: "Google Workspace hosts google android ci", host: ci.android.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4507 + - { id: saas-google-workspace-google-play-status, name: "Google Workspace hosts google play status", host: status.play.google.com, url: "https://status.play.google.com/", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4508 + - { id: saas-google-workspace-google-wear, name: "Google Workspace hosts google wear", host: wearos.google.com, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4509 + - { id: saas-google-workspace-google-tv, name: "Google Workspace hosts google tv", host: tv.google, cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http] }
4510 + - { id: saas-google-workspace-google-stadia, name: "Google Workspace hosts google stadia", host: stadia.google.com, url: "https://stadia.google.com/", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4511 + - { id: saas-google-workspace-google-yt-creators, name: "Google Workspace hosts google yt creators", host: www.youtube.com, url: "https://www.youtube.com/creators/", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4512 + - { id: saas-google-workspace-google-yt-embed, name: "Google Workspace hosts google yt embed", host: www.youtube-nocookie.com, url: "https://www.youtube-nocookie.com/embed/dQw4w9WgXcQ", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4513 + - { id: saas-google-workspace-google-yt-img, name: "Google Workspace hosts google yt img", host: i.ytimg.com, url: "https://i.ytimg.com/vi/dQw4w9WgXcQ/default.jpg", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4514 + - { id: saas-google-workspace-google-yt-googlevideo, name: "Google Workspace hosts google yt googlevideo", host: redirector.googlevideo.com, url: "https://redirector.googlevideo.com/", cat: developer, provider: google, svc: google, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4515 + - { id: saas-microsoft-365-office-app, name: "Microsoft 365 hosts office app", host: office.com, url: "https://office.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4516 + - { id: saas-microsoft-365-m365-cloud, name: "Microsoft 365 hosts m365 cloud", host: m365.cloud.microsoft, url: "https://m365.cloud.microsoft/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4517 + - { id: saas-microsoft-365-onedrive-api, name: "Microsoft 365 hosts onedrive api", host: api.onedrive.com, url: "https://api.onedrive.com/v1.0/drives", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4518 + - { id: saas-microsoft-365-outlook-office365, name: "Microsoft 365 hosts outlook office365", host: outlook.office365.com, url: "https://outlook.office365.com/owa/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4519 + - { id: saas-microsoft-365-teams-cloud, name: "Microsoft 365 hosts teams cloud", host: teams.cloud.microsoft, url: "https://teams.cloud.microsoft/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4520 + - { id: saas-microsoft-365-sharepoint-com, name: "Microsoft 365 hosts sharepoint com", host: sharepoint.com, url: "https://sharepoint.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4521 + - { id: saas-microsoft-365-loop, name: "Microsoft 365 hosts loop", host: loop.cloud.microsoft, url: "https://loop.cloud.microsoft/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4522 + - { id: saas-microsoft-365-planner, name: "Microsoft 365 hosts planner", host: tasks.office.com, url: "https://tasks.office.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4523 + - { id: saas-microsoft-365-todo, name: "Microsoft 365 hosts todo", host: to-do.office.com, url: "https://to-do.office.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4524 + - { id: saas-microsoft-365-todo-live, name: "Microsoft 365 hosts todo live", host: to-do.live.com, url: "https://to-do.live.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4525 + - { id: saas-microsoft-365-forms, name: "Microsoft 365 hosts forms", host: forms.office.com, url: "https://forms.office.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4526 + - { id: saas-microsoft-365-onenote, name: "Microsoft 365 hosts onenote", host: www.onenote.com, cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http] }
4527 + - { id: saas-microsoft-365-whiteboard, name: "Microsoft 365 hosts whiteboard", host: whiteboard.office.com, url: "https://whiteboard.office.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4528 + - { id: saas-microsoft-365-sway, name: "Microsoft 365 hosts sway", host: sway.office.com, url: "https://sway.office.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4529 + - { id: saas-microsoft-365-sway-www, name: "Microsoft 365 hosts sway www", host: sway.cloud.microsoft, url: "https://sway.cloud.microsoft/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4530 + - { id: saas-microsoft-365-viva-engage, name: "Microsoft 365 hosts viva engage", host: engage.cloud.microsoft, url: "https://engage.cloud.microsoft/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4531 + - { id: saas-microsoft-365-yammer, name: "Microsoft 365 hosts yammer", host: www.yammer.com, url: "https://www.yammer.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4532 + - { id: saas-microsoft-365-copilot-m365, name: "Microsoft 365 hosts copilot m365", host: copilot.cloud.microsoft, url: "https://copilot.cloud.microsoft/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4533 + - { id: saas-microsoft-365-designer, name: "Microsoft 365 hosts designer", host: designer.microsoft.com, cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http] }
4534 + - { id: saas-microsoft-365-clipchamp, name: "Microsoft 365 hosts clipchamp", host: clipchamp.com, cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http] }
4535 + - { id: saas-microsoft-365-clipchamp-app, name: "Microsoft 365 hosts clipchamp app", host: app.clipchamp.com, url: "https://app.clipchamp.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4536 + - { id: saas-microsoft-365-power-apps, name: "Microsoft 365 hosts power apps", host: make.powerapps.com, url: "https://make.powerapps.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4537 + - { id: saas-microsoft-365-power-automate, name: "Microsoft 365 hosts power automate", host: make.powerautomate.com, url: "https://make.powerautomate.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4538 + - { id: saas-microsoft-365-power-automate-flow, name: "Microsoft 365 hosts power automate flow", host: flow.microsoft.com, url: "https://flow.microsoft.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4539 + - { id: saas-microsoft-365-power-bi-api, name: "Microsoft 365 hosts power bi api", host: api.powerbi.com, url: "https://api.powerbi.com/v1.0/myorg/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4540 + - { id: saas-microsoft-365-dynamics-crm, name: "Microsoft 365 hosts dynamics crm", host: dynamics.com, url: "https://dynamics.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4541 + - { id: saas-microsoft-365-m365-admin, name: "Microsoft 365 hosts m365 admin", host: admin.microsoft.com, url: "https://admin.microsoft.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4542 + - { id: saas-microsoft-365-m365-admin-cloud, name: "Microsoft 365 hosts m365 admin cloud", host: admin.cloud.microsoft, url: "https://admin.cloud.microsoft/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4543 + - { id: saas-microsoft-365-m365-status, name: "Microsoft 365 hosts m365 status", host: status.office.com, url: "https://status.office.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4544 + - { id: saas-microsoft-365-m365-status-portal, name: "Microsoft 365 hosts m365 status portal", host: portal.office.com, url: "https://portal.office.com/servicestatus", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4545 + - { id: saas-microsoft-365-m365-status-cloud, name: "Microsoft 365 hosts m365 status cloud", host: status.cloud.microsoft, url: "https://status.cloud.microsoft/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4546 + - { id: saas-microsoft-365-m365-support, name: "Microsoft 365 hosts m365 support", host: support.microsoft.com, url: "https://support.microsoft.com/en-us/microsoft-365", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4547 + - { id: saas-microsoft-365-m365-developer, name: "Microsoft 365 hosts m365 developer", host: developer.microsoft.com, url: "https://developer.microsoft.com/en-us/microsoft-365", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4548 + - { id: saas-microsoft-365-graph-cn, name: "Microsoft 365 hosts graph cn", host: microsoftgraph.chinacloudapi.cn, url: "https://microsoftgraph.chinacloudapi.cn/v1.0/$metadata", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4549 + - { id: saas-microsoft-365-graph-us, name: "Microsoft 365 hosts graph us", host: graph.microsoft.us, url: "https://graph.microsoft.us/v1.0/$metadata", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4550 + - { id: saas-microsoft-365-myaccount-ms, name: "Microsoft 365 hosts myaccount ms", host: myaccount.microsoft.com, url: "https://myaccount.microsoft.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4551 + - { id: saas-microsoft-365-myapps-ms, name: "Microsoft 365 hosts myapps ms", host: myapps.microsoft.com, url: "https://myapps.microsoft.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4552 + - { id: saas-microsoft-365-aad-cdn, name: "Microsoft 365 hosts aad cdn", host: aadcdn.msftauth.net, url: "https://aadcdn.msftauth.net/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4553 + - { id: saas-microsoft-365-aad-cdn2, name: "Microsoft 365 hosts aad cdn2", host: aadcdn.msauth.net, url: "https://aadcdn.msauth.net/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4554 + - { id: saas-microsoft-365-ms-purview-portal, name: "Microsoft 365 hosts ms purview portal", host: purview.microsoft.com, url: "https://purview.microsoft.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4555 + - { id: saas-microsoft-365-ms-compliance, name: "Microsoft 365 hosts ms compliance", host: compliance.microsoft.com, url: "https://compliance.microsoft.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4556 + - { id: saas-microsoft-365-ms-servicetrust, name: "Microsoft 365 hosts ms servicetrust", host: servicetrust.microsoft.com, url: "https://servicetrust.microsoft.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4557 + - { id: saas-microsoft-365-ms-privacy, name: "Microsoft 365 hosts ms privacy", host: privacy.microsoft.com, cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http] }
4558 + - { id: saas-microsoft-365-ms-catalog, name: "Microsoft 365 hosts ms catalog", host: www.catalog.update.microsoft.com, url: "https://www.catalog.update.microsoft.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4559 + - { id: saas-microsoft-365-ms-update, name: "Microsoft 365 hosts ms update", host: windowsupdate.microsoft.com, url: "https://windowsupdate.microsoft.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4560 + - { id: saas-microsoft-365-ms-download-center, name: "Microsoft 365 hosts ms download center", host: download.microsoft.com, url: "https://download.microsoft.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4561 + - { id: saas-microsoft-365-ms-winget-cdn, name: "Microsoft 365 hosts ms winget cdn", host: cdn.winget.microsoft.com, url: "https://cdn.winget.microsoft.com/cache/source.msix", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4562 + - { id: saas-microsoft-365-ms-store-api, name: "Microsoft 365 hosts ms store api", host: storeedgefd.dsx.mp.microsoft.com, url: "https://storeedgefd.dsx.mp.microsoft.com/v9.0/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4563 + - { id: saas-microsoft-365-ms-store-dl, name: "Microsoft 365 hosts ms store dl", host: displaycatalog.mp.microsoft.com, url: "https://displaycatalog.mp.microsoft.com/v7.0/products?bigIds=9WZDNCRFJ3TJ&market=US&languages=en-us", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4564 + - { id: saas-microsoft-365-ms-xbox-status, name: "Microsoft 365 hosts ms xbox status", host: support.xbox.com, url: "https://support.xbox.com/en-US/xbox-live-status", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4565 + - { id: saas-microsoft-365-ms-xbox-live, name: "Microsoft 365 hosts ms xbox live", host: xbox.com, url: "https://xbox.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4566 + - { id: saas-microsoft-365-ms-minecraft-api, name: "Microsoft 365 hosts ms minecraft api", host: api.minecraftservices.com, url: "https://api.minecraftservices.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4567 + - { id: saas-microsoft-365-ms-minecraft-session, name: "Microsoft 365 hosts ms minecraft session", host: sessionserver.mojang.com, url: "https://sessionserver.mojang.com/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4568 + - { id: saas-microsoft-365-ms-minecraft-launcher, name: "Microsoft 365 hosts ms minecraft launcher", host: launchermeta.mojang.com, url: "https://launchermeta.mojang.com/mc/game/version_manifest.json", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4569 + - { id: saas-microsoft-365-ms-minecraft-piston, name: "Microsoft 365 hosts ms minecraft piston", host: piston-meta.mojang.com, url: "https://piston-meta.mojang.com/mc/game/version_manifest_v2.json", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4570 + - { id: saas-microsoft-365-ms-minecraft-resources, name: "Microsoft 365 hosts ms minecraft resources", host: resources.download.minecraft.net, url: "https://resources.download.minecraft.net/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4571 + - { id: saas-microsoft-365-ms-minecraft-libraries, name: "Microsoft 365 hosts ms minecraft libraries", host: libraries.minecraft.net, url: "https://libraries.minecraft.net/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4572 + - { id: saas-microsoft-365-ms-minecraft-textures, name: "Microsoft 365 hosts ms minecraft textures", host: textures.minecraft.net, url: "https://textures.minecraft.net/", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4573 + - { id: saas-microsoft-365-ms-minecraft-realms, name: "Microsoft 365 hosts ms minecraft realms", host: pc.realms.minecraft.net, url: "https://pc.realms.minecraft.net/mco/available", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4574 + - { id: saas-microsoft-365-ms-minecraft-feedback, name: "Microsoft 365 hosts ms minecraft feedback", host: feedback.minecraft.net, cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http] }
4575 + - { id: saas-microsoft-365-ms-minecraft-bugs, name: "Microsoft 365 hosts ms minecraft bugs", host: bugs.mojang.com, cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http] }
4576 + - { id: saas-microsoft-365-ms-minecraft-curseforge, name: "Microsoft 365 hosts ms minecraft curseforge", host: www.curseforge.com, url: "https://www.curseforge.com/minecraft", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4577 + - { id: saas-microsoft-365-ms-minecraft-modrinth-api, name: "Microsoft 365 hosts ms minecraft modrinth api", host: api.modrinth.com, url: "https://api.modrinth.com/v2/project/sodium", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4578 + - { id: saas-microsoft-365-ms-minecraft-modrinth-status, name: "Microsoft 365 hosts ms minecraft modrinth status", host: status.modrinth.com, cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http] }
4579 + - { id: saas-microsoft-365-ms-minecraft-spigot, name: "Microsoft 365 hosts ms minecraft spigot", host: www.spigotmc.org, cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http] }
4580 + - { id: saas-microsoft-365-ms-minecraft-paper, name: "Microsoft 365 hosts ms minecraft paper", host: papermc.io, cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http] }
4581 + - { id: saas-microsoft-365-ms-minecraft-paper-api, name: "Microsoft 365 hosts ms minecraft paper api", host: api.papermc.io, url: "https://api.papermc.io/v2/projects/paper", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4582 + - { id: saas-microsoft-365-ms-minecraft-fabric, name: "Microsoft 365 hosts ms minecraft fabric", host: fabricmc.net, cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http] }
4583 + - { id: saas-microsoft-365-ms-minecraft-fabric-meta, name: "Microsoft 365 hosts ms minecraft fabric meta", host: meta.fabricmc.net, url: "https://meta.fabricmc.net/v2/versions/game", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4584 + - { id: saas-microsoft-365-ms-minecraft-forge, name: "Microsoft 365 hosts ms minecraft forge", host: files.minecraftforge.net, cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http] }
4585 + - { id: saas-microsoft-365-ms-minecraft-neoforge, name: "Microsoft 365 hosts ms minecraft neoforge", host: neoforged.net, cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http] }
4586 + - { id: saas-microsoft-365-ms-minecraft-optifine, name: "Microsoft 365 hosts ms minecraft optifine", host: optifine.net, cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http] }
4587 + - { id: saas-microsoft-365-ms-minecraft-hypixel-api, name: "Microsoft 365 hosts ms minecraft hypixel api", host: api.hypixel.net, url: "https://api.hypixel.net/v2/punishmentstats", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4588 + - { id: saas-microsoft-365-ms-minecraft-hypixel-status, name: "Microsoft 365 hosts ms minecraft hypixel status", host: status.hypixel.net, cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http] }
4589 + - { id: saas-microsoft-365-ms-minecraft-mcsrvstat, name: "Microsoft 365 hosts ms minecraft mcsrvstat", host: api.mcsrvstat.us, url: "https://api.mcsrvstat.us/3/mc.hypixel.net", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4590 + - { id: saas-microsoft-365-ms-minecraft-mcstatus, name: "Microsoft 365 hosts ms minecraft mcstatus", host: api.mcstatus.io, url: "https://api.mcstatus.io/v2/status/java/mc.hypixel.net", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4591 + - { id: saas-microsoft-365-ms-minecraft-namemc, name: "Microsoft 365 hosts ms minecraft namemc", host: namemc.com, cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http] }
4592 + - { id: saas-microsoft-365-ms-minecraft-planetminecraft, name: "Microsoft 365 hosts ms minecraft planetminecraft", host: www.planetminecraft.com, cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http] }
4593 + - { id: saas-microsoft-365-ms-minecraft-crafatar, name: "Microsoft 365 hosts ms minecraft crafatar", host: crafatar.com, url: "https://crafatar.com/avatars/069a79f444e94726a5befca90e38aaf5?size=8", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4594 + - { id: saas-microsoft-365-ms-minecraft-minotar, name: "Microsoft 365 hosts ms minecraft minotar", host: minotar.net, url: "https://minotar.net/avatar/Notch/8", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4595 + - { id: saas-microsoft-365-ms-minecraft-mc-heads, name: "Microsoft 365 hosts ms minecraft mc heads", host: mc-heads.net, url: "https://mc-heads.net/avatar/Notch/8", cat: developer, provider: microsoft, svc: microsoft, cc: US, imp: 5, tier: 3, checks: [http, dns] }
4596 + - { id: saas-asana-hosts-status, name: "Asana hosts status page", host: status.asana.com, cat: developer, provider: asana, svc: asana, cc: US, imp: 3, tier: 4, checks: [http] }
4597 + - { id: saas-asana-hosts-developers, name: "Asana hosts developer portal", host: developers.asana.com, cat: developer, provider: asana, svc: asana, cc: US, imp: 3, tier: 4, checks: [http] }
4598 + - { id: saas-asana-hosts-forum, name: "Asana hosts forum", host: forum.asana.com, cat: developer, provider: asana, svc: asana, cc: US, imp: 3, tier: 4, checks: [http] }
4599 + - { id: saas-asana-hosts-help, name: "Asana hosts help centre", host: help.asana.com, cat: developer, provider: asana, svc: asana, cc: US, imp: 3, tier: 4, checks: [http] }
4600 + - { id: saas-asana-hosts-api, name: "Asana hosts API", host: app.asana.com, url: "https://app.asana.com/api/1.0/", cat: developer, provider: asana, svc: asana, cc: US, imp: 3, tier: 4, checks: [http] }
4601 + - { id: saas-asana-hosts-academy, name: "Asana hosts academy", host: academy.asana.com, cat: developer, provider: asana, svc: asana, cc: US, imp: 3, tier: 4, checks: [http] }
4602 + - { id: saas-trello-hosts-api, name: "Trello hosts API", host: api.trello.com, url: "https://api.trello.com/1/", cat: developer, provider: atlassian, svc: atlassian, cc: US, imp: 3, tier: 4, checks: [http] }
4603 + - { id: saas-trello-hosts-trello-com, name: "Trello hosts trello com", host: trello.com, url: "https://trello.com/b/nC8QJJoZ/trello-development-roadmap", cat: developer, provider: atlassian, svc: atlassian, cc: US, imp: 3, tier: 4, checks: [http] }
4604 + - { id: saas-trello-hosts-attachments, name: "Trello hosts attachments", host: trello-attachments.s3.amazonaws.com, url: "https://trello-attachments.s3.amazonaws.com/", cat: developer, provider: atlassian, svc: atlassian, cc: US, imp: 3, tier: 4, checks: [http] }
4605 + - { id: saas-monday-hosts-status, name: "monday.com hosts status page", host: status.monday.com, cat: developer, provider: monday, svc: monday, cc: IL, imp: 3, tier: 4, checks: [http] }
4606 + - { id: saas-monday-hosts-developer, name: "monday.com hosts developer portal", host: developer.monday.com, cat: developer, provider: monday, svc: monday, cc: IL, imp: 3, tier: 4, checks: [http] }
4607 + - { id: saas-monday-hosts-api, name: "monday.com hosts API", host: api.monday.com, url: "https://api.monday.com/v2", cat: developer, provider: monday, svc: monday, cc: IL, imp: 3, tier: 4, checks: [http] }
4608 + - { id: saas-monday-hosts-support, name: "monday.com hosts support", host: support.monday.com, cat: developer, provider: monday, svc: monday, cc: IL, imp: 3, tier: 4, checks: [http] }
4609 + - { id: saas-monday-hosts-community, name: "monday.com hosts community", host: community.monday.com, cat: developer, provider: monday, svc: monday, cc: IL, imp: 3, tier: 4, checks: [http] }
4610 + - { id: saas-monday-hosts-cdn, name: "monday.com hosts CDN", host: cdn.monday.com, url: "https://cdn.monday.com/", cat: developer, provider: monday, svc: monday, cc: IL, imp: 3, tier: 4, checks: [http] }
4611 + - { id: saas-clickup-hosts-status, name: "ClickUp hosts status page", host: status.clickup.com, cat: developer, provider: clickup, svc: clickup, cc: US, imp: 3, tier: 4, checks: [http] }
4612 + - { id: saas-clickup-hosts-help, name: "ClickUp hosts help centre", host: help.clickup.com, cat: developer, provider: clickup, svc: clickup, cc: US, imp: 3, tier: 4, checks: [http] }
4613 + - { id: saas-clickup-hosts-api, name: "ClickUp hosts API", host: api.clickup.com, url: "https://api.clickup.com/api/v2/", cat: developer, provider: clickup, svc: clickup, cc: US, imp: 3, tier: 4, checks: [http] }
4614 + - { id: saas-clickup-hosts-developer, name: "ClickUp hosts developer portal", host: developer.clickup.com, cat: developer, provider: clickup, svc: clickup, cc: US, imp: 3, tier: 4, checks: [http] }
4615 + - { id: saas-clickup-hosts-university, name: "ClickUp hosts academy", host: university.clickup.com, cat: developer, provider: clickup, svc: clickup, cc: US, imp: 3, tier: 4, checks: [http] }
4616 + - { id: saas-linear-hosts-status, name: "Linear hosts status page", host: linearstatus.com, cat: developer, provider: linear, svc: linear, cc: US, imp: 3, tier: 4, checks: [http] }
4617 + - { id: saas-linear-hosts-api, name: "Linear hosts API", host: api.linear.app, url: "https://api.linear.app/graphql", cat: developer, provider: linear, svc: linear, cc: US, imp: 3, tier: 4, checks: [http] }
4618 + - { id: saas-linear-hosts-developers, name: "Linear hosts developer portal", host: developers.linear.app, cat: developer, provider: linear, svc: linear, cc: US, imp: 3, tier: 4, checks: [http] }
4619 + - { id: saas-linear-hosts-changelog, name: "Linear hosts changelog", host: linear.app, url: "https://linear.app/changelog", cat: developer, provider: linear, svc: linear, cc: US, imp: 3, tier: 4, checks: [http] }
4620 + - { id: saas-basecamp, name: "Basecamp / 37signals", host: basecamp.com, cat: developer, provider: 37signals, cc: US, imp: 3, tier: 4, checks: [http] }
4621 + - { id: saas-basecamp-status, name: "Basecamp / 37signals status page", host: status.basecamp.com, cat: developer, provider: 37signals, cc: US, imp: 3, tier: 4, checks: [http] }
4622 + - { id: saas-basecamp-3, name: "Basecamp / 37signals 3", host: 3.basecamp.com, url: "https://3.basecamp.com/", cat: developer, provider: 37signals, cc: US, imp: 3, tier: 4, checks: [http] }
4623 + - { id: saas-basecamp-37signals, name: "Basecamp / 37signals 37signals", host: 37signals.com, cat: developer, provider: 37signals, cc: US, imp: 3, tier: 4, checks: [http] }
4624 + - { id: saas-basecamp-launchpad, name: "Basecamp / 37signals launchpad", host: launchpad.37signals.com, url: "https://launchpad.37signals.com/", cat: developer, provider: 37signals, cc: US, imp: 3, tier: 4, checks: [http] }
4625 + - { id: saas-basecamp-once, name: "Basecamp / 37signals once", host: once.com, cat: developer, provider: 37signals, cc: US, imp: 3, tier: 4, checks: [http] }
4626 + - { id: saas-basecamp-world, name: "Basecamp / 37signals world", host: world.hey.com, cat: developer, provider: 37signals, cc: US, imp: 3, tier: 4, checks: [http] }
4627 + - { id: saas-basecamp-signalvnoise, name: "Basecamp / 37signals signalvnoise", host: signalvnoise.com, url: "https://signalvnoise.com/", cat: developer, provider: 37signals, cc: US, imp: 3, tier: 4, checks: [http] }
4628 + - { id: saas-smartsheet, name: "Smartsheet", host: www.smartsheet.com, cat: developer, provider: smartsheet, svc: smartsheet, cc: US, imp: 3, tier: 4, checks: [http] }
4629 + - { id: saas-smartsheet-status, name: "Smartsheet status page", host: status.smartsheet.com, cat: developer, provider: smartsheet, svc: smartsheet, cc: US, imp: 3, tier: 4, checks: [http] }
4630 + - { id: saas-smartsheet-api, name: "Smartsheet API", host: api.smartsheet.com, url: "https://api.smartsheet.com/2.0/serverinfo", cat: developer, provider: smartsheet, svc: smartsheet, cc: US, imp: 3, tier: 4, checks: [http] }
4631 + - { id: saas-smartsheet-developers, name: "Smartsheet developer portal", host: developers.smartsheet.com, cat: developer, provider: smartsheet, svc: smartsheet, cc: US, imp: 3, tier: 4, checks: [http] }
4632 + - { id: saas-smartsheet-help, name: "Smartsheet help centre", host: help.smartsheet.com, cat: developer, provider: smartsheet, svc: smartsheet, cc: US, imp: 3, tier: 4, checks: [http] }
4633 + - { id: saas-smartsheet-community, name: "Smartsheet community", host: community.smartsheet.com, cat: developer, provider: smartsheet, svc: smartsheet, cc: US, imp: 3, tier: 4, checks: [http] }
4634 + - { id: saas-smartsheet-eu, name: "Smartsheet eu", host: app.smartsheet.eu, url: "https://app.smartsheet.eu/", cat: developer, provider: smartsheet, svc: smartsheet, cc: US, imp: 3, tier: 4, checks: [http] }
4635 + - { id: saas-wrike, name: "Wrike", host: www.wrike.com, cat: developer, provider: wrike, cc: US, imp: 2, tier: 4, checks: [http] }
4636 + - { id: saas-wrike-status, name: "Wrike status page", host: status.wrike.com, cat: developer, provider: wrike, cc: US, imp: 2, tier: 4, checks: [http] }
4637 + - { id: saas-wrike-developers, name: "Wrike developer portal", host: developers.wrike.com, cat: developer, provider: wrike, cc: US, imp: 2, tier: 4, checks: [http] }
4638 + - { id: saas-wrike-help, name: "Wrike help centre", host: help.wrike.com, cat: developer, provider: wrike, cc: US, imp: 2, tier: 4, checks: [http] }
4639 + - { id: saas-miro-hosts-status, name: "Miro hosts status page", host: status.miro.com, cat: developer, provider: miro, svc: miro, cc: US, imp: 3, tier: 4, checks: [http] }
4640 + - { id: saas-miro-hosts-developers, name: "Miro hosts developer portal", host: developers.miro.com, cat: developer, provider: miro, svc: miro, cc: US, imp: 3, tier: 4, checks: [http] }
4641 + - { id: saas-miro-hosts-api, name: "Miro hosts API", host: api.miro.com, url: "https://api.miro.com/v2/boards", cat: developer, provider: miro, svc: miro, cc: US, imp: 3, tier: 4, checks: [http] }
4642 + - { id: saas-miro-hosts-help, name: "Miro hosts help centre", host: help.miro.com, cat: developer, provider: miro, svc: miro, cc: US, imp: 3, tier: 4, checks: [http] }
4643 + - { id: saas-miro-hosts-community, name: "Miro hosts community", host: community.miro.com, cat: developer, provider: miro, svc: miro, cc: US, imp: 3, tier: 4, checks: [http] }
4644 + - { id: saas-miro-hosts-academy, name: "Miro hosts academy", host: academy.miro.com, cat: developer, provider: miro, svc: miro, cc: US, imp: 3, tier: 4, checks: [http] }
4645 + - { id: saas-miro-hosts-miroapp, name: "Miro hosts miroapp", host: miro.com, url: "https://miro.com/app/", cat: developer, provider: miro, svc: miro, cc: US, imp: 3, tier: 4, checks: [http] }
4646 + - { id: saas-miro-hosts-static, name: "Miro hosts static assets", host: static-website.miro.com, url: "https://static-website.miro.com/", cat: developer, provider: miro, svc: miro, cc: US, imp: 3, tier: 4, checks: [http] }
4647 + - { id: saas-figma-hosts-status, name: "Figma hosts status page", host: status.figma.com, cat: developer, provider: figma, svc: figma, cc: US, imp: 4, tier: 3, checks: [http] }
4648 + - { id: saas-figma-hosts-api, name: "Figma hosts API", host: api.figma.com, url: "https://api.figma.com/v1/me", cat: developer, provider: figma, svc: figma, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4649 + - { id: saas-figma-hosts-help, name: "Figma hosts help centre", host: help.figma.com, cat: developer, provider: figma, svc: figma, cc: US, imp: 4, tier: 3, checks: [http] }
4650 + - { id: saas-figma-hosts-forum, name: "Figma hosts forum", host: forum.figma.com, cat: developer, provider: figma, svc: figma, cc: US, imp: 4, tier: 3, checks: [http] }
4651 + - { id: saas-figma-hosts-config, name: "Figma hosts config", host: config.figma.com, url: "https://config.figma.com/", cat: developer, provider: figma, svc: figma, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4652 + - { id: saas-figma-hosts-static, name: "Figma hosts static assets", host: static.figma.com, url: "https://static.figma.com/", cat: developer, provider: figma, svc: figma, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4653 + - { id: saas-figma-hosts-s3, name: "Figma hosts s3", host: s3-alpha.figma.com, url: "https://s3-alpha.figma.com/", cat: developer, provider: figma, svc: figma, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4654 + - { id: saas-figma-hosts-figma-desktop, name: "Figma hosts figma desktop", host: desktop.figma.com, url: "https://desktop.figma.com/mac/RELEASE.json", cat: developer, provider: figma, svc: figma, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4655 + - { id: saas-canva-hosts-status, name: "Canva hosts status page", host: www.canvastatus.com, cat: developer, provider: canva, svc: canva, cc: AU, imp: 4, tier: 3, checks: [http] }
4656 + - { id: saas-canva-hosts-developers, name: "Canva hosts developer portal", host: www.canva.dev, cat: developer, provider: canva, svc: canva, cc: AU, imp: 4, tier: 3, checks: [http] }
4657 + - { id: saas-canva-hosts-api, name: "Canva hosts API", host: api.canva.com, url: "https://api.canva.com/rest/v1/users/me", cat: developer, provider: canva, svc: canva, cc: AU, imp: 4, tier: 3, checks: [http, dns] }
4658 + - { id: saas-canva-hosts-static, name: "Canva hosts static assets", host: static.canva.com, url: "https://static.canva.com/", cat: developer, provider: canva, svc: canva, cc: AU, imp: 4, tier: 3, checks: [http, dns] }
4659 + - { id: saas-canva-hosts-media, name: "Canva hosts media", host: media.canva.com, url: "https://media.canva.com/", cat: developer, provider: canva, svc: canva, cc: AU, imp: 4, tier: 3, checks: [http, dns] }
4660 + - { id: saas-canva-hosts-canva-site, name: "Canva hosts canva site", host: canva.site, url: "https://canva.site/", cat: developer, provider: canva, svc: canva, cc: AU, imp: 4, tier: 3, checks: [http, dns] }
4661 + - { id: saas-canva-hosts-affinity, name: "Canva hosts affinity", host: affinity.serif.com, cat: developer, provider: canva, svc: canva, cc: AU, imp: 4, tier: 3, checks: [http] }
4662 + - { id: saas-canva-hosts-affinity-store, name: "Canva hosts affinity store", host: store.serif.com, cat: developer, provider: canva, svc: canva, cc: AU, imp: 4, tier: 3, checks: [http] }
4663 + - { id: saas-canva-hosts-flourish, name: "Canva hosts flourish", host: flourish.studio, cat: developer, provider: canva, svc: canva, cc: AU, imp: 4, tier: 3, checks: [http] }
4664 + - { id: saas-canva-hosts-flourish-public, name: "Canva hosts flourish public", host: public.flourish.studio, url: "https://public.flourish.studio/", cat: developer, provider: canva, svc: canva, cc: AU, imp: 4, tier: 3, checks: [http, dns] }
4665 + - { id: saas-lucid, name: "Lucid Software", host: lucid.co, cat: developer, provider: lucid, svc: lucid, cc: US, imp: 3, tier: 4, checks: [http] }
4666 + - { id: saas-lucid-status, name: "Lucid Software status page", host: status.lucid.co, cat: developer, provider: lucid, svc: lucid, cc: US, imp: 3, tier: 4, checks: [http] }
4667 + - { id: saas-lucid-lucidchart, name: "Lucid Software lucidchart", host: www.lucidchart.com, cat: developer, provider: lucid, svc: lucid, cc: US, imp: 3, tier: 4, checks: [http] }
4668 + - { id: saas-lucid-lucidspark, name: "Lucid Software lucidspark", host: lucidspark.com, cat: developer, provider: lucid, svc: lucid, cc: US, imp: 3, tier: 4, checks: [http] }
4669 + - { id: saas-lucid-lucidscale, name: "Lucid Software lucidscale", host: lucidscale.com, cat: developer, provider: lucid, svc: lucid, cc: US, imp: 3, tier: 4, checks: [http] }
4670 + - { id: saas-lucid-help, name: "Lucid Software help centre", host: help.lucid.co, cat: developer, provider: lucid, svc: lucid, cc: US, imp: 3, tier: 4, checks: [http] }
4671 + - { id: saas-lucid-developer, name: "Lucid Software developer portal", host: developer.lucid.co, cat: developer, provider: lucid, svc: lucid, cc: US, imp: 3, tier: 4, checks: [http] }
4672 + - { id: saas-lucid-api, name: "Lucid Software API", host: api.lucid.co, url: "https://api.lucid.co/", cat: developer, provider: lucid, svc: lucid, cc: US, imp: 3, tier: 4, checks: [http] }
4673 + - { id: saas-lucid-community, name: "Lucid Software community", host: community.lucid.co, cat: developer, provider: lucid, svc: lucid, cc: US, imp: 3, tier: 4, checks: [http] }
4674 + - { id: saas-lucid-training, name: "Lucid Software training", host: training.lucid.co, cat: developer, provider: lucid, svc: lucid, cc: US, imp: 3, tier: 4, checks: [http] }
4675 + - { id: saas-adobe-hosts-status, name: "Adobe hosts status page", host: status.adobe.com, cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http] }
4676 + - { id: saas-adobe-hosts-cc-app, name: "Adobe hosts cc app", host: creativecloud.adobe.com, url: "https://creativecloud.adobe.com/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4677 + - { id: saas-adobe-hosts-cc-assets, name: "Adobe hosts cc assets", host: assets.adobe.com, url: "https://assets.adobe.com/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4678 + - { id: saas-adobe-hosts-cc-libraries, name: "Adobe hosts cc libraries", host: cc-api-storage.adobe.io, url: "https://cc-api-storage.adobe.io/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4679 + - { id: saas-adobe-hosts-adobe-io, name: "Adobe hosts adobe io", host: developer.adobe.com, cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http] }
4680 + - { id: saas-adobe-hosts-adobe-ims, name: "Adobe hosts adobe ims", host: ims-na1.adobelogin.com, url: "https://ims-na1.adobelogin.com/ims/status", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4681 + - { id: saas-adobe-hosts-adobe-login, name: "Adobe hosts adobe login", host: auth.services.adobe.com, url: "https://auth.services.adobe.com/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4682 + - { id: saas-adobe-hosts-adobe-account, name: "Adobe hosts adobe account", host: account.adobe.com, url: "https://account.adobe.com/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4683 + - { id: saas-adobe-hosts-adobe-community, name: "Adobe hosts adobe community", host: community.adobe.com, cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http] }
4684 + - { id: saas-adobe-hosts-adobe-exchange, name: "Adobe hosts adobe exchange", host: exchange.adobe.com, cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http] }
4685 + - { id: saas-adobe-hosts-adobe-fonts, name: "Adobe hosts adobe fonts", host: fonts.adobe.com, cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http] }
4686 + - { id: saas-adobe-hosts-adobe-stock, name: "Adobe hosts adobe stock", host: stock.adobe.com, cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http] }
4687 + - { id: saas-adobe-hosts-adobe-stock-api, name: "Adobe hosts adobe stock api", host: stock.adobe.io, url: "https://stock.adobe.io/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4688 + - { id: saas-adobe-hosts-adobe-behance-api, name: "Adobe hosts adobe behance api", host: api.behance.net, url: "https://api.behance.net/v2/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4689 + - { id: saas-adobe-hosts-adobe-express, name: "Adobe hosts adobe express", host: new.express.adobe.com, url: "https://new.express.adobe.com/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4690 + - { id: saas-adobe-hosts-adobe-acrobat, name: "Adobe hosts adobe acrobat", host: acrobat.adobe.com, url: "https://acrobat.adobe.com/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4691 + - { id: saas-adobe-hosts-adobe-sign-app, name: "Adobe hosts adobe sign app", host: secure.na1.adobesign.com, url: "https://secure.na1.adobesign.com/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4692 + - { id: saas-adobe-hosts-adobe-sign-api, name: "Adobe hosts adobe sign api", host: api.na1.adobesign.com, url: "https://api.na1.adobesign.com/api/rest/v6/baseUris", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4693 + - { id: saas-adobe-hosts-adobe-sign-eu, name: "Adobe hosts adobe sign eu", host: secure.eu1.adobesign.com, url: "https://secure.eu1.adobesign.com/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4694 + - { id: saas-adobe-hosts-adobe-photoshop-web, name: "Adobe hosts adobe photoshop web", host: photoshop.adobe.com, url: "https://photoshop.adobe.com/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4695 + - { id: saas-adobe-hosts-adobe-lightroom, name: "Adobe hosts adobe lightroom", host: lightroom.adobe.com, url: "https://lightroom.adobe.com/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4696 + - { id: saas-adobe-hosts-adobe-frame, name: "Adobe hosts adobe frame", host: frame.io, cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http] }
4697 + - { id: saas-adobe-hosts-adobe-frame-status, name: "Adobe hosts adobe frame status", host: status.frame.io, cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http] }
4698 + - { id: saas-adobe-hosts-adobe-frame-api, name: "Adobe hosts adobe frame api", host: api.frame.io, url: "https://api.frame.io/v2/me", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4699 + - { id: saas-adobe-hosts-adobe-frame-app, name: "Adobe hosts adobe frame app", host: app.frame.io, url: "https://app.frame.io/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4700 + - { id: saas-adobe-hosts-adobe-portfolio, name: "Adobe hosts adobe portfolio", host: portfolio.adobe.com, cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http] }
4701 + - { id: saas-adobe-hosts-adobe-color, name: "Adobe hosts adobe color", host: color.adobe.com, cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http] }
4702 + - { id: saas-adobe-hosts-adobe-podcast, name: "Adobe hosts adobe podcast", host: podcast.adobe.com, cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http] }
4703 + - { id: saas-adobe-hosts-adobe-firefly-api, name: "Adobe hosts adobe firefly api", host: firefly-api.adobe.io, url: "https://firefly-api.adobe.io/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4704 + - { id: saas-adobe-hosts-adobe-experience-cloud, name: "Adobe hosts adobe experience cloud", host: experience.adobe.com, url: "https://experience.adobe.com/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4705 + - { id: saas-adobe-hosts-adobe-experience-league, name: "Adobe hosts adobe experience league", host: experienceleague.adobe.com, cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http] }
4706 + - { id: saas-adobe-hosts-adobe-analytics-api, name: "Adobe hosts adobe analytics api", host: analytics.adobe.io, url: "https://analytics.adobe.io/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4707 + - { id: saas-adobe-hosts-adobe-marketo-app, name: "Adobe hosts adobe marketo app", host: app-sjst.marketo.com, url: "https://app-sjst.marketo.com/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4708 + - { id: saas-adobe-hosts-adobe-marketo-api, name: "Adobe hosts adobe marketo api", host: marketo.com, url: "https://marketo.com/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4709 + - { id: saas-adobe-hosts-adobe-magento-repo, name: "Adobe hosts adobe magento repo", host: repo.magento.com, url: "https://repo.magento.com/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4710 + - { id: saas-adobe-hosts-adobe-magento-marketplace, name: "Adobe hosts adobe magento marketplace", host: commercemarketplace.adobe.com, cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http] }
4711 + - { id: saas-adobe-hosts-adobe-workfront-legacy, name: "Adobe hosts adobe workfront legacy", host: workfront.com, url: "https://workfront.com/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4712 + - { id: saas-adobe-hosts-adobe-dc-api, name: "Adobe hosts adobe dc api", host: pdf-services.adobe.io, url: "https://pdf-services.adobe.io/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4713 + - { id: saas-adobe-hosts-adobe-dc-embed, name: "Adobe hosts adobe dc embed", host: documentcloud.adobe.com, url: "https://documentcloud.adobe.com/view-sdk/main.js", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4714 + - { id: saas-adobe-hosts-adobe-reader-dl, name: "Adobe hosts adobe reader dl", host: get.adobe.com, url: "https://get.adobe.com/reader/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4715 + - { id: saas-adobe-hosts-adobe-ccm, name: "Adobe hosts adobe ccm", host: ccmdls.adobe.com, url: "https://ccmdls.adobe.com/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4716 + - { id: saas-adobe-hosts-adobe-ardownload, name: "Adobe hosts adobe ardownload", host: ardownload2.adobe.com, url: "https://ardownload2.adobe.com/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4717 + - { id: saas-adobe-hosts-adobe-armmf, name: "Adobe hosts adobe armmf", host: armmf.adobe.com, url: "https://armmf.adobe.com/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4718 + - { id: saas-adobe-hosts-adobe-lcs, name: "Adobe hosts adobe lcs", host: lcs-cops.adobe.io, url: "https://lcs-cops.adobe.io/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4719 + - { id: saas-adobe-hosts-adobe-cai, name: "Adobe hosts adobe cai", host: contentauthenticity.org, cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http] }
4720 + - { id: saas-adobe-hosts-adobe-c2pa, name: "Adobe hosts adobe c2pa", host: c2pa.org, cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http] }
4721 + - { id: saas-adobe-hosts-adobe-c2pa-spec, name: "Adobe hosts adobe c2pa spec", host: spec.c2pa.org, cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http] }
4722 + - { id: saas-adobe-hosts-adobe-cai-verify, name: "Adobe hosts adobe cai verify", host: verify.contentauthenticity.org, cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http] }
4723 + - { id: saas-adobe-hosts-adobe-blog, name: "Adobe hosts adobe blog", host: blog.adobe.com, cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http] }
4724 + - { id: saas-adobe-hosts-adobe-news, name: "Adobe hosts adobe news", host: news.adobe.com, cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http] }
4725 + - { id: saas-adobe-hosts-adobe-summit, name: "Adobe hosts adobe summit", host: summit.adobe.com, cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http] }
4726 + - { id: saas-adobe-hosts-adobe-careers, name: "Adobe hosts adobe careers", host: careers.adobe.com, cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http] }
4727 + - { id: saas-adobe-hosts-adobe-research, name: "Adobe hosts adobe research", host: research.adobe.com, cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http] }
4728 + - { id: saas-adobe-hosts-adobe-opensource, name: "Adobe hosts adobe opensource", host: opensource.adobe.com, cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http] }
4729 + - { id: saas-adobe-hosts-adobe-spectrum, name: "Adobe hosts adobe spectrum", host: spectrum.adobe.com, cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http] }
4730 + - { id: saas-adobe-hosts-adobe-react-spectrum, name: "Adobe hosts adobe react spectrum", host: react-spectrum.adobe.com, cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http] }
4731 + - { id: saas-adobe-hosts-adobe-eds, name: "Adobe hosts adobe eds", host: www.aem.live, cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http] }
4732 + - { id: saas-adobe-hosts-adobe-eds-hlx, name: "Adobe hosts adobe eds hlx", host: hlx.live, url: "https://hlx.live/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4733 + - { id: saas-adobe-hosts-adobe-eds-admin, name: "Adobe hosts adobe eds admin", host: admin.hlx.page, url: "https://admin.hlx.page/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4734 + - { id: saas-adobe-hosts-adobe-eds-rum, name: "Adobe hosts adobe eds rum", host: rum.hlx.page, url: "https://rum.hlx.page/", cat: developer, provider: adobe, cc: US, imp: 4, tier: 3, checks: [http, dns] }
4735 + - { id: saas-autodesk, name: "Autodesk", host: www.autodesk.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4736 + - { id: saas-autodesk-status, name: "Autodesk status page", host: health.autodesk.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4737 + - { id: saas-autodesk-aps, name: "Autodesk aps", host: aps.autodesk.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4738 + - { id: saas-autodesk-aps-api, name: "Autodesk aps api", host: developer.api.autodesk.com, url: "https://developer.api.autodesk.com/authentication/v2/authorize", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4739 + - { id: saas-autodesk-forge, name: "Autodesk forge", host: forge.autodesk.com, url: "https://forge.autodesk.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4740 + - { id: saas-autodesk-acc, name: "Autodesk acc", host: construction.autodesk.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4741 + - { id: saas-autodesk-acc-app, name: "Autodesk acc app", host: acc.autodesk.com, url: "https://acc.autodesk.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4742 + - { id: saas-autodesk-fusion-app, name: "Autodesk fusion app", host: fusion.online.autodesk.com, url: "https://fusion.online.autodesk.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4743 + - { id: saas-autodesk-tinkercad, name: "Autodesk tinkercad", host: www.tinkercad.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4744 + - { id: saas-autodesk-knowledge, name: "Autodesk knowledge", host: knowledge.autodesk.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4745 + - { id: saas-autodesk-help, name: "Autodesk help centre", host: help.autodesk.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4746 + - { id: saas-autodesk-forums, name: "Autodesk forum", host: forums.autodesk.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4747 + - { id: saas-autodesk-profile, name: "Autodesk profile", host: profile.autodesk.com, url: "https://profile.autodesk.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4748 + - { id: saas-autodesk-download, name: "Autodesk downloads", host: download.autodesk.com, url: "https://download.autodesk.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4749 + - { id: saas-autodesk-autocad-web, name: "Autodesk autocad web", host: web.autocad.com, url: "https://web.autocad.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4750 + - { id: saas-autodesk-bim360-app, name: "Autodesk bim360 app", host: b360.autodesk.com, url: "https://b360.autodesk.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4751 + - { id: saas-autodesk-docs-acc, name: "Autodesk docs acc", host: docs.b360.autodesk.com, url: "https://docs.b360.autodesk.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4752 + - { id: saas-autodesk-shotgrid-app, name: "Autodesk shotgrid app", host: shotgunstudio.com, url: "https://shotgunstudio.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4753 + - { id: saas-autodesk-formit, name: "Autodesk formit", host: formit.autodesk.com, url: "https://formit.autodesk.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4754 + - { id: saas-autodesk-dynamo, name: "Autodesk dynamo", host: dynamobim.org, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4755 + - { id: saas-autodesk-dynamo-forum, name: "Autodesk dynamo forum", host: forum.dynamobim.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4756 + - { id: saas-autodesk-sketchbook, name: "Autodesk sketchbook", host: www.sketchbook.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4757 + - { id: saas-autodesk-meshmixer, name: "Autodesk meshmixer", host: www.meshmixer.com, url: "https://www.meshmixer.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4758 + - { id: saas-autodesk-instructables, name: "Autodesk instructables", host: www.instructables.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4759 + - { id: saas-autodesk-pixlr, name: "Autodesk pixlr", host: pixlr.com, url: "https://pixlr.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4760 + - { id: saas-autodesk-bentley, name: "Autodesk bentley", host: www.bentley.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4761 + - { id: saas-autodesk-bentley-status, name: "Autodesk bentley status", host: status.bentley.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4762 + - { id: saas-autodesk-bentley-communities, name: "Autodesk bentley communities", host: communities.bentley.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4763 + - { id: saas-autodesk-bentley-developer, name: "Autodesk bentley developer", host: developer.bentley.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4764 + - { id: saas-autodesk-bentley-itwin, name: "Autodesk bentley itwin", host: www.itwinjs.org, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4765 + - { id: saas-autodesk-bentley-api, name: "Autodesk bentley api", host: api.bentley.com, url: "https://api.bentley.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4766 + - { id: saas-autodesk-bentley-ims, name: "Autodesk bentley ims", host: ims.bentley.com, url: "https://ims.bentley.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4767 + - { id: saas-autodesk-bentley-connect, name: "Autodesk bentley connect", host: connect.bentley.com, url: "https://connect.bentley.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4768 + - { id: saas-autodesk-bentley-softwaredownloads, name: "Autodesk bentley softwaredownloads", host: softwaredownloads.bentley.com, url: "https://softwaredownloads.bentley.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4769 + - { id: saas-autodesk-trimble, name: "Autodesk trimble", host: www.trimble.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4770 + - { id: saas-autodesk-trimble-sketchup, name: "Autodesk trimble sketchup", host: www.sketchup.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4771 + - { id: saas-autodesk-trimble-sketchup-app, name: "Autodesk trimble sketchup app", host: app.sketchup.com, url: "https://app.sketchup.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4772 + - { id: saas-autodesk-trimble-3dwarehouse, name: "Autodesk trimble 3dwarehouse", host: 3dwarehouse.sketchup.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4773 + - { id: saas-autodesk-trimble-extensions, name: "Autodesk trimble extensions", host: extensions.sketchup.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4774 + - { id: saas-autodesk-trimble-tekla, name: "Autodesk trimble tekla", host: www.tekla.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4775 + - { id: saas-autodesk-trimble-connect, name: "Autodesk trimble connect", host: connect.trimble.com, url: "https://connect.trimble.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4776 + - { id: saas-autodesk-trimble-id, name: "Autodesk trimble id", host: id.trimble.com, url: "https://id.trimble.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4777 + - { id: saas-autodesk-trimble-developer, name: "Autodesk trimble developer", host: developer.trimble.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4778 + - { id: saas-autodesk-trimble-api, name: "Autodesk trimble api", host: cloud.api.trimble.com, url: "https://cloud.api.trimble.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4779 + - { id: saas-autodesk-nemetschek, name: "Autodesk nemetschek", host: www.nemetschek.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4780 + - { id: saas-autodesk-graphisoft, name: "Autodesk graphisoft", host: graphisoft.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4781 + - { id: saas-autodesk-graphisoft-community, name: "Autodesk graphisoft community", host: community.graphisoft.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4782 + - { id: saas-autodesk-graphisoft-id, name: "Autodesk graphisoft id", host: graphisoftid.graphisoft.com, url: "https://graphisoftid.graphisoft.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4783 + - { id: saas-autodesk-vectorworks, name: "Autodesk vectorworks", host: www.vectorworks.net, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4784 + - { id: saas-autodesk-vectorworks-status, name: "Autodesk vectorworks status", host: status.vectorworks.net, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4785 + - { id: saas-autodesk-vectorworks-cloud, name: "Autodesk vectorworks cloud", host: cloud.vectorworks.net, url: "https://cloud.vectorworks.net/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4786 + - { id: saas-autodesk-vectorworks-forum, name: "Autodesk vectorworks forum", host: forum.vectorworks.net, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4787 + - { id: saas-autodesk-allplan, name: "Autodesk allplan", host: www.allplan.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4788 + - { id: saas-autodesk-allplan-status, name: "Autodesk allplan status", host: status.allplan.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4789 + - { id: saas-autodesk-bluebeam, name: "Autodesk bluebeam", host: www.bluebeam.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4790 + - { id: saas-autodesk-bluebeam-status, name: "Autodesk bluebeam status", host: status.bluebeam.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4791 + - { id: saas-autodesk-bluebeam-support, name: "Autodesk bluebeam support", host: support.bluebeam.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4792 + - { id: saas-autodesk-bluebeam-studio, name: "Autodesk bluebeam studio", host: studio.bluebeam.com, url: "https://studio.bluebeam.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4793 + - { id: saas-autodesk-solibri, name: "Autodesk solibri", host: www.solibri.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4794 + - { id: saas-autodesk-dtwin, name: "Autodesk dtwin", host: www.dtwin.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4795 + - { id: saas-autodesk-ptc, name: "Autodesk ptc", host: www.ptc.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4796 + - { id: saas-autodesk-ptc-status, name: "Autodesk ptc status", host: status.ptc.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4797 + - { id: saas-autodesk-ptc-support, name: "Autodesk ptc support", host: support.ptc.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4798 + - { id: saas-autodesk-ptc-community, name: "Autodesk ptc community", host: community.ptc.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4799 + - { id: saas-autodesk-ptc-onshape, name: "Autodesk ptc onshape", host: www.onshape.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4800 + - { id: saas-autodesk-ptc-onshape-status, name: "Autodesk ptc onshape status", host: status.onshape.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4801 + - { id: saas-autodesk-ptc-onshape-cad, name: "Autodesk ptc onshape cad", host: cad.onshape.com, url: "https://cad.onshape.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4802 + - { id: saas-autodesk-ptc-onshape-forum, name: "Autodesk ptc onshape forum", host: forum.onshape.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4803 + - { id: saas-autodesk-ptc-arena, name: "Autodesk ptc arena", host: www.arenasolutions.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4804 + - { id: saas-autodesk-ptc-codebeamer, name: "Autodesk ptc codebeamer", host: codebeamer.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4805 + - { id: saas-autodesk-dassault, name: "Autodesk dassault", host: www.3ds.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4806 + - { id: saas-autodesk-dassault-solidworks-forum, name: "Autodesk dassault solidworks forum", host: forum.solidworks.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4807 + - { id: saas-autodesk-dassault-solidworks-my, name: "Autodesk dassault solidworks my", host: my.solidworks.com, url: "https://my.solidworks.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4808 + - { id: saas-autodesk-dassault-medidata, name: "Autodesk dassault medidata", host: www.medidata.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4809 + - { id: saas-autodesk-dassault-centric, name: "Autodesk dassault centric", host: www.centricsoftware.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4810 + - { id: saas-autodesk-dassault-outscale, name: "Autodesk dassault outscale", host: en.outscale.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4811 + - { id: saas-autodesk-dassault-outscale-status, name: "Autodesk dassault outscale status", host: status.outscale.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4812 + - { id: saas-autodesk-dassault-outscale-api, name: "Autodesk dassault outscale api", host: api.eu-west-2.outscale.com, url: "https://api.eu-west-2.outscale.com/api/v1/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4813 + - { id: saas-autodesk-dassault-outscale-docs, name: "Autodesk dassault outscale docs", host: docs.outscale.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4814 + - { id: saas-autodesk-dassault-draftsight, name: "Autodesk dassault draftsight", host: www.draftsight.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4815 + - { id: saas-autodesk-dassault-grabcad, name: "Autodesk dassault grabcad", host: grabcad.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4816 + - { id: saas-autodesk-siemens-dx, name: "Autodesk siemens dx", host: www.sw.siemens.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4817 + - { id: saas-autodesk-siemens-dx-status, name: "Autodesk siemens dx status", host: status.sw.siemens.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4818 + - { id: saas-autodesk-siemens-dx-support, name: "Autodesk siemens dx support", host: support.sw.siemens.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4819 + - { id: saas-autodesk-siemens-dx-community, name: "Autodesk siemens dx community", host: community.sw.siemens.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4820 + - { id: saas-autodesk-siemens-dx-nx, name: "Autodesk siemens dx nx", host: plm.sw.siemens.com, url: "https://plm.sw.siemens.com/en-US/nx/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4821 + - { id: saas-autodesk-siemens-dx-solidedge, name: "Autodesk siemens dx solidedge", host: solidedge.siemens.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4822 + - { id: saas-autodesk-siemens-dx-mendix, name: "Autodesk siemens dx mendix", host: www.mendix.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4823 + - { id: saas-autodesk-siemens-dx-mendix-status, name: "Autodesk siemens dx mendix status", host: status.mendix.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4824 + - { id: saas-autodesk-siemens-dx-mendix-docs, name: "Autodesk siemens dx mendix docs", host: docs.mendix.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4825 + - { id: saas-autodesk-siemens-dx-mendix-cloud, name: "Autodesk siemens dx mendix cloud", host: sprintr.home.mendix.com, url: "https://sprintr.home.mendix.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4826 + - { id: saas-autodesk-siemens-dx-mendix-marketplace, name: "Autodesk siemens dx mendix marketplace", host: marketplace.mendix.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4827 + - { id: saas-autodesk-siemens-dx-mendix-forum, name: "Autodesk siemens dx mendix forum", host: community.mendix.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4828 + - { id: saas-autodesk-siemens-dx-mendix-cdn, name: "Autodesk siemens dx mendix cdn", host: cdn.mendix.com, url: "https://cdn.mendix.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4829 + - { id: saas-autodesk-siemens-dx-polarion, name: "Autodesk siemens dx polarion", host: polarion.plm.automation.siemens.com, url: "https://polarion.plm.automation.siemens.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4830 + - { id: saas-autodesk-siemens-dx-xcelerator, name: "Autodesk siemens dx xcelerator", host: xcelerator.siemens.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4831 + - { id: saas-autodesk-siemens-dx-mindsphere, name: "Autodesk siemens dx mindsphere", host: siemens.mindsphere.io, url: "https://siemens.mindsphere.io/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4832 + - { id: saas-autodesk-siemens-dx-supplyframe, name: "Autodesk siemens dx supplyframe", host: www.supplyframe.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4833 + - { id: saas-autodesk-siemens-dx-findchips, name: "Autodesk siemens dx findchips", host: www.findchips.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4834 + - { id: saas-autodesk-siemens-dx-partstack, name: "Autodesk siemens dx partstack", host: www.partstack.com, url: "https://www.partstack.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4835 + - { id: saas-autodesk-siemens-dx-altium, name: "Autodesk siemens dx altium", host: www.altium.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4836 + - { id: saas-autodesk-siemens-dx-altium-365, name: "Autodesk siemens dx altium 365", host: altium365.com, url: "https://altium365.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4837 + - { id: saas-autodesk-siemens-dx-altium-status, name: "Autodesk siemens dx altium status", host: status.altium.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4838 + - { id: saas-autodesk-siemens-dx-altium-live, name: "Autodesk siemens dx altium live", host: live.altium.com, url: "https://live.altium.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4839 + - { id: saas-autodesk-siemens-dx-octopart, name: "Autodesk siemens dx octopart", host: octopart.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4840 + - { id: saas-autodesk-siemens-dx-circuitmaker, name: "Autodesk siemens dx circuitmaker", host: circuitmaker.com, url: "https://circuitmaker.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4841 + - { id: saas-autodesk-ansys, name: "Autodesk ansys", host: www.ansys.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4842 + - { id: saas-autodesk-ansys-status, name: "Autodesk ansys status", host: status.ansys.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4843 + - { id: saas-autodesk-ansys-support, name: "Autodesk ansys support", host: support.ansys.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4844 + - { id: saas-autodesk-ansys-forum, name: "Autodesk ansys forum", host: forum.ansys.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4845 + - { id: saas-autodesk-ansys-innovation, name: "Autodesk ansys innovation", host: innovationspace.ansys.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4846 + - { id: saas-autodesk-ansys-download, name: "Autodesk ansys download", host: download.ansys.com, url: "https://download.ansys.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4847 + - { id: saas-autodesk-ansys-developer, name: "Autodesk ansys developer", host: developer.ansys.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4848 + - { id: saas-autodesk-ansys-pyansys, name: "Autodesk ansys pyansys", host: docs.pyansys.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4849 + - { id: saas-autodesk-ansys-store, name: "Autodesk ansys store", host: catalog.ansys.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4850 + - { id: saas-autodesk-ansys-synopsys, name: "Autodesk ansys synopsys", host: www.synopsys.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4851 + - { id: saas-autodesk-synopsys-status, name: "Autodesk synopsys status", host: status.synopsys.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4852 + - { id: saas-autodesk-synopsys-solvnet, name: "Autodesk synopsys solvnet", host: solvnetplus.synopsys.com, url: "https://solvnetplus.synopsys.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4853 + - { id: saas-autodesk-synopsys-blackduck, name: "Autodesk synopsys blackduck", host: www.blackduck.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4854 + - { id: saas-autodesk-blackduck-status, name: "Autodesk blackduck status", host: status.blackduck.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4855 + - { id: saas-autodesk-blackduck-community, name: "Autodesk blackduck community", host: community.blackduck.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4856 + - { id: saas-autodesk-blackduck-docs, name: "Autodesk blackduck docs", host: documentation.blackduck.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4857 + - { id: saas-autodesk-blackduck-detect, name: "Autodesk blackduck detect", host: detect.blackduck.com, url: "https://detect.blackduck.com/detect.sh", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4858 + - { id: saas-autodesk-blackduck-coverity, name: "Autodesk blackduck coverity", host: scan.coverity.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4859 + - { id: saas-autodesk-blackduck-polaris, name: "Autodesk blackduck polaris", host: polaris.blackduck.com, url: "https://polaris.blackduck.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4860 + - { id: saas-autodesk-cadence, name: "Autodesk cadence", host: www.cadence.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4861 + - { id: saas-autodesk-cadence-support, name: "Autodesk cadence support", host: support.cadence.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4862 + - { id: saas-autodesk-cadence-community, name: "Autodesk cadence community", host: community.cadence.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4863 + - { id: saas-autodesk-cadence-downloads, name: "Autodesk cadence downloads", host: downloads.cadence.com, url: "https://downloads.cadence.com/", cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4864 + - { id: saas-autodesk-cadence-orcad, name: "Autodesk cadence orcad", host: www.orcad.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4865 + - { id: saas-autodesk-cadence-openeye, name: "Autodesk cadence openeye", host: www.eyesopen.com, cat: developer, provider: autodesk, svc: autodesk, cc: US, imp: 3, tier: 4, checks: [http] }
4866 + - { id: saas-storage-saas-dropbox-status, name: "Consumer & business cloud storage dropbox status", host: status.dropbox.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4867 + - { id: saas-storage-saas-dropbox-help, name: "Consumer & business cloud storage dropbox help", host: help.dropbox.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4868 + - { id: saas-storage-saas-dropbox-developers, name: "Consumer & business cloud storage dropbox developers", host: www.dropbox.com, url: "https://www.dropbox.com/developers", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4869 + - { id: saas-storage-saas-dropbox-api, name: "Consumer & business cloud storage dropbox api", host: api.dropboxapi.com, url: "https://api.dropboxapi.com/2/check/app", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4870 + - { id: saas-storage-saas-dropbox-content, name: "Consumer & business cloud storage dropbox content", host: content.dropboxapi.com, url: "https://content.dropboxapi.com/2/files/download", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4871 + - { id: saas-storage-saas-dropbox-dl, name: "Consumer & business cloud storage dropbox dl", host: dl.dropboxusercontent.com, url: "https://dl.dropboxusercontent.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4872 + - { id: saas-storage-saas-dropbox-paper, name: "Consumer & business cloud storage dropbox paper", host: paper.dropbox.com, url: "https://paper.dropbox.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4873 + - { id: saas-storage-saas-dropbox-sign, name: "Consumer & business cloud storage dropbox sign", host: sign.dropbox.com, url: "https://sign.dropbox.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4874 + - { id: saas-storage-saas-dropbox-sign-www, name: "Consumer & business cloud storage dropbox sign www", host: www.hellosign.com, url: "https://www.hellosign.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4875 + - { id: saas-storage-saas-dropbox-sign-status, name: "Consumer & business cloud storage dropbox sign status", host: status.hellosign.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4876 + - { id: saas-storage-saas-dropbox-sign-api, name: "Consumer & business cloud storage dropbox sign api", host: api.hellosign.com, url: "https://api.hellosign.com/v3/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4877 + - { id: saas-storage-saas-dropbox-docsend, name: "Consumer & business cloud storage dropbox docsend", host: www.docsend.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4878 + - { id: saas-storage-saas-dropbox-replay, name: "Consumer & business cloud storage dropbox replay", host: replay.dropbox.com, url: "https://replay.dropbox.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4879 + - { id: saas-storage-saas-dropbox-forum, name: "Consumer & business cloud storage dropbox forum", host: www.dropboxforum.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4880 + - { id: saas-storage-saas-dropbox-blog, name: "Consumer & business cloud storage dropbox blog", host: blog.dropbox.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4881 + - { id: saas-storage-saas-dropbox-tech, name: "Consumer & business cloud storage dropbox tech", host: dropbox.tech, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4882 + - { id: saas-storage-saas-box-status, name: "Consumer & business cloud storage box status", host: status.box.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4883 + - { id: saas-storage-saas-box-support, name: "Consumer & business cloud storage box support", host: support.box.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4884 + - { id: saas-storage-saas-box-developer, name: "Consumer & business cloud storage box developer", host: developer.box.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4885 + - { id: saas-storage-saas-box-api, name: "Consumer & business cloud storage box api", host: api.box.com, url: "https://api.box.com/2.0/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4886 + - { id: saas-storage-saas-box-app, name: "Consumer & business cloud storage box app", host: app.box.com, url: "https://app.box.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4887 + - { id: saas-storage-saas-box-account, name: "Consumer & business cloud storage box account", host: account.box.com, url: "https://account.box.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4888 + - { id: saas-storage-saas-box-community, name: "Consumer & business cloud storage box community", host: community.box.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4889 + - { id: saas-storage-saas-box-blog, name: "Consumer & business cloud storage box blog", host: blog.box.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4890 + - { id: saas-storage-saas-box-dl, name: "Consumer & business cloud storage box dl", host: dl.boxcloud.com, url: "https://dl.boxcloud.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4891 + - { id: saas-storage-saas-box-upload, name: "Consumer & business cloud storage box upload", host: upload.box.com, url: "https://upload.box.com/api/2.0/files/content", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4892 + - { id: saas-storage-saas-box-sign, name: "Consumer & business cloud storage box sign", host: www.box.com, url: "https://www.box.com/esignature", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4893 + - { id: saas-storage-saas-box-university, name: "Consumer & business cloud storage box university", host: university.box.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4894 + - { id: saas-storage-saas-pcloud, name: "Consumer & business cloud storage pcloud", host: www.pcloud.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4895 + - { id: saas-storage-saas-pcloud-api, name: "Consumer & business cloud storage pcloud api", host: api.pcloud.com, url: "https://api.pcloud.com/getapiserver", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4896 + - { id: saas-storage-saas-pcloud-eapi, name: "Consumer & business cloud storage pcloud eapi", host: eapi.pcloud.com, url: "https://eapi.pcloud.com/getapiserver", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4897 + - { id: saas-storage-saas-pcloud-my, name: "Consumer & business cloud storage pcloud my", host: my.pcloud.com, url: "https://my.pcloud.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4898 + - { id: saas-storage-saas-pcloud-e, name: "Consumer & business cloud storage pcloud e", host: e.pcloud.com, url: "https://e.pcloud.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4899 + - { id: saas-storage-saas-pcloud-docs, name: "Consumer & business cloud storage pcloud docs", host: docs.pcloud.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4900 + - { id: saas-storage-saas-pcloud-transfer, name: "Consumer & business cloud storage pcloud transfer", host: transfer.pcloud.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4901 + - { id: saas-storage-saas-sync-com, name: "Consumer & business cloud storage sync com", host: www.sync.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4902 + - { id: saas-storage-saas-sync-status, name: "Consumer & business cloud storage sync status", host: status.sync.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4903 + - { id: saas-storage-saas-sync-cp, name: "Consumer & business cloud storage sync cp", host: cp.sync.com, url: "https://cp.sync.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4904 + - { id: saas-storage-saas-sync-ln, name: "Consumer & business cloud storage sync ln", host: ln5.sync.com, url: "https://ln5.sync.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4905 + - { id: saas-storage-saas-egnyte, name: "Consumer & business cloud storage egnyte", host: www.egnyte.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4906 + - { id: saas-storage-saas-egnyte-status, name: "Consumer & business cloud storage egnyte status", host: status.egnyte.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4907 + - { id: saas-storage-saas-egnyte-helpdesk, name: "Consumer & business cloud storage egnyte helpdesk", host: helpdesk.egnyte.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4908 + - { id: saas-storage-saas-egnyte-developers, name: "Consumer & business cloud storage egnyte developers", host: developers.egnyte.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4909 + - { id: saas-storage-saas-egnyte-community, name: "Consumer & business cloud storage egnyte community", host: community.egnyte.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4910 + - { id: saas-storage-saas-egnyte-app, name: "Consumer & business cloud storage egnyte app", host: egnyte.com, url: "https://egnyte.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4911 + - { id: saas-storage-saas-sharefile, name: "Consumer & business cloud storage sharefile", host: www.sharefile.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4912 + - { id: saas-storage-saas-sharefile-status, name: "Consumer & business cloud storage sharefile status", host: status.sharefile.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4913 + - { id: saas-storage-saas-sharefile-support, name: "Consumer & business cloud storage sharefile support", host: support.sharefile.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4914 + - { id: saas-storage-saas-sharefile-api, name: "Consumer & business cloud storage sharefile api", host: api.sharefile.com, url: "https://api.sharefile.com/sf/v3/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4915 + - { id: saas-storage-saas-sharefile-app, name: "Consumer & business cloud storage sharefile app", host: sharefile.com, url: "https://sharefile.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4916 + - { id: saas-storage-saas-sharefile-secure, name: "Consumer & business cloud storage sharefile secure", host: secure.sharefile.com, url: "https://secure.sharefile.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4917 + - { id: saas-storage-saas-mega, name: "Consumer & business cloud storage mega", host: mega.io, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4918 + - { id: saas-storage-saas-mega-nz, name: "Consumer & business cloud storage mega nz", host: mega.nz, url: "https://mega.nz/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4919 + - { id: saas-storage-saas-mega-api, name: "Consumer & business cloud storage mega api", host: g.api.mega.co.nz, url: "https://g.api.mega.co.nz/cs", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4920 + - { id: saas-storage-saas-mega-help, name: "Consumer & business cloud storage mega help", host: help.mega.io, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4921 + - { id: saas-storage-saas-mega-blog, name: "Consumer & business cloud storage mega blog", host: blog.mega.io, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4922 + - { id: saas-storage-saas-mediafire, name: "Consumer & business cloud storage mediafire", host: www.mediafire.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4923 + - { id: saas-storage-saas-mediafire-status, name: "Consumer & business cloud storage mediafire status", host: status.mediafire.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4924 + - { id: saas-storage-saas-icedrive, name: "Consumer & business cloud storage icedrive", host: icedrive.net, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4925 + - { id: saas-storage-saas-internxt, name: "Consumer & business cloud storage internxt", host: internxt.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4926 + - { id: saas-storage-saas-internxt-drive, name: "Consumer & business cloud storage internxt drive", host: drive.internxt.com, url: "https://drive.internxt.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4927 + - { id: saas-storage-saas-filen, name: "Consumer & business cloud storage filen", host: filen.io, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4928 + - { id: saas-storage-saas-filen-status, name: "Consumer & business cloud storage filen status", host: status.filen.io, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4929 + - { id: saas-storage-saas-filen-app, name: "Consumer & business cloud storage filen app", host: app.filen.io, url: "https://app.filen.io/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4930 + - { id: saas-storage-saas-filen-gateway, name: "Consumer & business cloud storage filen gateway", host: gateway.filen.io, url: "https://gateway.filen.io/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4931 + - { id: saas-storage-saas-koofr, name: "Consumer & business cloud storage koofr", host: koofr.eu, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4932 + - { id: saas-storage-saas-koofr-app, name: "Consumer & business cloud storage koofr app", host: app.koofr.net, url: "https://app.koofr.net/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4933 + - { id: saas-storage-saas-jottacloud, name: "Consumer & business cloud storage jottacloud", host: jottacloud.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4934 + - { id: saas-storage-saas-jottacloud-status, name: "Consumer & business cloud storage jottacloud status", host: status.jottacloud.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4935 + - { id: saas-storage-saas-jottacloud-www, name: "Consumer & business cloud storage jottacloud www", host: www.jottacloud.com, url: "https://www.jottacloud.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4936 + - { id: saas-storage-saas-tresorit, name: "Consumer & business cloud storage tresorit", host: tresorit.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4937 + - { id: saas-storage-saas-tresorit-status, name: "Consumer & business cloud storage tresorit status", host: status.tresorit.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4938 + - { id: saas-storage-saas-tresorit-web, name: "Consumer & business cloud storage tresorit web", host: web.tresorit.com, url: "https://web.tresorit.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4939 + - { id: saas-storage-saas-tresorit-support, name: "Consumer & business cloud storage tresorit support", host: support.tresorit.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4940 + - { id: saas-storage-saas-nordlocker, name: "Consumer & business cloud storage nordlocker", host: nordlocker.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4941 + - { id: saas-storage-saas-nextcloud, name: "Consumer & business cloud storage nextcloud", host: nextcloud.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4942 + - { id: saas-storage-saas-nextcloud-status, name: "Consumer & business cloud storage nextcloud status", host: status.nextcloud.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4943 + - { id: saas-storage-saas-nextcloud-download, name: "Consumer & business cloud storage nextcloud download", host: download.nextcloud.com, url: "https://download.nextcloud.com/server/releases/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4944 + - { id: saas-storage-saas-nextcloud-apps, name: "Consumer & business cloud storage nextcloud apps", host: apps.nextcloud.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4945 + - { id: saas-storage-saas-nextcloud-docs, name: "Consumer & business cloud storage nextcloud docs", host: docs.nextcloud.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4946 + - { id: saas-storage-saas-nextcloud-help, name: "Consumer & business cloud storage nextcloud help", host: help.nextcloud.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4947 + - { id: saas-storage-saas-nextcloud-updates, name: "Consumer & business cloud storage nextcloud updates", host: updates.nextcloud.com, url: "https://updates.nextcloud.com/updater_server/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4948 + - { id: saas-storage-saas-nextcloud-try, name: "Consumer & business cloud storage nextcloud try", host: try.nextcloud.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4949 + - { id: saas-storage-saas-nextcloud-portal, name: "Consumer & business cloud storage nextcloud portal", host: portal.nextcloud.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4950 + - { id: saas-storage-saas-owncloud, name: "Consumer & business cloud storage owncloud", host: owncloud.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4951 + - { id: saas-storage-saas-owncloud-download, name: "Consumer & business cloud storage owncloud download", host: download.owncloud.com, url: "https://download.owncloud.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4952 + - { id: saas-storage-saas-owncloud-docs, name: "Consumer & business cloud storage owncloud docs", host: doc.owncloud.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4953 + - { id: saas-storage-saas-owncloud-central, name: "Consumer & business cloud storage owncloud central", host: central.owncloud.org, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4954 + - { id: saas-storage-saas-owncloud-marketplace, name: "Consumer & business cloud storage owncloud marketplace", host: marketplace.owncloud.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4955 + - { id: saas-storage-saas-owncloud-kiteworks, name: "Consumer & business cloud storage owncloud kiteworks", host: www.kiteworks.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4956 + - { id: saas-storage-saas-seafile, name: "Consumer & business cloud storage seafile", host: www.seafile.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4957 + - { id: saas-storage-saas-seafile-download, name: "Consumer & business cloud storage seafile download", host: download.seadrive.org, url: "https://download.seadrive.org/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4958 + - { id: saas-storage-saas-seafile-manual, name: "Consumer & business cloud storage seafile manual", host: manual.seafile.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4959 + - { id: saas-storage-saas-seafile-forum, name: "Consumer & business cloud storage seafile forum", host: forum.seafile.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4960 + - { id: saas-storage-saas-seafile-demo, name: "Consumer & business cloud storage seafile demo", host: demo.seafile.com, url: "https://demo.seafile.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4961 + - { id: saas-storage-saas-syncthing, name: "Consumer & business cloud storage syncthing", host: syncthing.net, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4962 + - { id: saas-storage-saas-syncthing-forum, name: "Consumer & business cloud storage syncthing forum", host: forum.syncthing.net, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4963 + - { id: saas-storage-saas-syncthing-docs, name: "Consumer & business cloud storage syncthing docs", host: docs.syncthing.net, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4964 + - { id: saas-storage-saas-syncthing-relays, name: "Consumer & business cloud storage syncthing relays", host: relays.syncthing.net, url: "https://relays.syncthing.net/endpoint", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4965 + - { id: saas-storage-saas-syncthing-upgrades, name: "Consumer & business cloud storage syncthing upgrades", host: upgrades.syncthing.net, url: "https://upgrades.syncthing.net/meta.json", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4966 + - { id: saas-storage-saas-syncthing-apt, name: "Consumer & business cloud storage syncthing apt", host: apt.syncthing.net, url: "https://apt.syncthing.net/dists/syncthing/Release", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4967 + - { id: saas-storage-saas-resilio, name: "Consumer & business cloud storage resilio", host: www.resilio.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4968 + - { id: saas-storage-saas-resilio-help, name: "Consumer & business cloud storage resilio help", host: help.resilio.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4969 + - { id: saas-storage-saas-resilio-download, name: "Consumer & business cloud storage resilio download", host: download-cdn.resilio.com, url: "https://download-cdn.resilio.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4970 + - { id: saas-storage-saas-rclone, name: "Consumer & business cloud storage rclone", host: rclone.org, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4971 + - { id: saas-storage-saas-rclone-downloads, name: "Consumer & business cloud storage rclone downloads", host: downloads.rclone.org, url: "https://downloads.rclone.org/version.txt", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4972 + - { id: saas-storage-saas-rclone-forum, name: "Consumer & business cloud storage rclone forum", host: forum.rclone.org, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4973 + - { id: saas-storage-saas-rclone-beta, name: "Consumer & business cloud storage rclone beta", host: beta.rclone.org, url: "https://beta.rclone.org/version.txt", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4974 + - { id: saas-storage-saas-cyberduck, name: "Consumer & business cloud storage cyberduck", host: cyberduck.io, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4975 + - { id: saas-storage-saas-cyberduck-update, name: "Consumer & business cloud storage cyberduck update", host: version.cyberduck.io, url: "https://version.cyberduck.io/changelog.rss", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4976 + - { id: saas-storage-saas-mountain-duck, name: "Consumer & business cloud storage mountain duck", host: mountainduck.io, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4977 + - { id: saas-storage-saas-filezilla, name: "Consumer & business cloud storage filezilla", host: filezilla-project.org, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4978 + - { id: saas-storage-saas-filezilla-download, name: "Consumer & business cloud storage filezilla download", host: download.filezilla-project.org, url: "https://download.filezilla-project.org/client/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4979 + - { id: saas-storage-saas-winscp, name: "Consumer & business cloud storage winscp", host: winscp.net, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4980 + - { id: saas-storage-saas-transmit, name: "Consumer & business cloud storage transmit", host: panic.com, url: "https://panic.com/transmit/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4981 + - { id: saas-storage-saas-forklift, name: "Consumer & business cloud storage forklift", host: binarynights.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4982 + - { id: saas-storage-saas-expandrive, name: "Consumer & business cloud storage expandrive", host: www.expandrive.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4983 + - { id: saas-storage-saas-goodsync, name: "Consumer & business cloud storage goodsync", host: www.goodsync.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4984 + - { id: saas-storage-saas-freefilesync, name: "Consumer & business cloud storage freefilesync", host: freefilesync.org, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4985 + - { id: saas-storage-saas-duplicati, name: "Consumer & business cloud storage duplicati", host: www.duplicati.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4986 + - { id: saas-storage-saas-duplicati-updates, name: "Consumer & business cloud storage duplicati updates", host: updates.duplicati.com, url: "https://updates.duplicati.com/beta/latest.manifest", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4987 + - { id: saas-storage-saas-restic, name: "Consumer & business cloud storage restic", host: restic.net, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4988 + - { id: saas-storage-saas-borg, name: "Consumer & business cloud storage borg", host: www.borgbackup.org, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4989 + - { id: saas-storage-saas-borg-docs, name: "Consumer & business cloud storage borg docs", host: borgbackup.readthedocs.io, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4990 + - { id: saas-storage-saas-borgbase, name: "Consumer & business cloud storage borgbase", host: www.borgbase.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4991 + - { id: saas-storage-saas-borgbase-status, name: "Consumer & business cloud storage borgbase status", host: status.borgbase.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4992 + - { id: saas-storage-saas-kopia, name: "Consumer & business cloud storage kopia", host: kopia.io, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4993 + - { id: saas-storage-saas-duplicacy, name: "Consumer & business cloud storage duplicacy", host: duplicacy.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4994 + - { id: saas-storage-saas-rsync-net, name: "Consumer & business cloud storage rsync net", host: www.rsync.net, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4995 + - { id: saas-storage-saas-arq, name: "Consumer & business cloud storage arq", host: www.arqbackup.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4996 + - { id: saas-storage-saas-carbonite, name: "Consumer & business cloud storage carbonite", host: www.carbonite.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4997 + - { id: saas-storage-saas-carbonite-status, name: "Consumer & business cloud storage carbonite status", host: status.carbonite.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4998 + - { id: saas-storage-saas-idrive-status, name: "Consumer & business cloud storage idrive status", host: status.idrive.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
4999 + - { id: saas-storage-saas-backblaze-help, name: "Consumer & business cloud storage backblaze help", host: help.backblaze.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5000 + - { id: saas-storage-saas-backblaze-status-www, name: "Consumer & business cloud storage backblaze status www", host: status.backblaze.com, url: "https://status.backblaze.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5001 + - { id: saas-storage-saas-backblaze-secure, name: "Consumer & business cloud storage backblaze secure", host: secure.backblaze.com, url: "https://secure.backblaze.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5002 + - { id: saas-storage-saas-crashplan, name: "Consumer & business cloud storage crashplan", host: www.crashplan.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5003 + - { id: saas-storage-saas-crashplan-status, name: "Consumer & business cloud storage crashplan status", host: status.crashplan.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5004 + - { id: saas-storage-saas-crashplan-support, name: "Consumer & business cloud storage crashplan support", host: support.crashplan.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5005 + - { id: saas-storage-saas-code42, name: "Consumer & business cloud storage code42", host: www.code42.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5006 + - { id: saas-storage-saas-code42-status, name: "Consumer & business cloud storage code42 status", host: status.code42.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5007 + - { id: saas-storage-saas-druva, name: "Consumer & business cloud storage druva", host: www.druva.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5008 + - { id: saas-storage-saas-druva-docs, name: "Consumer & business cloud storage druva docs", host: docs.druva.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5009 + - { id: saas-storage-saas-druva-cloud, name: "Consumer & business cloud storage druva cloud", host: cloud.druva.com, url: "https://cloud.druva.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5010 + - { id: saas-storage-saas-druva-login, name: "Consumer & business cloud storage druva login", host: login.druva.com, url: "https://login.druva.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5011 + - { id: saas-storage-saas-druva-api, name: "Consumer & business cloud storage druva api", host: apis.druva.com, url: "https://apis.druva.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5012 + - { id: saas-storage-saas-druva-support, name: "Consumer & business cloud storage druva support", host: support.druva.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5013 + - { id: saas-storage-saas-veeam, name: "Consumer & business cloud storage veeam", host: www.veeam.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5014 + - { id: saas-storage-saas-veeam-forums, name: "Consumer & business cloud storage veeam forums", host: forums.veeam.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5015 + - { id: saas-storage-saas-veeam-helpcenter, name: "Consumer & business cloud storage veeam helpcenter", host: helpcenter.veeam.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5016 + - { id: saas-storage-saas-veeam-my, name: "Consumer & business cloud storage veeam my", host: my.veeam.com, url: "https://my.veeam.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5017 + - { id: saas-storage-saas-veeam-download, name: "Consumer & business cloud storage veeam download", host: download2.veeam.com, url: "https://download2.veeam.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5018 + - { id: saas-storage-saas-veeam-repo, name: "Consumer & business cloud storage veeam repo", host: repository.veeam.com, url: "https://repository.veeam.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5019 + - { id: saas-storage-saas-veeam-community, name: "Consumer & business cloud storage veeam community", host: community.veeam.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5020 + - { id: saas-storage-saas-commvault, name: "Consumer & business cloud storage commvault", host: www.commvault.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5021 + - { id: saas-storage-saas-commvault-documentation, name: "Consumer & business cloud storage commvault documentation", host: documentation.commvault.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5022 + - { id: saas-storage-saas-commvault-community, name: "Consumer & business cloud storage commvault community", host: community.commvault.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5023 + - { id: saas-storage-saas-commvault-cloud, name: "Consumer & business cloud storage commvault cloud", host: cloud.commvault.com, url: "https://cloud.commvault.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5024 + - { id: saas-storage-saas-commvault-metallic, name: "Consumer & business cloud storage commvault metallic", host: metallic.io, url: "https://metallic.io/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5025 + - { id: saas-storage-saas-commvault-store, name: "Consumer & business cloud storage commvault store", host: store.commvault.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5026 + - { id: saas-storage-saas-commvault-api, name: "Consumer & business cloud storage commvault api", host: api.commvault.com, url: "https://api.commvault.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5027 + - { id: saas-storage-saas-rubrik, name: "Consumer & business cloud storage rubrik", host: www.rubrik.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5028 + - { id: saas-storage-saas-rubrik-status, name: "Consumer & business cloud storage rubrik status", host: status.rubrik.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5029 + - { id: saas-storage-saas-rubrik-support, name: "Consumer & business cloud storage rubrik support", host: support.rubrik.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5030 + - { id: saas-storage-saas-rubrik-docs, name: "Consumer & business cloud storage rubrik docs", host: docs.rubrik.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5031 + - { id: saas-storage-saas-rubrik-api, name: "Consumer & business cloud storage rubrik api", host: rubrik.com, url: "https://rubrik.com/api", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5032 + - { id: saas-storage-saas-rubrik-build, name: "Consumer & business cloud storage rubrik build", host: build.rubrik.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5033 + - { id: saas-storage-saas-cohesity, name: "Consumer & business cloud storage cohesity", host: www.cohesity.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5034 + - { id: saas-storage-saas-cohesity-status, name: "Consumer & business cloud storage cohesity status", host: status.cohesity.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5035 + - { id: saas-storage-saas-cohesity-support, name: "Consumer & business cloud storage cohesity support", host: support.cohesity.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5036 + - { id: saas-storage-saas-cohesity-docs, name: "Consumer & business cloud storage cohesity docs", host: docs.cohesity.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5037 + - { id: saas-storage-saas-cohesity-community, name: "Consumer & business cloud storage cohesity community", host: community.cohesity.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5038 + - { id: saas-storage-saas-cohesity-developer, name: "Consumer & business cloud storage cohesity developer", host: developer.cohesity.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5039 + - { id: saas-storage-saas-cohesity-helios, name: "Consumer & business cloud storage cohesity helios", host: helios.cohesity.com, url: "https://helios.cohesity.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5040 + - { id: saas-storage-saas-cohesity-veritas, name: "Consumer & business cloud storage cohesity veritas", host: www.veritas.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5041 + - { id: saas-storage-saas-veritas-sort, name: "Consumer & business cloud storage veritas sort", host: sort.veritas.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5042 + - { id: saas-storage-saas-acronis, name: "Consumer & business cloud storage acronis", host: www.acronis.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5043 + - { id: saas-storage-saas-acronis-status, name: "Consumer & business cloud storage acronis status", host: status.acronis.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5044 + - { id: saas-storage-saas-acronis-kb, name: "Consumer & business cloud storage acronis kb", host: kb.acronis.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5045 + - { id: saas-storage-saas-acronis-forum, name: "Consumer & business cloud storage acronis forum", host: forum.acronis.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5046 + - { id: saas-storage-saas-acronis-account, name: "Consumer & business cloud storage acronis account", host: account.acronis.com, url: "https://account.acronis.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5047 + - { id: saas-storage-saas-acronis-cloud, name: "Consumer & business cloud storage acronis cloud", host: cloud.acronis.com, url: "https://cloud.acronis.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5048 + - { id: saas-storage-saas-acronis-eu, name: "Consumer & business cloud storage acronis eu", host: eu-cloud.acronis.com, url: "https://eu-cloud.acronis.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5049 + - { id: saas-storage-saas-acronis-us, name: "Consumer & business cloud storage acronis us", host: us-cloud.acronis.com, url: "https://us-cloud.acronis.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5050 + - { id: saas-storage-saas-acronis-download, name: "Consumer & business cloud storage acronis download", host: dl.acronis.com, url: "https://dl.acronis.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5051 + - { id: saas-storage-saas-acronis-dl2, name: "Consumer & business cloud storage acronis dl2", host: dl2.acronis.com, url: "https://dl2.acronis.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5052 + - { id: saas-storage-saas-acronis-developer, name: "Consumer & business cloud storage acronis developer", host: developer.acronis.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5053 + - { id: saas-storage-saas-acronis-solutions, name: "Consumer & business cloud storage acronis solutions", host: solutions.acronis.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5054 + - { id: saas-storage-saas-acronis-partner, name: "Consumer & business cloud storage acronis partner", host: partners.acronis.com, url: "https://partners.acronis.com/", cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5055 + - { id: saas-storage-saas-acronis-security, name: "Consumer & business cloud storage acronis security", host: security-advisory.acronis.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5056 + - { id: saas-storage-saas-acronis-academy, name: "Consumer & business cloud storage acronis academy", host: academy.acronis.com, cat: developer, provider: dropbox, svc: dropbox, cc: null, imp: 3, tier: 4, checks: [http] }
5057 + - { id: saas-esign-docusign-status, name: "E-signature & documents docusign status", host: status.docusign.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5058 + - { id: saas-esign-docusign-support, name: "E-signature & documents docusign support", host: support.docusign.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5059 + - { id: saas-esign-docusign-developers, name: "E-signature & documents docusign developers", host: developers.docusign.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5060 + - { id: saas-esign-docusign-api, name: "E-signature & documents docusign api", host: account.docusign.com, url: "https://account.docusign.com/.well-known/openid-configuration", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5061 + - { id: saas-esign-docusign-demo, name: "E-signature & documents docusign demo", host: account-d.docusign.com, url: "https://account-d.docusign.com/.well-known/openid-configuration", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5062 + - { id: saas-esign-docusign-app, name: "E-signature & documents docusign app", host: app.docusign.com, url: "https://app.docusign.com/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5063 + - { id: saas-esign-docusign-eu, name: "E-signature & documents docusign eu", host: eu.docusign.net, url: "https://eu.docusign.net/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5064 + - { id: saas-esign-docusign-ca, name: "E-signature & documents docusign ca", host: ca.docusign.net, url: "https://ca.docusign.net/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5065 + - { id: saas-esign-docusign-au, name: "E-signature & documents docusign au", host: au.docusign.net, url: "https://au.docusign.net/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5066 + - { id: saas-esign-docusign-community, name: "E-signature & documents docusign community", host: community.docusign.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5067 + - { id: saas-esign-docusign-trust, name: "E-signature & documents docusign trust", host: www.docusign.com, url: "https://www.docusign.com/trust", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5068 + - { id: saas-esign-docusign-partners, name: "E-signature & documents docusign partners", host: partners.docusign.com, url: "https://partners.docusign.com/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5069 + - { id: saas-esign-docusign-careers, name: "E-signature & documents docusign careers", host: careers.docusign.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5070 + - { id: saas-esign-docusign-investors, name: "E-signature & documents docusign investors", host: investor.docusign.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5071 + - { id: saas-esign-pandadoc, name: "E-signature & documents pandadoc", host: www.pandadoc.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5072 + - { id: saas-esign-pandadoc-status, name: "E-signature & documents pandadoc status", host: status.pandadoc.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5073 + - { id: saas-esign-pandadoc-developers, name: "E-signature & documents pandadoc developers", host: developers.pandadoc.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5074 + - { id: saas-esign-pandadoc-api, name: "E-signature & documents pandadoc api", host: api.pandadoc.com, url: "https://api.pandadoc.com/public/v1/documents", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5075 + - { id: saas-esign-pandadoc-app, name: "E-signature & documents pandadoc app", host: app.pandadoc.com, url: "https://app.pandadoc.com/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5076 + - { id: saas-esign-pandadoc-support, name: "E-signature & documents pandadoc support", host: support.pandadoc.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5077 + - { id: saas-esign-pandadoc-community, name: "E-signature & documents pandadoc community", host: community.pandadoc.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5078 + - { id: saas-esign-signnow, name: "E-signature & documents signnow", host: www.signnow.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5079 + - { id: saas-esign-signnow-status, name: "E-signature & documents signnow status", host: status.signnow.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5080 + - { id: saas-esign-signnow-api, name: "E-signature & documents signnow api", host: api.signnow.com, url: "https://api.signnow.com/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5081 + - { id: saas-esign-signnow-app, name: "E-signature & documents signnow app", host: app.signnow.com, url: "https://app.signnow.com/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5082 + - { id: saas-esign-signnow-docs, name: "E-signature & documents signnow docs", host: docs.signnow.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5083 + - { id: saas-esign-airslate, name: "E-signature & documents airslate", host: www.airslate.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5084 + - { id: saas-esign-airslate-status, name: "E-signature & documents airslate status", host: status.airslate.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5085 + - { id: saas-esign-pdffiller, name: "E-signature & documents pdffiller", host: www.pdffiller.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5086 + - { id: saas-esign-pdffiller-status, name: "E-signature & documents pdffiller status", host: status.pdffiller.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5087 + - { id: saas-esign-uslegalforms, name: "E-signature & documents uslegalforms", host: www.uslegalforms.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5088 + - { id: saas-esign-signeasy, name: "E-signature & documents signeasy", host: signeasy.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5089 + - { id: saas-esign-signeasy-status, name: "E-signature & documents signeasy status", host: status.signeasy.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5090 + - { id: saas-esign-signeasy-api, name: "E-signature & documents signeasy api", host: api.signeasy.com, url: "https://api.signeasy.com/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5091 + - { id: saas-esign-signeasy-app, name: "E-signature & documents signeasy app", host: app.signeasy.com, url: "https://app.signeasy.com/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5092 + - { id: saas-esign-signrequest, name: "E-signature & documents signrequest", host: signrequest.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5093 + - { id: saas-esign-signrequest-status, name: "E-signature & documents signrequest status", host: status.signrequest.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5094 + - { id: saas-esign-signable, name: "E-signature & documents signable", host: www.signable.co.uk, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5095 + - { id: saas-esign-signable-status, name: "E-signature & documents signable status", host: status.signable.co.uk, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5096 + - { id: saas-esign-signable-api, name: "E-signature & documents signable api", host: api.signable.co.uk, url: "https://api.signable.co.uk/v1/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5097 + - { id: saas-esign-signable-app, name: "E-signature & documents signable app", host: app.signable.co.uk, url: "https://app.signable.co.uk/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5098 + - { id: saas-esign-eversign, name: "E-signature & documents eversign", host: eversign.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5099 + - { id: saas-esign-xodo-sign, name: "E-signature & documents xodo sign", host: www.xodo.com, url: "https://www.xodo.com/sign", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5100 + - { id: saas-esign-xodo-api, name: "E-signature & documents xodo api", host: api.xodo.com, url: "https://api.xodo.com/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5101 + - { id: saas-esign-apryse, name: "E-signature & documents apryse", host: apryse.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5102 + - { id: saas-esign-apryse-docs, name: "E-signature & documents apryse docs", host: docs.apryse.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5103 + - { id: saas-esign-apryse-cdn, name: "E-signature & documents apryse cdn", host: cdn.apryse.com, url: "https://cdn.apryse.com/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5104 + - { id: saas-esign-apryse-pdftron, name: "E-signature & documents apryse pdftron", host: www.pdftron.com, url: "https://www.pdftron.com/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5105 + - { id: saas-esign-apryse-community, name: "E-signature & documents apryse community", host: community.apryse.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5106 + - { id: saas-esign-apryse-showcase, name: "E-signature & documents apryse showcase", host: showcase.apryse.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5107 + - { id: saas-esign-apryse-support, name: "E-signature & documents apryse support", host: support.apryse.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5108 + - { id: saas-esign-nutrient, name: "E-signature & documents nutrient", host: www.nutrient.io, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5109 + - { id: saas-esign-nutrient-status, name: "E-signature & documents nutrient status", host: status.nutrient.io, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5110 + - { id: saas-esign-nutrient-cdn, name: "E-signature & documents nutrient cdn", host: cdn.cloud.pspdfkit.com, url: "https://cdn.cloud.pspdfkit.com/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5111 + - { id: saas-esign-nutrient-pspdfkit, name: "E-signature & documents nutrient pspdfkit", host: pspdfkit.com, url: "https://pspdfkit.com/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5112 + - { id: saas-esign-nutrient-api, name: "E-signature & documents nutrient api", host: api.nutrient.io, url: "https://api.nutrient.io/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5113 + - { id: saas-esign-nutrient-dashboard, name: "E-signature & documents nutrient dashboard", host: dashboard.nutrient.io, url: "https://dashboard.nutrient.io/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5114 + - { id: saas-esign-nutrient-support, name: "E-signature & documents nutrient support", host: support.nutrient.io, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5115 + - { id: saas-esign-foxit, name: "E-signature & documents foxit", host: www.foxit.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5116 + - { id: saas-esign-foxit-status, name: "E-signature & documents foxit status", host: status.foxit.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5117 + - { id: saas-esign-foxit-support, name: "E-signature & documents foxit support", host: kb.foxit.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5118 + - { id: saas-esign-foxit-developers, name: "E-signature & documents foxit developers", host: developers.foxit.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5119 + - { id: saas-esign-foxit-esign-app, name: "E-signature & documents foxit esign app", host: app.esignglobal.com, url: "https://app.esignglobal.com/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5120 + - { id: saas-esign-foxit-esign-api, name: "E-signature & documents foxit esign api", host: api.esignglobal.com, url: "https://api.esignglobal.com/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5121 + - { id: saas-esign-foxit-cdn, name: "E-signature & documents foxit cdn", host: cdn01.foxitsoftware.com, url: "https://cdn01.foxitsoftware.com/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5122 + - { id: saas-esign-foxit-cloud, name: "E-signature & documents foxit cloud", host: cloud.foxit.com, url: "https://cloud.foxit.com/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5123 + - { id: saas-esign-foxit-account, name: "E-signature & documents foxit account", host: account.foxit.com, url: "https://account.foxit.com/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5124 + - { id: saas-esign-smallpdf, name: "E-signature & documents smallpdf", host: smallpdf.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5125 + - { id: saas-esign-ilovepdf, name: "E-signature & documents ilovepdf", host: www.ilovepdf.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5126 + - { id: saas-esign-ilovepdf-api, name: "E-signature & documents ilovepdf api", host: api.ilovepdf.com, url: "https://api.ilovepdf.com/v1/start/compress", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5127 + - { id: saas-esign-ilovepdf-developer, name: "E-signature & documents ilovepdf developer", host: developer.ilovepdf.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5128 + - { id: saas-esign-ilovepdf-iloveimg, name: "E-signature & documents ilovepdf iloveimg", host: www.iloveimg.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5129 + - { id: saas-esign-sejda, name: "E-signature & documents sejda", host: www.sejda.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5130 + - { id: saas-esign-sejda-status, name: "E-signature & documents sejda status", host: status.sejda.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5131 + - { id: saas-esign-sejda-api, name: "E-signature & documents sejda api", host: api.sejda.com, url: "https://api.sejda.com/v2/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5132 + - { id: saas-esign-pdf24, name: "E-signature & documents pdf24", host: tools.pdf24.org, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5133 + - { id: saas-esign-pdf24-www, name: "E-signature & documents pdf24 www", host: www.pdf24.org, url: "https://www.pdf24.org/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5134 + - { id: saas-esign-pdf24-status, name: "E-signature & documents pdf24 status", host: status.pdf24.org, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5135 + - { id: saas-esign-pdfescape, name: "E-signature & documents pdfescape", host: www.pdfescape.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5136 + - { id: saas-esign-docfly, name: "E-signature & documents docfly", host: www.docfly.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5137 + - { id: saas-esign-soda-pdf, name: "E-signature & documents soda pdf", host: www.sodapdf.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5138 + - { id: saas-esign-soda-online, name: "E-signature & documents soda online", host: online.sodapdf.com, url: "https://online.sodapdf.com/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5139 + - { id: saas-esign-soda-support, name: "E-signature & documents soda support", host: support.sodapdf.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5140 + - { id: saas-esign-nitro, name: "E-signature & documents nitro", host: www.gonitro.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5141 + - { id: saas-esign-nitro-status, name: "E-signature & documents nitro status", host: status.gonitro.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5142 + - { id: saas-esign-nitro-support, name: "E-signature & documents nitro support", host: support.gonitro.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5143 + - { id: saas-esign-nitro-sign-api, name: "E-signature & documents nitro sign api", host: api.gonitro.com, url: "https://api.gonitro.com/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5144 + - { id: saas-esign-nitro-cloud, name: "E-signature & documents nitro cloud", host: cloud.gonitro.com, url: "https://cloud.gonitro.com/", cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5145 + - { id: saas-esign-nitro-community, name: "E-signature & documents nitro community", host: community.gonitro.com, cat: developer, provider: docusign, cc: null, imp: 3, tier: 4, checks: [http] }
5146 + - { id: saas-support-saas-zendesk-status, name: "Customer support & CRM SaaS zendesk status", host: status.zendesk.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5147 + - { id: saas-support-saas-zendesk-support, name: "Customer support & CRM SaaS zendesk support", host: support.zendesk.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5148 + - { id: saas-support-saas-zendesk-developer, name: "Customer support & CRM SaaS zendesk developer", host: developer.zendesk.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5149 + - { id: saas-support-saas-zendesk-help, name: "Customer support & CRM SaaS zendesk help", host: zendesk.com, url: "https://zendesk.com/help", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5150 + - { id: saas-support-saas-zendesk-static, name: "Customer support & CRM SaaS zendesk static", host: static.zdassets.com, url: "https://static.zdassets.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5151 + - { id: saas-support-saas-zendesk-ekr, name: "Customer support & CRM SaaS zendesk ekr", host: ekr.zdassets.com, url: "https://ekr.zdassets.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5152 + - { id: saas-support-saas-zendesk-sunshine, name: "Customer support & CRM SaaS zendesk sunshine", host: www.zendesk.com, url: "https://www.zendesk.com/platform/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5153 + - { id: saas-support-saas-zendesk-careers, name: "Customer support & CRM SaaS zendesk careers", host: jobs.zendesk.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5154 + - { id: saas-support-saas-zendesk-investors, name: "Customer support & CRM SaaS zendesk investors", host: investor.zendesk.com, url: "https://investor.zendesk.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5155 + - { id: saas-support-saas-zendesk-ultimate, name: "Customer support & CRM SaaS zendesk ultimate", host: www.ultimate.ai, url: "https://www.ultimate.ai/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5156 + - { id: saas-support-saas-zendesk-klaus, name: "Customer support & CRM SaaS zendesk klaus", host: www.klausapp.com, url: "https://www.klausapp.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5157 + - { id: saas-support-saas-zendesk-tymeshift, name: "Customer support & CRM SaaS zendesk tymeshift", host: www.tymeshift.com, url: "https://www.tymeshift.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5158 + - { id: saas-support-saas-zendesk-base, name: "Customer support & CRM SaaS zendesk base", host: www.getbase.com, url: "https://www.getbase.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5159 + - { id: saas-support-saas-zendesk-smooch, name: "Customer support & CRM SaaS zendesk smooch", host: smooch.io, url: "https://smooch.io/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5160 + - { id: saas-support-saas-zendesk-zopim, name: "Customer support & CRM SaaS zendesk zopim", host: www.zopim.com, url: "https://www.zopim.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5161 + - { id: saas-support-saas-zendesk-education, name: "Customer support & CRM SaaS zendesk education", host: training.zendesk.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5162 + - { id: saas-support-saas-freshworks-status, name: "Customer support & CRM SaaS freshworks status", host: status.freshworks.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5163 + - { id: saas-support-saas-freshworks-support, name: "Customer support & CRM SaaS freshworks support", host: support.freshworks.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5164 + - { id: saas-support-saas-freshworks-developers, name: "Customer support & CRM SaaS freshworks developers", host: developers.freshworks.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5165 + - { id: saas-support-saas-freshworks-community, name: "Customer support & CRM SaaS freshworks community", host: community.freshworks.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5166 + - { id: saas-support-saas-freshdesk-status, name: "Customer support & CRM SaaS freshdesk status", host: status.freshdesk.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5167 + - { id: saas-support-saas-freshdesk-support, name: "Customer support & CRM SaaS freshdesk support", host: support.freshdesk.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5168 + - { id: saas-support-saas-freshdesk-api, name: "Customer support & CRM SaaS freshdesk api", host: developers.freshdesk.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5169 + - { id: saas-support-saas-freshdesk-app, name: "Customer support & CRM SaaS freshdesk app", host: freshdesk.com, url: "https://freshdesk.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5170 + - { id: saas-support-saas-freshdesk-cdn, name: "Customer support & CRM SaaS freshdesk cdn", host: assets.freshdesk.com, url: "https://assets.freshdesk.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5171 + - { id: saas-support-saas-freshchat-status, name: "Customer support & CRM SaaS freshchat status", host: status.freshchat.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5172 + - { id: saas-support-saas-freshservice-status, name: "Customer support & CRM SaaS freshservice status", host: status.freshservice.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5173 + - { id: saas-support-saas-freshservice-support, name: "Customer support & CRM SaaS freshservice support", host: support.freshservice.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5174 + - { id: saas-support-saas-freshservice-api, name: "Customer support & CRM SaaS freshservice api", host: api.freshservice.com, url: "https://api.freshservice.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5175 + - { id: saas-support-saas-freshping-status, name: "Customer support & CRM SaaS freshping status", host: status.freshping.io, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5176 + - { id: saas-support-saas-freshcaller-status, name: "Customer support & CRM SaaS freshcaller status", host: status.freshcaller.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5177 + - { id: saas-support-saas-freshworks-careers, name: "Customer support & CRM SaaS freshworks careers", host: careers.freshworks.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5178 + - { id: saas-support-saas-freshworks-investors, name: "Customer support & CRM SaaS freshworks investors", host: ir.freshworks.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5179 + - { id: saas-support-saas-freshworks-academy, name: "Customer support & CRM SaaS freshworks academy", host: academy.freshworks.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5180 + - { id: saas-support-saas-intercom-status, name: "Customer support & CRM SaaS intercom status", host: www.intercomstatus.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5181 + - { id: saas-support-saas-intercom-developers, name: "Customer support & CRM SaaS intercom developers", host: developers.intercom.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5182 + - { id: saas-support-saas-intercom-api, name: "Customer support & CRM SaaS intercom api", host: api.intercom.io, url: "https://api.intercom.io/me", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5183 + - { id: saas-support-saas-intercom-app, name: "Customer support & CRM SaaS intercom app", host: app.intercom.com, url: "https://app.intercom.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5184 + - { id: saas-support-saas-intercom-widget, name: "Customer support & CRM SaaS intercom widget", host: widget.intercom.io, url: "https://widget.intercom.io/widget/abc", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5185 + - { id: saas-support-saas-intercom-js, name: "Customer support & CRM SaaS intercom js", host: js.intercomcdn.com, url: "https://js.intercomcdn.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5186 + - { id: saas-support-saas-intercom-static, name: "Customer support & CRM SaaS intercom static", host: static.intercomassets.com, url: "https://static.intercomassets.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5187 + - { id: saas-support-saas-intercom-help, name: "Customer support & CRM SaaS intercom help", host: www.intercom.com, url: "https://www.intercom.com/help/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5188 + - { id: saas-support-saas-intercom-community, name: "Customer support & CRM SaaS intercom community", host: community.intercom.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5189 + - { id: saas-support-saas-intercom-fin, name: "Customer support & CRM SaaS intercom fin", host: fin.ai, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5190 + - { id: saas-support-saas-intercom-academy, name: "Customer support & CRM SaaS intercom academy", host: academy.intercom.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5191 + - { id: saas-support-saas-hubspot-status, name: "Customer support & CRM SaaS hubspot status", host: status.hubspot.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5192 + - { id: saas-support-saas-hubspot-developers, name: "Customer support & CRM SaaS hubspot developers", host: developers.hubspot.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5193 + - { id: saas-support-saas-hubspot-api, name: "Customer support & CRM SaaS hubspot api", host: api.hubapi.com, url: "https://api.hubapi.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5194 + - { id: saas-support-saas-hubspot-app, name: "Customer support & CRM SaaS hubspot app", host: app.hubspot.com, url: "https://app.hubspot.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5195 + - { id: saas-support-saas-hubspot-app-eu, name: "Customer support & CRM SaaS hubspot app eu", host: app-eu1.hubspot.com, url: "https://app-eu1.hubspot.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5196 + - { id: saas-support-saas-hubspot-knowledge, name: "Customer support & CRM SaaS hubspot knowledge", host: knowledge.hubspot.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5197 + - { id: saas-support-saas-hubspot-community, name: "Customer support & CRM SaaS hubspot community", host: community.hubspot.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5198 + - { id: saas-support-saas-hubspot-academy, name: "Customer support & CRM SaaS hubspot academy", host: academy.hubspot.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5199 + - { id: saas-support-saas-hubspot-js, name: "Customer support & CRM SaaS hubspot js", host: js.hs-scripts.com, url: "https://js.hs-scripts.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5200 + - { id: saas-support-saas-hubspot-hsforms, name: "Customer support & CRM SaaS hubspot hsforms", host: js.hsforms.net, url: "https://js.hsforms.net/forms/embed/v2.js", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5201 + - { id: saas-support-saas-hubspot-track, name: "Customer support & CRM SaaS hubspot track", host: track.hubspot.com, url: "https://track.hubspot.com/__ptq.gif", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5202 + - { id: saas-support-saas-hubspot-cdn, name: "Customer support & CRM SaaS hubspot cdn", host: cdn2.hubspot.net, url: "https://cdn2.hubspot.net/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5203 + - { id: saas-support-saas-hubspot-static, name: "Customer support & CRM SaaS hubspot static", host: static.hsappstatic.net, url: "https://static.hsappstatic.net/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5204 + - { id: saas-support-saas-hubspot-hs-sites, name: "Customer support & CRM SaaS hubspot hs sites", host: hs-sites.com, url: "https://hs-sites.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5205 + - { id: saas-support-saas-hubspot-marketplace, name: "Customer support & CRM SaaS hubspot marketplace", host: ecosystem.hubspot.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5206 + - { id: saas-support-saas-hubspot-blog, name: "Customer support & CRM SaaS hubspot blog", host: blog.hubspot.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5207 + - { id: saas-support-saas-hubspot-trust, name: "Customer support & CRM SaaS hubspot trust", host: trust.hubspot.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5208 + - { id: saas-support-saas-hubspot-legal, name: "Customer support & CRM SaaS hubspot legal", host: legal.hubspot.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5209 + - { id: saas-support-saas-hubspot-security, name: "Customer support & CRM SaaS hubspot security", host: www.hubspot.com, url: "https://www.hubspot.com/security", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5210 + - { id: saas-support-saas-hubspot-investors, name: "Customer support & CRM SaaS hubspot investors", host: ir.hubspot.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5211 + - { id: saas-support-saas-hubspot-inbound, name: "Customer support & CRM SaaS hubspot inbound", host: www.inbound.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5212 + - { id: saas-support-saas-hubspot-research, name: "Customer support & CRM SaaS hubspot research", host: research.hubspot.com, url: "https://research.hubspot.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5213 + - { id: saas-support-saas-hubspot-website-grader, name: "Customer support & CRM SaaS hubspot website grader", host: website.grader.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5214 + - { id: saas-support-saas-hubspot-templates, name: "Customer support & CRM SaaS hubspot templates", host: offers.hubspot.com, url: "https://offers.hubspot.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5215 + - { id: saas-support-saas-hubspot-clearbit, name: "Customer support & CRM SaaS hubspot clearbit", host: clearbit.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5216 + - { id: saas-support-saas-hubspot-clearbit-status, name: "Customer support & CRM SaaS hubspot clearbit status", host: status.clearbit.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5217 + - { id: saas-support-saas-hubspot-clearbit-api, name: "Customer support & CRM SaaS hubspot clearbit api", host: person.clearbit.com, url: "https://person.clearbit.com/v2/combined/find?email=test@example.com", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5218 + - { id: saas-support-saas-hubspot-the-hustle, name: "Customer support & CRM SaaS hubspot the hustle", host: thehustle.co, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5219 + - { id: saas-support-saas-zoho-status, name: "Customer support & CRM SaaS zoho status", host: status.zoho.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5220 + - { id: saas-support-saas-zoho-status-eu, name: "Customer support & CRM SaaS zoho status eu", host: status.zoho.eu, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5221 + - { id: saas-support-saas-zoho-status-in, name: "Customer support & CRM SaaS zoho status in", host: status.zoho.in, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5222 + - { id: saas-support-saas-zoho-status-au, name: "Customer support & CRM SaaS zoho status au", host: status.zoho.com.au, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5223 + - { id: saas-support-saas-zoho-help, name: "Customer support & CRM SaaS zoho help", host: help.zoho.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5224 + - { id: saas-support-saas-zoho-developer, name: "Customer support & CRM SaaS zoho developer", host: www.zoho.com, url: "https://www.zoho.com/developer/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5225 + - { id: saas-support-saas-zoho-api-console, name: "Customer support & CRM SaaS zoho api console", host: api-console.zoho.com, url: "https://api-console.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5226 + - { id: saas-support-saas-zoho-accounts, name: "Customer support & CRM SaaS zoho accounts", host: accounts.zoho.com, url: "https://accounts.zoho.com/.well-known/openid-configuration", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5227 + - { id: saas-support-saas-zoho-accounts-eu, name: "Customer support & CRM SaaS zoho accounts eu", host: accounts.zoho.eu, url: "https://accounts.zoho.eu/.well-known/openid-configuration", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5228 + - { id: saas-support-saas-zoho-accounts-in, name: "Customer support & CRM SaaS zoho accounts in", host: accounts.zoho.in, url: "https://accounts.zoho.in/.well-known/openid-configuration", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5229 + - { id: saas-support-saas-zoho-accounts-au, name: "Customer support & CRM SaaS zoho accounts au", host: accounts.zoho.com.au, url: "https://accounts.zoho.com.au/.well-known/openid-configuration", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5230 + - { id: saas-support-saas-zoho-accounts-jp, name: "Customer support & CRM SaaS zoho accounts jp", host: accounts.zoho.jp, url: "https://accounts.zoho.jp/.well-known/openid-configuration", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5231 + - { id: saas-support-saas-zoho-accounts-ca, name: "Customer support & CRM SaaS zoho accounts ca", host: accounts.zohocloud.ca, url: "https://accounts.zohocloud.ca/.well-known/openid-configuration", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5232 + - { id: saas-support-saas-zoho-accounts-sa, name: "Customer support & CRM SaaS zoho accounts sa", host: accounts.zoho.sa, url: "https://accounts.zoho.sa/.well-known/openid-configuration", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5233 + - { id: saas-support-saas-zoho-accounts-uk, name: "Customer support & CRM SaaS zoho accounts uk", host: accounts.zoho.uk, url: "https://accounts.zoho.uk/.well-known/openid-configuration", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5234 + - { id: saas-support-saas-zoho-crm-api, name: "Customer support & CRM SaaS zoho crm api", host: www.zohoapis.com, url: "https://www.zohoapis.com/crm/v6/org", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5235 + - { id: saas-support-saas-zoho-crm-api-eu, name: "Customer support & CRM SaaS zoho crm api eu", host: www.zohoapis.eu, url: "https://www.zohoapis.eu/crm/v6/org", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5236 + - { id: saas-support-saas-zoho-crm-api-in, name: "Customer support & CRM SaaS zoho crm api in", host: www.zohoapis.in, url: "https://www.zohoapis.in/crm/v6/org", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5237 + - { id: saas-support-saas-zoho-mail-app, name: "Customer support & CRM SaaS zoho mail app", host: mail.zoho.com, url: "https://mail.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5238 + - { id: saas-support-saas-zoho-mail-eu, name: "Customer support & CRM SaaS zoho mail eu", host: mail.zoho.eu, url: "https://mail.zoho.eu/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5239 + - { id: saas-support-saas-zoho-mail-in, name: "Customer support & CRM SaaS zoho mail in", host: mail.zoho.in, url: "https://mail.zoho.in/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5240 + - { id: saas-support-saas-zoho-desk-app, name: "Customer support & CRM SaaS zoho desk app", host: desk.zoho.com, url: "https://desk.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5241 + - { id: saas-support-saas-zoho-books-app, name: "Customer support & CRM SaaS zoho books app", host: books.zoho.com, url: "https://books.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5242 + - { id: saas-support-saas-zoho-invoice-app, name: "Customer support & CRM SaaS zoho invoice app", host: invoice.zoho.com, url: "https://invoice.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5243 + - { id: saas-support-saas-zoho-inventory-app, name: "Customer support & CRM SaaS zoho inventory app", host: inventory.zoho.com, url: "https://inventory.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5244 + - { id: saas-support-saas-zoho-expense-app, name: "Customer support & CRM SaaS zoho expense app", host: expense.zoho.com, url: "https://expense.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5245 + - { id: saas-support-saas-zoho-people-app, name: "Customer support & CRM SaaS zoho people app", host: people.zoho.com, url: "https://people.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5246 + - { id: saas-support-saas-zoho-recruit-app, name: "Customer support & CRM SaaS zoho recruit app", host: recruit.zoho.com, url: "https://recruit.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5247 + - { id: saas-support-saas-zoho-projects-app, name: "Customer support & CRM SaaS zoho projects app", host: projects.zoho.com, url: "https://projects.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5248 + - { id: saas-support-saas-zoho-sprints-app, name: "Customer support & CRM SaaS zoho sprints app", host: sprints.zoho.com, url: "https://sprints.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5249 + - { id: saas-support-saas-zoho-workdrive-app, name: "Customer support & CRM SaaS zoho workdrive app", host: workdrive.zoho.com, url: "https://workdrive.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5250 + - { id: saas-support-saas-zoho-writer-app, name: "Customer support & CRM SaaS zoho writer app", host: writer.zoho.com, url: "https://writer.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5251 + - { id: saas-support-saas-zoho-sheet-app, name: "Customer support & CRM SaaS zoho sheet app", host: sheet.zoho.com, url: "https://sheet.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5252 + - { id: saas-support-saas-zoho-show-app, name: "Customer support & CRM SaaS zoho show app", host: show.zoho.com, url: "https://show.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5253 + - { id: saas-support-saas-zoho-notebook-app, name: "Customer support & CRM SaaS zoho notebook app", host: notebook.zoho.com, url: "https://notebook.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5254 + - { id: saas-support-saas-zoho-cliq-app, name: "Customer support & CRM SaaS zoho cliq app", host: cliq.zoho.com, url: "https://cliq.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5255 + - { id: saas-support-saas-zoho-meeting-app, name: "Customer support & CRM SaaS zoho meeting app", host: meeting.zoho.com, url: "https://meeting.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5256 + - { id: saas-support-saas-zoho-connect-app, name: "Customer support & CRM SaaS zoho connect app", host: connect.zoho.com, url: "https://connect.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5257 + - { id: saas-support-saas-zoho-forms-app, name: "Customer support & CRM SaaS zoho forms app", host: forms.zoho.com, url: "https://forms.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5258 + - { id: saas-support-saas-zoho-survey-app, name: "Customer support & CRM SaaS zoho survey app", host: survey.zoho.com, url: "https://survey.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5259 + - { id: saas-support-saas-zoho-sites-app, name: "Customer support & CRM SaaS zoho sites app", host: sites.zoho.com, url: "https://sites.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5260 + - { id: saas-support-saas-zoho-campaigns-app, name: "Customer support & CRM SaaS zoho campaigns app", host: campaigns.zoho.com, url: "https://campaigns.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5261 + - { id: saas-support-saas-zoho-social-app, name: "Customer support & CRM SaaS zoho social app", host: social.zoho.com, url: "https://social.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5262 + - { id: saas-support-saas-zoho-salesiq-app, name: "Customer support & CRM SaaS zoho salesiq app", host: salesiq.zoho.com, url: "https://salesiq.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5263 + - { id: saas-support-saas-zoho-salesiq-widget, name: "Customer support & CRM SaaS zoho salesiq widget", host: salesiq.zohopublic.com, url: "https://salesiq.zohopublic.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5264 + - { id: saas-support-saas-zoho-pagesense-cdn, name: "Customer support & CRM SaaS zoho pagesense cdn", host: cdn.pagesense.io, url: "https://cdn.pagesense.io/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5265 + - { id: saas-support-saas-zoho-analytics-app, name: "Customer support & CRM SaaS zoho analytics app", host: analytics.zoho.com, url: "https://analytics.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5266 + - { id: saas-support-saas-zoho-creator-app, name: "Customer support & CRM SaaS zoho creator app", host: creator.zoho.com, url: "https://creator.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5267 + - { id: saas-support-saas-zoho-flow-app, name: "Customer support & CRM SaaS zoho flow app", host: flow.zoho.com, url: "https://flow.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5268 + - { id: saas-support-saas-zoho-catalyst, name: "Customer support & CRM SaaS zoho catalyst", host: catalyst.zoho.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5269 + - { id: saas-support-saas-zoho-catalyst-docs, name: "Customer support & CRM SaaS zoho catalyst docs", host: docs.catalyst.zoho.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5270 + - { id: saas-support-saas-zoho-one-app, name: "Customer support & CRM SaaS zoho one app", host: one.zoho.com, url: "https://one.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5271 + - { id: saas-support-saas-zoho-vault-app, name: "Customer support & CRM SaaS zoho vault app", host: vault.zoho.com, url: "https://vault.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5272 + - { id: saas-support-saas-zoho-directory-app, name: "Customer support & CRM SaaS zoho directory app", host: directory.zoho.com, url: "https://directory.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5273 + - { id: saas-support-saas-zoho-assist-app, name: "Customer support & CRM SaaS zoho assist app", host: assist.zoho.com, url: "https://assist.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5274 + - { id: saas-support-saas-zoho-bookings-app, name: "Customer support & CRM SaaS zoho bookings app", host: bookings.zoho.com, url: "https://bookings.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5275 + - { id: saas-support-saas-zoho-sign-app, name: "Customer support & CRM SaaS zoho sign app", host: sign.zoho.com, url: "https://sign.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5276 + - { id: saas-support-saas-zoho-learn-app, name: "Customer support & CRM SaaS zoho learn app", host: learn.zoho.com, url: "https://learn.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5277 + - { id: saas-support-saas-zoho-tables-app, name: "Customer support & CRM SaaS zoho tables app", host: tables.zoho.com, url: "https://tables.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5278 + - { id: saas-support-saas-zoho-marketplace, name: "Customer support & CRM SaaS zoho marketplace", host: marketplace.zoho.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5279 + - { id: saas-support-saas-zoho-community, name: "Customer support & CRM SaaS zoho community", host: community.zoho.com, url: "https://community.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5280 + - { id: saas-support-saas-zoho-schools, name: "Customer support & CRM SaaS zoho schools", host: www.zohoschools.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5281 + - { id: saas-support-saas-zoho-corp, name: "Customer support & CRM SaaS zoho corp", host: www.zohocorp.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5282 + - { id: saas-support-saas-zoho-manageengine-pitstop, name: "Customer support & CRM SaaS zoho manageengine pitstop", host: pitstop.manageengine.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5283 + - { id: saas-support-saas-zoho-qntrl, name: "Customer support & CRM SaaS zoho qntrl", host: www.qntrl.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5284 + - { id: saas-support-saas-zoho-qntrl-app, name: "Customer support & CRM SaaS zoho qntrl app", host: qntrl.com, url: "https://qntrl.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5285 + - { id: saas-support-saas-zoho-bigin, name: "Customer support & CRM SaaS zoho bigin", host: www.bigin.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5286 + - { id: saas-support-saas-zoho-bigin-app, name: "Customer support & CRM SaaS zoho bigin app", host: bigin.zoho.com, url: "https://bigin.zoho.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5287 + - { id: saas-support-saas-zoho-trainercentral, name: "Customer support & CRM SaaS zoho trainercentral", host: www.trainercentral.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5288 + - { id: saas-support-saas-zoho-trainercentral-app, name: "Customer support & CRM SaaS zoho trainercentral app", host: trainercentral.com, url: "https://trainercentral.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5289 + - { id: saas-support-saas-zoho-webnms, name: "Customer support & CRM SaaS zoho webnms", host: www.webnms.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5290 + - { id: saas-support-saas-pipedrive, name: "Customer support & CRM SaaS pipedrive", host: www.pipedrive.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5291 + - { id: saas-support-saas-pipedrive-status, name: "Customer support & CRM SaaS pipedrive status", host: status.pipedrive.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5292 + - { id: saas-support-saas-pipedrive-developers, name: "Customer support & CRM SaaS pipedrive developers", host: developers.pipedrive.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5293 + - { id: saas-support-saas-pipedrive-api, name: "Customer support & CRM SaaS pipedrive api", host: api.pipedrive.com, url: "https://api.pipedrive.com/v1/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5294 + - { id: saas-support-saas-pipedrive-app, name: "Customer support & CRM SaaS pipedrive app", host: app.pipedrive.com, url: "https://app.pipedrive.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5295 + - { id: saas-support-saas-pipedrive-support, name: "Customer support & CRM SaaS pipedrive support", host: support.pipedrive.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5296 + - { id: saas-support-saas-pipedrive-community, name: "Customer support & CRM SaaS pipedrive community", host: community.pipedrive.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5297 + - { id: saas-support-saas-salesforce-status, name: "Customer support & CRM SaaS salesforce status", host: status.salesforce.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5298 + - { id: saas-support-saas-salesforce-status-api, name: "Customer support & CRM SaaS salesforce status api", host: api.status.salesforce.com, url: "https://api.status.salesforce.com/v1/instances/status/preview", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5299 + - { id: saas-support-saas-salesforce-trust, name: "Customer support & CRM SaaS salesforce trust", host: trust.salesforce.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5300 + - { id: saas-support-saas-salesforce-help, name: "Customer support & CRM SaaS salesforce help", host: help.salesforce.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5301 + - { id: saas-support-saas-salesforce-developer, name: "Customer support & CRM SaaS salesforce developer", host: developer.salesforce.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5302 + - { id: saas-support-saas-salesforce-trailhead, name: "Customer support & CRM SaaS salesforce trailhead", host: trailhead.salesforce.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5303 + - { id: saas-support-saas-salesforce-appexchange, name: "Customer support & CRM SaaS salesforce appexchange", host: appexchange.salesforce.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5304 + - { id: saas-support-saas-salesforce-login, name: "Customer support & CRM SaaS salesforce login", host: login.salesforce.com, url: "https://login.salesforce.com/.well-known/openid-configuration", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5305 + - { id: saas-support-saas-salesforce-test, name: "Customer support & CRM SaaS salesforce test", host: test.salesforce.com, url: "https://test.salesforce.com/.well-known/openid-configuration", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5306 + - { id: saas-support-saas-salesforce-force, name: "Customer support & CRM SaaS salesforce force", host: force.com, url: "https://force.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5307 + - { id: saas-support-saas-salesforce-visualforce, name: "Customer support & CRM SaaS salesforce visualforce", host: visualforce.com, url: "https://visualforce.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5308 + - { id: saas-support-saas-salesforce-cdn, name: "Customer support & CRM SaaS salesforce cdn", host: a.sfdcstatic.com, url: "https://a.sfdcstatic.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5309 + - { id: saas-support-saas-salesforce-api, name: "Customer support & CRM SaaS salesforce api", host: api.salesforce.com, url: "https://api.salesforce.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5310 + - { id: saas-support-saas-salesforce-einstein, name: "Customer support & CRM SaaS salesforce einstein", host: www.salesforce.com, url: "https://www.salesforce.com/artificial-intelligence/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5311 + - { id: saas-support-saas-salesforce-mc-app, name: "Customer support & CRM SaaS salesforce mc app", host: mc.exacttarget.com, url: "https://mc.exacttarget.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5312 + - { id: saas-support-saas-salesforce-pardot, name: "Customer support & CRM SaaS salesforce pardot", host: pi.pardot.com, url: "https://pi.pardot.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5313 + - { id: saas-support-saas-salesforce-commerce-account, name: "Customer support & CRM SaaS salesforce commerce account", host: account.demandware.com, url: "https://account.demandware.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5314 + - { id: saas-support-saas-salesforce-quip, name: "Customer support & CRM SaaS salesforce quip", host: quip.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5315 + - { id: saas-support-saas-salesforce-quip-status, name: "Customer support & CRM SaaS salesforce quip status", host: status.quip.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5316 + - { id: saas-support-saas-salesforce-quip-api, name: "Customer support & CRM SaaS salesforce quip api", host: platform.quip.com, url: "https://platform.quip.com/1/users/current", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5317 + - { id: saas-support-saas-salesforce-own, name: "Customer support & CRM SaaS salesforce own", host: www.owndata.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5318 + - { id: saas-support-saas-salesforce-own-status, name: "Customer support & CRM SaaS salesforce own status", host: status.owndata.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5319 + - { id: saas-support-saas-salesforce-airkit, name: "Customer support & CRM SaaS salesforce airkit", host: www.airkit.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5320 + - { id: saas-support-saas-salesforce-nonprofit, name: "Customer support & CRM SaaS salesforce nonprofit", host: www.salesforce.org, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5321 + - { id: saas-support-saas-salesforce-ventures, name: "Customer support & CRM SaaS salesforce ventures", host: salesforceventures.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5322 + - { id: saas-support-saas-salesforce-ai-research, name: "Customer support & CRM SaaS salesforce ai research", host: www.salesforceairesearch.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5323 + - { id: saas-support-saas-salesforce-investors, name: "Customer support & CRM SaaS salesforce investors", host: investor.salesforce.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5324 + - { id: saas-support-saas-salesforce-careers, name: "Customer support & CRM SaaS salesforce careers", host: careers.salesforce.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5325 + - { id: saas-support-saas-salesforce-partners, name: "Customer support & CRM SaaS salesforce partners", host: partners.salesforce.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5326 + - { id: saas-support-saas-salesforce-ideas, name: "Customer support & CRM SaaS salesforce ideas", host: ideas.salesforce.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5327 + - { id: saas-support-saas-salesforce-known-issues, name: "Customer support & CRM SaaS salesforce known issues", host: issues.salesforce.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5328 + - { id: saas-support-saas-salesforce-success, name: "Customer support & CRM SaaS salesforce success", host: success.salesforce.com, url: "https://success.salesforce.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5329 + - { id: saas-support-saas-salesforce-trailblazer, name: "Customer support & CRM SaaS salesforce trailblazer", host: trailblazer.salesforce.com, url: "https://trailblazer.salesforce.com/", cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5330 + - { id: saas-support-saas-salesforce-architect, name: "Customer support & CRM SaaS salesforce architect", host: architect.salesforce.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5331 + - { id: saas-support-saas-salesforce-admins, name: "Customer support & CRM SaaS salesforce admins", host: admin.salesforce.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5332 + - { id: saas-support-saas-salesforce-lwc, name: "Customer support & CRM SaaS salesforce lwc", host: lwc.dev, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
5333 + - { id: saas-support-saas-salesforce-lightning-design, name: "Customer support & CRM SaaS salesforce lightning design", host: www.lightningdesignsystem.com, cat: developer, provider: zendesk, cc: null, imp: 3, tier: 4, checks: [http] }
modified infra/compose.yml +1 −0
@@ -92,6 +92,7 @@ services:
92 92 api:
93 93 <<: *app
94 94 command: ["ip", "api"]
95 + cap_add: [SYS_PTRACE] # lets `py-spy dump --pid 1` profile the process from `docker exec -u root`
95 96 environment:
96 97 <<: *app-env
97 98 IP_API_PORT: "8352"
98 99