LogoLogo
edgegap.comDashboard
  • 📘Learning Center
    • Getting Started
    • Unity Games
      • Getting Started - Servers
      • Developer Tools
    • Unreal Engine Games
      • Getting Started - Servers
      • Developer Tools
    • Matchmaking
      • Getting Started
      • Matchmaker In-Depth
      • Ping Beacons
    • Advanced Features
      • Apps and Versions
      • Deployments
      • Managed Clusters
  • API Reference
    • Dedicated Servers
    • Integration
    • Matchmaking
    • Peer to Peer
  • Release Notes
  • 📚Documentation
    • Sample Projects
      • Unity Netcodes
        • Unity NGO
        • Photon Fusion 1
        • Photon Fusion 2
        • Mirror
        • Mirror WebGL
        • Fishnet
        • Fishnet WebGL
        • Photon Bolt
      • Unreal Top-Down Sample
      • NuxtJS
      • Ruby On Rails
      • Unity Lobbies
      • Unity Matchmaker
    • Tools & Integrations
      • Container
        • What is Docker
        • Your First Docker
        • The Good Practices
        • SSH in Your Container
        • External Registries
          • Docker Hub
          • AWS ECR
          • GCP GCR
          • Gitlab registry
      • Deploy from Nakama
      • EOS Lobby Integration
      • Switch From Gamelift
      • Switch From Multiplay
      • Playfab Bridge
    • Deployment
      • Endpoint Storage
        • How to Save Logs
        • Upload File to Deployment
      • Webhooks
    • Application
      • Command and Arguments
      • 1:1 Port Mapping
    • Session
      • How They Work
      • Application Version Configuration
      • Manage Request
      • Selectors Filtering
    • Fleet
      • Fleet Policy
      • Policy Filter
      • Linking Version
      • Fleet's Deployment
    • Container Registry
    • Distributed Relay
      • Matchmaker/Lobby
      • Relay Edgegap API
      • Transport Samples
    • Lobby
      • Lobby Service
      • Functions
    • Glossary
    • SLA Terms
Powered by GitBook
LogoLogo

Connect with Community

  • Discord
  • Linkedin
  • X

Read More

  • Release Notes
  • Blog
  • Enterprise
  • Legal
  • edgegap.com

© 2025 Edgegap

On this page
  • Authentication Token
  • Response Pagination
  • Rate Limiting

Was this helpful?

API Reference

PreviousManaged ClustersNextDedicated Servers

Last updated 2 months ago

Was this helpful?

Get access to management functions for your Edgegap resources using HTTP requests.

Authentication Token

Generate (and view) your secret tokens for Edgegap API in .

Add your secret token with each API request as an HTTP header (include the word token):

Authorization: token xxxxxxxx-e458-4592-b607-c2c28afd8b62

Do not integrate Edgegap API endpoints in game client, as your API token provides unlimited access to your account. See Matchmaking for secure client-facing API endpoints and functions.

In case your secret tokens are compromised, delete them, and update organization member passwords.

Response Pagination

In case a response would contain too many items, we return a subset of data with pagination info:

{
  "count": 100,
  "data": ["foo-0", "[...]", "bar-9"],
  "": {
    "number": 1,
    "next_page_number": 2,
    "previous_page_number": null
    "paginator": {
      "num_pages": 10
    },
    "has_next": true,
    "has_previous": false
  }
}

For paginated response, use parameters page and limit to retrieve more results:

  • second page: https://api.edgegap.com/v1/apps?page=2

  • more results: https://api.edgegap.com/v1/apps?limit=20

  • combined: https://api.edgegap.com/v1/apps?page=2&limit=20

Rate Limiting

To ensure platform stability and prevent surprise invoices, we rate limit your organization's API usage:

  • Deployments at 40 requests per second,

at 10 requests per second.

to plan releases, run load tests, estimate launch traffic, and prepare for success.

Contact us
Download the full openAPI specification of Edgegap API.
Dashboard - User Settings / Tokens

See Getting Started for your first steps with Matchmaker, game integration, and detailed examples.

If you need help, . For live games support see our .

please reach out to us over Discord
ticketing system
Context & Status