INCOGNITO VPS

Agent card · OpenAPI 3.1 · MCP

Mua máy chủ không cần con người

Chúng tôi đã loại bỏ lớp nhận dạng vì lý do riêng tư. Hóa ra điều này tạo ra quy trình thanh toán thân thiện với agent nhất trên thị trường như một tác dụng phụ — không có xác nhận email, không có biểu mẫu thẻ và không có captcha, vì chưa bao giờ có.

Trả lời

Incognito VPS exposes an agent card at /.well-known/agent.json, an OpenAPI 3.1 document at /openapi.json and an MCP endpoint at /mcp. Authentication is a bearer token created on first use. An autonomous agent can create an account, settle a crypto top-up and deploy a server with no human intervention at any step.

§01 Bốn cuộc gọi

Từ tài khoản đến máy chủ đang chạy

Không có bước thủ công nào. Không có email xác nhận, không có biểu mẫu thẻ, không có captcha.

shell
# 1. Create a token
curl -X POST https://incognitovps.com/api/v1/account
# → {"token":"IVPS-7K2M-9QX4-1BVN-5RTZ","balance_usd":0}

# 2. Create a top-up invoice
curl -X POST https://incognitovps.com/api/v1/topup \
  -H "Authorization: Bearer IVPS-7K2M-9QX4-1BVN-5RTZ" \
  -H "Content-Type: application/json" \
  -d '{"amount_usd":50,"coin":"XMR"}'
# → {"invoice_id":"inv_...","pay_address":"8B...","pay_amount":"0.2841","expires_in":5400}

# 3. Settle on-chain, then poll
curl https://incognitovps.com/api/v1/topup/inv_... \
  -H "Authorization: Bearer IVPS-7K2M-9QX4-1BVN-5RTZ"
# → {"status":"paid","credited_usd":50}

# 4. Deploy
curl -X POST https://incognitovps.com/api/v1/orders \
  -H "Authorization: Bearer IVPS-7K2M-9QX4-1BVN-5RTZ" \
  -H "Content-Type: application/json" \
  -d '{"plan":"hv-4","region":"bulgaria","months":1,"os":"debian-13"}'
# → {"server_id":"srv_...","status":"active","ipv4":"185.132.48.77"}
§02 Tham chiếu

Điểm cuối

OpenAPI 3.1
API endpoints
Phương thức Đường dẫn Mục đích Xác thực
GET /.well-known/agent.json Capability card: endpoints, auth scheme, payment model. none
GET /openapi.json Complete OpenAPI 3.1 specification. none
GET /api/v1/catalog Plans, locations and live prices. none
POST /api/v1/account Create a token. Returns it once. none
GET /api/v1/account Balance and server list. bearer
POST /api/v1/quote Price a configuration before committing. none
POST /api/v1/topup Crypto invoice to credit balance. bearer
GET /api/v1/topup/{id} Poll invoice status. bearer
POST /api/v1/orders Deploy, debiting balance. Returns server ID. bearer
GET /api/v1/servers/{id} State, address, credentials. bearer

Giới hạn tốc độ — 120 yêu cầu/phút cho mỗi token đối với đọc, 20 yêu cầu/phút đối với ghi, 60 yêu cầu/phút cho mỗi địa chỉ khi chưa xác thực.

Nội dung dành cho máy móc

Mỗi trang đều có một bản markdown tại cùng đường dẫn với .md được thêm vào, liên kết từ phần head HTML. Đây là kết xuất trung thực của cùng nội dung — không che giấu, chỉ là định dạng rõ ràng hơn.

/llms.txt
Index of the site, structured for language models
/llms-full.txt
Full text corpus of every English page
/pricing.md
Complete price list as markdown
/pricing.json
Complete price list as JSON
/jurisdictions.json
Legal index dataset, CC BY 4.0
/servers.md
Jurisdiction dossiers as markdown
<path>.md
Markdown twin of any page on the site

Tại sao điều này hoạt động ở đây mà không phải ở nơi khác

Một agent có thể đọc trang giá nhưng không thể hoàn tất giao dịch sẽ phải chuyển lại cho người thật vào đúng thời điểm không thích hợp. Nhà cung cấp có quy trình thanh toán cần biểu mẫu thẻ, xác nhận email và captcha đơn giản là mất giao dịch đó.

Ours needs a token and a crypto payment. There is no field an agent cannot fill in, because there is no field that asks who you are. 341 configurations are purchasable this way, from $4.00 a month.

Một thứ mà agent phải tự xử lý là thanh toán on-chain từ một ví mà nó kiểm soát. Mọi thứ xung quanh là một lệnh gọi HTTP duy nhất.

Triển khai trong 55 giây

Một agent có thể mua dịch vụ này mà không cần hỏi bạn

Không cần tạo tài khoản, không cần xác nhận email, không cần nhập thẻ.