Find an API

Search public APIs with auth details & Postman guides

← All APIs

brainbi

brainbi · Commerce

Commerce No Auth Free & Open ecommerce

Welcome to the official API of the brainbi platform. Using this API you can freely integrate our analytics platform with any other solution. Please refer to the following documentation and in case of any issues, please contact us at [email protected]. Please note: for this API you will use your email and password from the brainbi.net platform to gather a Bearer Token for any API calls (use Login and get token). Once you are finished with your calls, please do a logout to remove your token an

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Customers

This resource lists all cusomters that are currently saved in your account.

https://api.apis.guru/v2/specs/brainbi.net/1.0.0/api/customers?=

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/brainbi.net/1.0.0/api/customers?="
import requests
params = {
    "": ""
}
response = requests.get(
    "https://api.apis.guru/v2/specs/brainbi.net/1.0.0/api/customers",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/brainbi.net/1.0.0/api/customers');
url.searchParams.set('', '');

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/brainbi.net/1.0.0/api/customers")
	q := baseURL.Query()
	q.Set("", "")
	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/brainbi.net/1.0.0/api/customers")
uri.query = URI.encode_www_form({
  "" => ""
})

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/brainbi.net/1.0.0/api/customers?" . http_build_query([
    "" => ""
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Orders

This resource lists all orders that are currently saved in your account.

https://api.apis.guru/v2/specs/brainbi.net/1.0.0/api/orders?=

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/brainbi.net/1.0.0/api/orders?="
import requests
params = {
    "": ""
}
response = requests.get(
    "https://api.apis.guru/v2/specs/brainbi.net/1.0.0/api/orders",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/brainbi.net/1.0.0/api/orders');
url.searchParams.set('', '');

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/brainbi.net/1.0.0/api/orders")
	q := baseURL.Query()
	q.Set("", "")
	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/brainbi.net/1.0.0/api/orders")
uri.query = URI.encode_www_form({
  "" => ""
})

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/brainbi.net/1.0.0/api/orders?" . http_build_query([
    "" => ""
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Products

This resource lists all products that are currently saved in you account.

https://api.apis.guru/v2/specs/brainbi.net/1.0.0/api/products?=

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/brainbi.net/1.0.0/api/products?="
import requests
params = {
    "": ""
}
response = requests.get(
    "https://api.apis.guru/v2/specs/brainbi.net/1.0.0/api/products",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/brainbi.net/1.0.0/api/products');
url.searchParams.set('', '');

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/brainbi.net/1.0.0/api/products")
	q := baseURL.Query()
	q.Set("", "")
	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/brainbi.net/1.0.0/api/products")
uri.query = URI.encode_www_form({
  "" => ""
})

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/brainbi.net/1.0.0/api/products?" . http_build_query([
    "" => ""
]);
$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 brainbi?

brainbi 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. brainbi 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?

Open documentation ↗