TunnelSats Public Wireguard API
  1. πŸ“’ Public
TunnelSats Public Wireguard API
  • About our team
  • πŸ“’ Public
    • List Servers
      GET
    • Create Subscription
      POST
    • Check Status / Heal
      GET
    • Claim Subscription
      POST
    • Renew Subscription
      POST
    • Get Subscription Status
      POST
  • πŸ” Authenticated
    • List My Subscriptions
      GET
    • Sync Subscription
      POST
    • Create Referral Code
      POST
    • Referral History
      GET
  • Announcements
    • πŸ’« What is TunnelSats?
    • πŸš€ Introducing the TunnelSats Public API v1
  • Cookbook
    • πŸ› οΈ Automation & Code Examples
    • 🐚 Bash One-Liners
    • πŸ›‘ Error Codes & Troubleshooting
    • 🎁 Referral Program: Earn Bonus Months
  • Schemas
    • Server
    • InvoiceOrder
    • SubscriptionStatus
    • WireGuardConfig
    • ReferralCode
    • ReferralHistory
    • NodeLookup
    • ConnectivityResult
  1. πŸ“’ Public

List Servers

GET
/api/public/v1/servers
Returns available VPN servers.

Request

None

Responses

🟒200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://tunnelsats.com/api/public/v1/servers'
Response Response Example
{
    "servers": [
        {
            "id": "eu-de",
            "country": "Germany",
            "city": "Nuremberg",
            "flag": "πŸ‡©πŸ‡ͺ",
            "status": "online"
        },
        {
            "id": "us-east",
            "country": "USA",
            "city": "Ashburn",
            "flag": "πŸ‡ΊπŸ‡Έ",
            "status": "online"
        },
        {
            "id": "us-west",
            "country": "USA",
            "city": "Hillsboro",
            "flag": "πŸ‡ΊπŸ‡Έ",
            "status": "online"
        },
        {
            "id": "asia-sg",
            "country": "Singapore",
            "city": "Singapore",
            "flag": "πŸ‡ΈπŸ‡¬",
            "status": "online"
        },
        {
            "id": "sa-br",
            "country": "Brazil",
            "city": "Sao Paulo",
            "flag": "πŸ‡§πŸ‡·",
            "status": "online"
        },
        {
            "id": "oc-au",
            "country": "Australia",
            "city": "Sydney",
            "flag": "πŸ‡¦πŸ‡Ί",
            "status": "online"
        }
    ]
}
Modified atΒ 2026-02-11 21:31:23
Previous
πŸ“’ Public
Next
Create Subscription
Built with