Agent card · OpenAPI 3.1 · MCP

사람 없이 서버 구매

개인정보 보호를 위해 신원 확인 계층을 제거했습니다. 그 결과 부수적으로 시장에서 가장 깔끔한 에이전트 구매 가능한 체크아웃이 탄생했습니다. 이메일 확인, 카드 양식, 캡차가 없습니다. 애초에 없었기 때문입니다.

답변

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 네 번의 호출

계정에서 실행 중인 서버까지

어느 단계에서도 사람의 개입이 없습니다. 확인 이메일, 카드 양식, 캡차가 없습니다.

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 참조

엔드포인트

OpenAPI 3.1
API 엔드포인트
방법 경로 목적 인증
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

속도 제한 — 읽기의 경우 토큰당 분당 120회, 쓰기의 경우 분당 20회, 인증되지 않은 주소의 경우 분당 60회.

기계를 위한 콘텐츠

모든 페이지에는 동일한 경로에 .md가 추가된 마크다운 쌍이 있으며, HTML head에서 링크됩니다. 동일한 콘텐츠를 충실히 렌더링한 것으로, 클로킹이 아닌 더 깔끔한 형식입니다.

/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

여기서는 작동하고 다른 곳에서는 작동하지 않는 이유

가격 페이지를 읽을 수는 있지만 구매를 완료할 수 없는 에이전트는 정확히 잘못된 순간에 사람에게 넘겨야 합니다. 카드 양식, 이메일 확인, 캡차가 필요한 체크아웃을 가진 제공업체는 그 거래를 그냥 잃는 셈입니다.

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.

에이전트가 스스로 처리해야 하는 유일한 것은 자체 지갑에서 온체인 결제를 완료하는 것입니다. 그 양쪽의 모든 것은 단일 HTTP 호출입니다.

55초 배포

에이전트가 당신의 허락 없이 구매할 수 있습니다

만들 계정도, 확인할 이메일도, 입력할 카드도 없습니다.