Find an API

Search public APIs with auth details & Postman guides

← All APIs

Pricing API

nexmo · Company

Company No Auth Free & Open API

The API to retrieve pricing information. Please note the Pricing API is rate limited to one request per second.

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Retrieve outbound pricing for a specific dialing prefix.

Retrieves the pricing information based on the dialing prefix.

https://api.apis.guru/v2/specs/nexmo.com/pricing/0.0.3/get-prefix-pricing/outbound/{type}?prefix=example&api_key=YOUR_API_KEY&api_secret=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/nexmo.com/pricing/0.0.3/get-prefix-pricing/outbound/{type}?prefix=example&api_key=YOUR_API_KEY&api_secret=example"
import requests
params = {
    "prefix": "example",
    "api_key": "YOUR_API_KEY",
    "api_secret": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/nexmo.com/pricing/0.0.3/get-prefix-pricing/outbound/{type}",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/nexmo.com/pricing/0.0.3/get-prefix-pricing/outbound/{type}');
url.searchParams.set('prefix', 'example');
url.searchParams.set('api_key', 'YOUR_API_KEY');
url.searchParams.set('api_secret', 'example');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/nexmo.com/pricing/0.0.3/get-prefix-pricing/outbound/{type}")
	q := baseURL.Query()
	q.Set("prefix", "example")
	q.Set("api_key", "YOUR_API_KEY")
	q.Set("api_secret", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/nexmo.com/pricing/0.0.3/get-prefix-pricing/outbound/{type}")
uri.query = URI.encode_www_form({
  "prefix" => "example",
  "api_key" => "YOUR_API_KEY",
  "api_secret" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/nexmo.com/pricing/0.0.3/get-prefix-pricing/outbound/{type}?" . http_build_query([
    "prefix" => "example",
    "api_key" => "YOUR_API_KEY",
    "api_secret" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Retrieve outbound pricing for a specific country.

Retrieves the pricing information based on the specified country.

https://api.apis.guru/v2/specs/nexmo.com/pricing/0.0.3/get-pricing/outbound/{type}?api_key=YOUR_API_KEY&country=US&api_secret=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/nexmo.com/pricing/0.0.3/get-pricing/outbound/{type}?api_key=YOUR_API_KEY&country=US&api_secret=example"
import requests
params = {
    "api_key": "YOUR_API_KEY",
    "country": "US",
    "api_secret": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/nexmo.com/pricing/0.0.3/get-pricing/outbound/{type}",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/nexmo.com/pricing/0.0.3/get-pricing/outbound/{type}');
url.searchParams.set('api_key', 'YOUR_API_KEY');
url.searchParams.set('country', 'US');
url.searchParams.set('api_secret', 'example');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/nexmo.com/pricing/0.0.3/get-pricing/outbound/{type}")
	q := baseURL.Query()
	q.Set("api_key", "YOUR_API_KEY")
	q.Set("country", "US")
	q.Set("api_secret", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/nexmo.com/pricing/0.0.3/get-pricing/outbound/{type}")
uri.query = URI.encode_www_form({
  "api_key" => "YOUR_API_KEY",
  "country" => "US",
  "api_secret" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/nexmo.com/pricing/0.0.3/get-pricing/outbound/{type}?" . http_build_query([
    "api_key" => "YOUR_API_KEY",
    "country" => "US",
    "api_secret" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Retrieve outbound pricing for all countries.

Retrieves the pricing information for all countries.

https://api.apis.guru/v2/specs/nexmo.com/pricing/0.0.3/get-full-pricing/outbound/{type}?api_key=YOUR_API_KEY&api_secret=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/nexmo.com/pricing/0.0.3/get-full-pricing/outbound/{type}?api_key=YOUR_API_KEY&api_secret=example"
import requests
params = {
    "api_key": "YOUR_API_KEY",
    "api_secret": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/nexmo.com/pricing/0.0.3/get-full-pricing/outbound/{type}",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/nexmo.com/pricing/0.0.3/get-full-pricing/outbound/{type}');
url.searchParams.set('api_key', 'YOUR_API_KEY');
url.searchParams.set('api_secret', 'example');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/nexmo.com/pricing/0.0.3/get-full-pricing/outbound/{type}")
	q := baseURL.Query()
	q.Set("api_key", "YOUR_API_KEY")
	q.Set("api_secret", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/nexmo.com/pricing/0.0.3/get-full-pricing/outbound/{type}")
uri.query = URI.encode_www_form({
  "api_key" => "YOUR_API_KEY",
  "api_secret" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/nexmo.com/pricing/0.0.3/get-full-pricing/outbound/{type}?" . http_build_query([
    "api_key" => "YOUR_API_KEY",
    "api_secret" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));

Postman Setup Guide

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with Pricing API?

Pricing API is a Company API. Developers commonly use company APIs for:

  • enriching CRM records with company firmographics
  • building lead-generation and prospecting tools
  • verifying business identity and registration details
  • monitoring competitors and market intelligence
  • powering B2B data enrichment pipelines

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Pricing API is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide

Open documentation ↗