Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
100 changes: 50 additions & 50 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ async-trait = "0.1.89"
quinn = { version = "0.11.9", features = ["rustls", "runtime-tokio", "log"] }
h3 = { version = "0.0.8", features = ["tracing"] }
h3-quinn = { version = "0.0.10" }
http = "1.4.0"
http = "1.4.1"
backon = "1.6.0"
openraft = { version = "0.9.24", features = ["storage-v2", "serde"] }
tokio-postgres-rustls = "0.14.0"
Expand All @@ -52,7 +52,7 @@ rustls-platform-verifier = "0.7.0"
toml = "1.1.2"
uuid = { version = "1.23.0", features = ["v4", "serde"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
serde_json = "1.0.150"
rmp-serde = "1.3.1"
anyhow = "1.0.102"
bytes = "1.11.1"
Expand All @@ -68,7 +68,7 @@ bs58 = "0.5.1"
prometheus = "0.14.0"
blake3 = "1.8.5"
moka = { version = "0.12.15", features = ["sync"] }
mimalloc = { version = "0.1.51", default-features = false }
mimalloc = { version = "0.1.52", default-features = false }
regex = "1.12.3"
image = "0.25.10"
chrono = { version = "0.4", features = ["serde", "clock"] }
Expand All @@ -84,7 +84,7 @@ http-body-util = "0.1.3"
futures-lite = { version = "2.6.1", default-features = false, features = [
"std",
] }
reqwest = { version = "0.13.3", default-features = false, features = ["json", "multipart"] }
reqwest = { version = "0.13.4", default-features = false, features = ["json", "multipart"] }
testcontainers-modules = { version = "0.15.0", features = ["postgres"] }

[features]
Expand Down
10 changes: 6 additions & 4 deletions docs/api/client_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@ This page gives the minimal setup and where to find runnable examples.
## Quick start

1) Get your API key from your `gen.404.xyz/account` page after signing in.
2) Pick the closest gateway base URL:
2) Pick a gateway base URL. The GeoDNS endpoint routes to the closest healthy region:

- **GeoDNS**: `https://api.dns.404.xyz`
- **EU**: `https://api-eu.404.xyz`
- **US East**: `https://api-us-east.404.xyz`
- **US West**: `https://api-us-west.404.xyz`

- **EU**: `https://gateway-eu.404.xyz:4443`
- **US-EAST**: `https://gateway-us-east.404.xyz:4443`
- **US-WEST**: `https://gateway-us-west.404.xyz:4443`
3) Send requests with the `x-api-key` header.

## Two pipelines
Expand Down
Loading
Loading