List my plans
curl --request GET \
--url https://api.routeme.sh/provider/plans \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.routeme.sh/provider/plans"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://api.routeme.sh/provider/plans', 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.routeme.sh/provider/plans",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <api-key>"
],
]);
$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.routeme.sh/provider/plans"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<api-key>")
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.routeme.sh/provider/plans")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.routeme.sh/provider/plans")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"id": 123,
"created_at": "2023-11-07T05:31:56Z",
"provider": "<string>",
"provider_id": 123,
"name": "<string>",
"price": 123,
"quota": 123,
"quota_unit": "<string>",
"description": "<string>",
"overage_price": 123,
"overage_limit": 123,
"rate_limit_req": 123,
"rate_limit_req_interval_sec": 123,
"rate_limit_cr": 123,
"rate_limit_cr_interval_sec": 123,
"billing_fixed_day": 123,
"billing_interval_days": 123,
"billing_anchored_start_date": "2023-11-07T05:31:56Z"
}
]Provider
List my plans
Returns the authenticated provider’s pricing plans, or an empty array when the provider has none. Plan creation and pricing edits remain admin-managed.
GET
/
provider
/
plans
List my plans
curl --request GET \
--url https://api.routeme.sh/provider/plans \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.routeme.sh/provider/plans"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://api.routeme.sh/provider/plans', 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.routeme.sh/provider/plans",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <api-key>"
],
]);
$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.routeme.sh/provider/plans"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<api-key>")
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.routeme.sh/provider/plans")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.routeme.sh/provider/plans")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"id": 123,
"created_at": "2023-11-07T05:31:56Z",
"provider": "<string>",
"provider_id": 123,
"name": "<string>",
"price": 123,
"quota": 123,
"quota_unit": "<string>",
"description": "<string>",
"overage_price": 123,
"overage_limit": 123,
"rate_limit_req": 123,
"rate_limit_req_interval_sec": 123,
"rate_limit_cr": 123,
"rate_limit_cr_interval_sec": 123,
"billing_fixed_day": 123,
"billing_interval_days": 123,
"billing_anchored_start_date": "2023-11-07T05:31:56Z"
}
]Authorizations
Management token from the RouteMesh dashboard (Settings → Management Tokens). Required for customer API endpoints (/api-keys, /usage). Tokens are prefixed rmtm_ and scoped to your account. Authenticate by passing the token in the X-Api-Key header. Separate from RPC service keys (rm_), which authenticate dApp traffic to the routing layer.
Response
List of plans or empty array
Plan ID.
Provider identifier.

