VPS.org API

REST API દસ્તાવેજીકરણ

સ્થાનો API

Retrieve information about available datacenter locations for VPS deployment.

અંતિમ બિંદુઓ 1 endpoint
બેઝ પાથ /api/v1/locations
મેળવો /api/v1/locations/

બધા સ્થાનોની યાદી બનાવો

બધા ઉપલબ્ધ માહિતી કેન્દ્ર સ્થાનોની યાદી મેળવો જ્યાં તમે VPS સર્વરોને સ્થાપિત કરી શકો છો.

ક્વેરી પરિમાણો

પરિમાણો પ્રકાર જરૂરી વર્ણન
region string નહિં Filter by region: north-america, europe, asia, oceania
available boolean નહિં Show only locations currently accepting new servers

ઉદાહરણ વિનંતી

cURL
Python
JavaScript
PHP
curl -X GET "https://admin.vps.org/api/v1/locations/" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json"
import requests

url = "https://admin.vps.org/api/v1/locations/"
headers = {
    "Authorization": "Bearer YOUR_API_TOKEN",
    "Content-Type": "application/json"
}

response = requests.get(url, headers=headers)
print(response.json())
const response = await fetch('https://admin.vps.org/api/v1/locations/', {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer YOUR_API_TOKEN',
    'Content-Type': 'application/json'
  }
});

const locations = await response.json();
console.log(locations);
$ch = curl_init('https://admin.vps.org/api/v1/locations/');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    'Authorization: Bearer YOUR_API_TOKEN',
    'Content-Type: application/json'
]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$response = curl_exec($ch);
$locations = json_decode($response, true);
curl_close($ch);

ઉદાહરણ પ્રતિભાવ

{
  "count": 8,
  "results": [
    {
      "id": 1,
      "name": "New York",
      "slug": "ny-usa",
      "country": "United States",
      "country_code": "US",
      "city": "New York",
      "region": "north-america",
      "continent": "North America",
      "available": true,
      "latitude": 40.7128,
      "longitude": -74.0060,
      "network_provider": "Digital Realty",
      "features": [
        "100% Uptime SLA",
        "DDoS Protection",
        "IPv6 Support",
        "Private Networking",
        "Low Latency to US East Coast"
      ],
      "average_latency_ms": {
        "us-east": 2,
        "us-west": 75,
        "europe": 85,
        "asia": 220
      }
    },
    {
      "id": 2,
      "name": "San Francisco",
      "slug": "sf-usa",
      "country": "United States",
      "country_code": "US",
      "city": "San Francisco",
      "region": "north-america",
      "continent": "North America",
      "available": true,
      "latitude": 37.7749,
      "longitude": -122.4194,
      "network_provider": "Equinix",
      "features": [
        "100% Uptime SLA",
        "DDoS Protection",
        "IPv6 Support",
        "Private Networking",
        "Low Latency to US West Coast & Asia"
      ],
      "average_latency_ms": {
        "us-east": 75,
        "us-west": 2,
        "europe": 150,
        "asia": 120
      }
    },
    {
      "id": 3,
      "name": "London",
      "slug": "lon-uk",
      "country": "United Kingdom",
      "country_code": "GB",
      "city": "London",
      "region": "europe",
      "continent": "Europe",
      "available": true,
      "latitude": 51.5074,
      "longitude": -0.1278,
      "network_provider": "Telehouse",
      "features": [
        "100% Uptime SLA",
        "DDoS Protection",
        "IPv6 Support",
        "Private Networking",
        "GDPR Compliant",
        "Low Latency to Europe"
      ],
      "average_latency_ms": {
        "us-east": 85,
        "us-west": 150,
        "europe": 5,
        "asia": 180
      }
    },
    {
      "id": 4,
      "name": "Frankfurt",
      "slug": "fra-de",
      "country": "Germany",
      "country_code": "DE",
      "city": "Frankfurt",
      "region": "europe",
      "continent": "Europe",
      "available": true,
      "latitude": 50.1109,
      "longitude": 8.6821,
      "network_provider": "Interxion",
      "features": [
        "100% Uptime SLA",
        "DDoS Protection",
        "IPv6 Support",
        "Private Networking",
        "GDPR Compliant",
        "Central European Location"
      ],
      "average_latency_ms": {
        "us-east": 95,
        "us-west": 160,
        "europe": 3,
        "asia": 200
      }
    },
    {
      "id": 5,
      "name": "Singapore",
      "slug": "sgp-sg",
      "country": "Singapore",
      "country_code": "SG",
      "city": "Singapore",
      "region": "asia",
      "continent": "Asia",
      "available": true,
      "latitude": 1.3521,
      "longitude": 103.8198,
      "network_provider": "Equinix",
      "features": [
        "100% Uptime SLA",
        "DDoS Protection",
        "IPv6 Support",
        "Private Networking",
        "Low Latency to Asia Pacific"
      ],
      "average_latency_ms": {
        "us-east": 250,
        "us-west": 180,
        "europe": 170,
        "asia": 5
      }
    },
    {
      "id": 6,
      "name": "Tokyo",
      "slug": "tok-jp",
      "country": "Japan",
      "country_code": "JP",
      "city": "Tokyo",
      "region": "asia",
      "continent": "Asia",
      "available": true,
      "latitude": 35.6762,
      "longitude": 139.6503,
      "network_provider": "Equinix",
      "features": [
        "100% Uptime SLA",
        "DDoS Protection",
        "IPv6 Support",
        "Private Networking",
        "Low Latency to East Asia"
      ],
      "average_latency_ms": {
        "us-east": 180,
        "us-west": 120,
        "europe": 240,
        "asia": 8
      }
    },
    {
      "id": 7,
      "name": "Sydney",
      "slug": "syd-au",
      "country": "Australia",
      "country_code": "AU",
      "city": "Sydney",
      "region": "oceania",
      "continent": "Oceania",
      "available": true,
      "latitude": -33.8688,
      "longitude": 151.2093,
      "network_provider": "NextDC",
      "features": [
        "100% Uptime SLA",
        "DDoS Protection",
        "IPv6 Support",
        "Private Networking",
        "Low Latency to Australia & New Zealand"
      ],
      "average_latency_ms": {
        "us-east": 210,
        "us-west": 140,
        "europe": 280,
        "asia": 120
      }
    },
    {
      "id": 8,
      "name": "Toronto",
      "slug": "tor-ca",
      "country": "Canada",
      "country_code": "CA",
      "city": "Toronto",
      "region": "north-america",
      "continent": "North America",
      "available": true,
      "latitude": 43.6532,
      "longitude": -79.3832,
      "network_provider": "Cologix",
      "features": [
        "100% Uptime SLA",
        "DDoS Protection",
        "IPv6 Support",
        "Private Networking",
        "Data Sovereignty (Canada)"
      ],
      "average_latency_ms": {
        "us-east": 20,
        "us-west": 65,
        "europe": 90,
        "asia": 210
      }
    }
  ]
}

પ્રતિભાવ ક્ષેત્રો

ક્ષેત્ર પ્રકાર વર્ણન
id integer Unique location identifier
name string Human-readable location name
slug string URL-friendly location identifier
country string Country name
country_code string ISO 3166-1 alpha-2 country code
city string City name
region string Geographic region (north-america, europe, asia, oceania)
continent string Continent name
available boolean Whether location is accepting new servers
latitude decimal Geographic latitude
longitude decimal Geographic longitude
network_provider string Datacenter/network provider name
features array List of location-specific features
average_latency_ms object Average latency in milliseconds to major regions

પ્રતિભાવ સ્થિતિ કોડ્સ

200 સ્થાનોની સૂચિ સફળતાપૂર્વક પુનઃપ્રાપ્ત થઈ
401 અનધિકૃત - અમાન્ય અથવા ખૂટતું પ્રમાણીકરણ ટોકન

Choosing the Right Location

લક્ષ્ય પ્રેક્ષકો વડે

Target Audience Recommended Locations Why
US East Coast Users New York, Toronto Lowest latency (2-20ms), close proximity
US West Coast Users San Francisco Lowest latency (2ms), silicon valley connectivity
European Users London, Frankfurt GDPR compliant, low latency (3-5ms) across Europe
Asian Users Singapore, Tokyo Best connectivity to Asia Pacific region (5-8ms)
Australian/NZ Users Sydney Only Oceania location, lowest latency to Australia
Global Audience Multiple locations with load balancing Deploy in 2-3 regions for global coverage

અનુરૂપતા જરૂરિયાતો દ્વારા

નેટવર્ક કાર્યક્ષમતા

મુખ્ય બજારો માટે નીચું લૅટેન્સી
  • ઉત્તર અમેરિકા: ન્યુ યોર્ક (૨ms US પૂર્વ), સાન ફ્રાન્સિસ્કો (૨ms US પશ્ચિમ)
  • યુરોપ: ફ્રેન્કફર્ટ (૩ms), લંડન (૫ms)
  • એશિયા: સિંગાપોર (5ms), ટોક્યો (8ms)
  • ઓસેનિયા: સિંડને (માત્ર વિકલ્પ)
વૈશ્વિક વહેંચણી માટે શ્રેષ્ઠ
  1. પ્રાથમિક: ન્યુ યોર્ક અથવા સાન ફ્રાન્સિસ્કો (વધુ મોટો વપરાશકર્તા આધાર)
  2. બીજુ: લંડન અથવા ફ્રાન્કફર્ટ (યુરોપ કવરેજ)
  3. તૃતીય: સિંગાપોર અથવા ટોક્યો (એશિયા કવરેજ)
મદદ: મિશન-ક્રિટિકલ એપ્લિકેશન્સ માટે, મહત્તમ અપટાઇમ અને ભૌગોલિક અપૂરતીતા માટે સ્વયં ફેઇલોવર સાથે ઘણાં સ્થળોએ વિસ્તૃત કરો.

ડેટા સેન્ટર ઇન્ફ્રાસ્ટ્રક્ચર

પ્રમાણભૂત લક્ષણો (બધા સ્થાનો)

  • ✓ સ્તર III અથવા ઉચ્ચ ડેટા સેન્ટર
  • ✓ 100% અપટાઇમ SLA
  • ✓ અપૂરતું પાવર (N+1 અથવા 2N)
  • ✓ અપૂરતું ઠંડુ પાડવું
  • ✓ 24/7 ભૌતિક સુરક્ષા
  • ✓ બાયોમેટ્રિક પ્રવેશ નિયંત્રણો
  • ✓ DDoS સુરક્ષા (10 Tbps સુધી મટીગેશન)
  • ✓ IPv4 અને IPv6 આધાર
  • ✓ ખાનગી નેટવર્કિંગ (VLAN)
  • ✓ 10 Gbps+ નેટવર્ક બેકબોન
  • ✓ ઘણાબધા અપસ્ટ્રીમ પૂરૂં પાડનારાઓ
  • ✓ મુખ્ય નેટવર્કો સાથે BGP પીરીંગ

નેટવર્ક પૂરૂં પાડનારાઓ

સ્થાન પૂરૂં પાડનાર તીર નોંધો
New York Digital Realty Tier III Major internet exchange point
San Francisco Equinix Tier III Silicon Valley connectivity hub
London Telehouse Tier III LINX (London Internet Exchange)
Frankfurt Interxion Tier III DE-CIX (world's largest IXP)
Singapore Equinix Tier III Asia Pacific connectivity hub
Tokyo Equinix Tier III JPIX and JPNAP peering
Sydney NextDC Tier III Oceania's largest datacenter
Toronto Cologix Tier III Canadian data sovereignty

Location Migration & Multi-Region Deployment

સ્થાનો વચ્ચે ખસેડી રહ્યા છે

તમે સ્નેપશોટની મદદથી વિવિધ સ્થાનમાં તમારી VPS ને સ્થળાંતરિત કરી શકો છો:

  1. તમારા વર્તમાન VPS નો સ્નેપશોટ બનાવો
  2. લક્ષ્ય સ્થાનમાં નવું VPS બનાવો
  3. નવી VPS માં સ્નેપશોટ પુનઃસંગ્રહો
  4. નવી IP ને નિર્દેશ કરવા માટે DNS રેકોર્ડોને સુધારો
  5. એકવાર સ્થળાંતર ચકાસાયેલ હોય ત્યારે જૂનું VPS કાઢી નાંખો
નોંધ: નવી જગ્યા પર સ્થળાંતર કરવાનું નવું IP સરનામું પરિણામ આપશે. DNS પ્રસારણ સમય માટે યોજના બનાવો (સામાન્ય રીતે સંપૂર્ણ વૈશ્વિક પ્રસારણ માટે ૨૪-૪૮ કલાક).

બહુ-સ્થળોનું વિસ્તરણ

ઉચ્ચ ઉપલબ્ધતા અને વૈશ્વિક પહોંચ માટે, ઘણાં સ્થળોએ વિસ્તરણ કરવાનું વિચારો:

કેસ વાપરો
  • વૈશ્વિક સમાવિષ્ટોનું વિતરણ
  • ભૂગોળીય ભાર સંતુલન
  • આપત્તિ પુનઃપ્રાપ્તિ
  • માહિતી રહેઠાણ કાયદાઓનું પાલન
  • આંતરરાષ્ટ્રીય વપરાશકર્તાઓ માટે ઘટાડેલ વિલંબ
અમલીકરણ
  • DNS-આધારિત ભાર સંતુલન (GeoDNS)
  • CDN એકીકરણ (ક્લાઉડફ્લેર, વગેરે)
  • વિસ્તારો પર ડેટાબેઝ પ્રતિક્રમણ
  • વહેંચાયેલ સંગ્રહ ઉકેલો
  • કાર્યક્રમ-સ્તર ફેઈલોવર
Need help with multi-region deployment? Contact our solutions team at solutions@vps.org for architecture consulting.