curl --request GET \
--url https://api.simpl.gg/v1/billing/plan \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.simpl.gg/v1/billing/plan"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.simpl.gg/v1/billing/plan', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.simpl.gg/v1/billing/plan",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.simpl.gg/v1/billing/plan"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.simpl.gg/v1/billing/plan")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.simpl.gg/v1/billing/plan")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"plan": "free",
"limits": {
"max_concurrent_servers": 1,
"max_tier": "1x-1g",
"max_server_ttl": 1800,
"regions": [
"iad"
],
"max_builds": 5,
"queues_enabled": false,
"lobbies_enabled": false,
"matchmaking_enabled": false,
"payment_method_required": false
},
"current_period_start": "2026-09-01T00:00:00Z",
"current_period_end": "2026-10-01T00:00:00Z",
"pending_plan": null,
"payment_method": null
}Get the current plan
The account’s plan, the limits it resolves to, and where the billing
cycle sits. limits is the authoritative answer to what this account may
do: prefer it over hardcoding the plan table.
When a downgrade is scheduled, pending_plan names the plan taking
effect at current_period_end.
curl --request GET \
--url https://api.simpl.gg/v1/billing/plan \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.simpl.gg/v1/billing/plan"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.simpl.gg/v1/billing/plan', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.simpl.gg/v1/billing/plan",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.simpl.gg/v1/billing/plan"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.simpl.gg/v1/billing/plan")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.simpl.gg/v1/billing/plan")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"plan": "free",
"limits": {
"max_concurrent_servers": 1,
"max_tier": "1x-1g",
"max_server_ttl": 1800,
"regions": [
"iad"
],
"max_builds": 5,
"queues_enabled": false,
"lobbies_enabled": false,
"matchmaking_enabled": false,
"payment_method_required": false
},
"current_period_start": "2026-09-01T00:00:00Z",
"current_period_end": "2026-10-01T00:00:00Z",
"pending_plan": null,
"payment_method": null
}Authorizations
Developer session token from POST /v1/auth/login or
POST /v1/auth/register. Valid 7 days.
Authenticates the developer control plane. It also reaches the server
and build endpoints, which a dashboard has to drive and which no
session can otherwise call: an API key's value is returned once, at
mint, so nothing can read back a key for an existing project. On those
endpoints a session names its project with project_id, or is
resolved from the resource it addresses, and is always checked against
the account that owns it.
It reaches no player-facing game endpoint.
Response
The current plan and its limits.
The account's current plan, what it allows, and where the billing cycle
sits. Plan changes go through POST /v1/billing/upgrade and
POST /v1/billing/downgrade.
Billing plan for the account. Plan gates capability, not just price.
| free | payg | pro | |
|---|---|---|---|
| price | $0 | usage only | $10/mo + usage |
| server credit | none | none | $5/mo |
| max concurrent servers | 1 | unlimited | unlimited |
| max tier | 1x-1g | all 12 | all 12 |
| max server ttl | 30 min | unlimited | unlimited |
| regions | iad only | all 16 | all 16 |
| max builds | 5 | unlimited | unlimited |
| queues | no | no | yes |
| lobbies | no | no | yes |
| matchmaking | no | no | yes |
| payment method | not required | required | required |
free, payg, pro "free"
The capability ceiling applied by the account's current plan.
Show child attributes
Show child attributes
Set when a downgrade is scheduled. The account keeps its current
plan's capability until current_period_end, then moves to this plan
automatically.
free, payg, pro "free"
The card on file, as reported by Stripe. Simpl never stores or sees a card number.
Show child attributes
Show child attributes