Billbee API
billbee · Commerce
Documentation of the Billbee REST API to connect a Billbee account to external aplications. ## Endpoint The Billbee API endpoint base url is https://api.billbee.io/api/v1 ## Activation You have to enable the API in the settings of your Billbee account. In addition you need a Billbee API Key identifying the application you develop. To get an API key, send a mail to [email protected] and send us a short note about what you are building. ## Authorization & security Because you can access pr
Authentication
Sample Requests
Get a list of all customer addresses
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/billbee.io/v1/api/v1/customer-addresses?page=1&pageSize=1"
import requests
params = {
"page": "1",
"pageSize": "1"
}
response = requests.get(
"https://api.apis.guru/v2/specs/billbee.io/v1/api/v1/customer-addresses",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/billbee.io/v1/api/v1/customer-addresses');
url.searchParams.set('page', '1');
url.searchParams.set('pageSize', '1');
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/billbee.io/v1/api/v1/customer-addresses")
q := baseURL.Query()
q.Set("page", "1")
q.Set("pageSize", "1")
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/billbee.io/v1/api/v1/customer-addresses")
uri.query = URI.encode_www_form({
"page" => "1",
"pageSize" => "1"
})
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/billbee.io/v1/api/v1/customer-addresses?" . http_build_query([
"page" => "1",
"pageSize" => "1"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Get a list of all customers
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/billbee.io/v1/api/v1/customers?page=1&pageSize=1"
import requests
params = {
"page": "1",
"pageSize": "1"
}
response = requests.get(
"https://api.apis.guru/v2/specs/billbee.io/v1/api/v1/customers",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/billbee.io/v1/api/v1/customers');
url.searchParams.set('page', '1');
url.searchParams.set('pageSize', '1');
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/billbee.io/v1/api/v1/customers")
q := baseURL.Query()
q.Set("page", "1")
q.Set("pageSize", "1")
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/billbee.io/v1/api/v1/customers")
uri.query = URI.encode_www_form({
"page" => "1",
"pageSize" => "1"
})
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/billbee.io/v1/api/v1/customers?" . http_build_query([
"page" => "1",
"pageSize" => "1"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Get a list of all events optionally filtered by date. This request is extra throttled to 2 calls per page per hour.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/billbee.io/v1/api/v1/events?page=1&typeId=example&maxDate=example&minDate=example&orderId=1&pageSize=1"
import requests
params = {
"page": "1",
"typeId": "example",
"maxDate": "example",
"minDate": "example",
"orderId": "1",
"pageSize": "1"
}
response = requests.get(
"https://api.apis.guru/v2/specs/billbee.io/v1/api/v1/events",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/billbee.io/v1/api/v1/events');
url.searchParams.set('page', '1');
url.searchParams.set('typeId', 'example');
url.searchParams.set('maxDate', 'example');
url.searchParams.set('minDate', 'example');
url.searchParams.set('orderId', '1');
url.searchParams.set('pageSize', '1');
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/billbee.io/v1/api/v1/events")
q := baseURL.Query()
q.Set("page", "1")
q.Set("typeId", "example")
q.Set("maxDate", "example")
q.Set("minDate", "example")
q.Set("orderId", "1")
q.Set("pageSize", "1")
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/billbee.io/v1/api/v1/events")
uri.query = URI.encode_www_form({
"page" => "1",
"typeId" => "example",
"maxDate" => "example",
"minDate" => "example",
"orderId" => "1",
"pageSize" => "1"
})
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/billbee.io/v1/api/v1/events?" . http_build_query([
"page" => "1",
"typeId" => "example",
"maxDate" => "example",
"minDate" => "example",
"orderId" => "1",
"pageSize" => "1"
]);
$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
- See official documentation for authentication and setup.
What can you build with Billbee API?
Billbee API is a Commerce API. Developers commonly use commerce APIs for:
- syncing product catalogues and inventory levels
- building price comparison and deal-finder tools
- processing orders and tracking shipments
- managing customer wishlists and reviews
- automating abandoned-cart and promotional emails
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Billbee API is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide · Learn about API keys · What is REST?