Get pricing
Copy page
SMS rates per destination country and network.
GET
/api/v1/user/pricing
· Permission: pricing.read
Request
Section titled “Request”curl https://restlink23telecom.com/api/v1/user/pricing \ -H "X-API-Key: $API_KEY"const res = await fetch('https://restlink23telecom.com/api/v1/user/pricing', { method: 'GET', headers: { 'X-API-Key': process.env.API_KEY },});
if (!res.ok) { const err = await res.json(); throw new Error(`${err.error_code}: ${err.description}`);}const data = await res.json();console.log(data);import osimport requests
res = requests.get( "https://restlink23telecom.com/api/v1/user/pricing", headers={"X-API-Key": os.environ["API_KEY"]},)res.raise_for_status()print(res.json())<?php$ch = curl_init('https://restlink23telecom.com/api/v1/user/pricing');curl_setopt_array($ch, [ CURLOPT_RETURNTRANSFER => true, CURLOPT_HTTPHEADER => ['X-API-Key: ' . getenv('API_KEY')],]);
$response = curl_exec($ch);$status = curl_getinfo($ch, CURLINFO_HTTP_CODE);curl_close($ch);
if ($status !== 200) { throw new Exception("HTTP $status: $response");}$data = json_decode($response, true);print_r($data);require "net/http"require "json"
uri = URI("https://restlink23telecom.com/api/v1/user/pricing")req = Net::HTTP::Get.new(uri)req["X-API-Key"] = ENV.fetch("API_KEY")
res = Net::HTTP.start(uri.hostname, uri.port, use_ssl: true) { |http| http.request(req) }raise "HTTP #{res.code}: #{res.body}" unless res.is_a?(Net::HTTPSuccess)
puts JSON.parse(res.body)import java.net.URI;import java.net.http.HttpClient;import java.net.http.HttpRequest;import java.net.http.HttpResponse;
HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder() .uri(URI.create("https://restlink23telecom.com/api/v1/user/pricing")) .header("X-API-Key", System.getenv("API_KEY")) .GET() .build();
HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());System.out.println(response.body());package main
import ( "fmt" "io" "net/http" "os")
func main() { req, err := http.NewRequest("GET", "https://restlink23telecom.com/api/v1/user/pricing", nil) if err != nil { panic(err) } req.Header.Set("X-API-Key", os.Getenv("API_KEY"))
res, err := http.DefaultClient.Do(req) if err != nil { panic(err) } defer res.Body.Close()
data, _ := io.ReadAll(res.Body) fmt.Println(string(data))}using System.Text;
using var client = new HttpClient();client.DefaultRequestHeaders.Add("X-API-Key", Environment.GetEnvironmentVariable("API_KEY"));
var response = await client.GetAsync("https://restlink23telecom.com/api/v1/user/pricing");
response.EnsureSuccessStatusCode();Console.WriteLine(await response.Content.ReadAsStringAsync());Response
Section titled “Response”An array of pricing entries — one per network:
[ { "mcc": "310", "mnc": "004", "mccmnc": "310004", "dialcode": "1", "country": "United States", "network": "Verizon Wireless", "rate": 0.0085, "prev_rate": 0.0080, "rate_start_date": "2026.01.08 22:15:29", "rate_end_date": "2100.01.01 00:00:00", "change_type": "Increase" }]| Field | Description |
|---|---|
mcc / mnc / mccmnc | Mobile Country Code, Network Code and the combined identifier |
dialcode | International dialing prefix |
country / network | Human-readable names |
rate | Current rate in your account currency |
prev_rate | Previous rate, for change tracking |
rate_start_date | When the current rate took effect (YYYY.MM.DD HH:MM:SS) |
rate_end_date | Far-future sentinel (2100.01.01) while the rate is ongoing |
change_type | Same, Increase or Decrease |
POST /user/pricingreturns identical data (kept for frontend compatibility; the request body is ignored).GET /user/pricing/:idis currently a stub returning{}— fetch the full list and filter client-side bymccmnc.- During account setup the endpoint returns HTTP 200 with
{"status": false, "error": "Account is in setup process", …}. - Degraded-cache behavior matches balance:
an empty array
[]plusX-Sms-Gateway-Status: unavailable.