List all products for this partner
curl --request GET \
--url https://api.barker.money/api/partner/products \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.barker.money/api/partner/products"
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.barker.money/api/partner/products', 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.barker.money/api/partner/products",
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.barker.money/api/partner/products"
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.barker.money/api/partner/products")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.barker.money/api/partner/products")
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{
"success": true,
"data": [
{
"slug": "acme-usdc-base",
"partner": "Acme Pay",
"chain": "base",
"chain_id": 8453,
"engine_contract_address": "0x8874f47Af3305B0BeffaE9EB55A174c306091003",
"underlying_vault_address": "0xbeeF010f9cb27031ad51e3333f9aF9C6B1228183",
"asset_symbol": "USDC",
"asset_address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"asset_decimals": 6,
"barker_fee_bps": 1000,
"partner_fee_bps": 1000,
"display_name": "Acme USD Yield",
"risk_label": "balanced",
"status": "active",
"latest_metrics": {
"as_of_date": "2026-05-04",
"engine_total_assets": "1245678.123456",
"underlying_apy": "0.0612",
"net_apy_for_user": "0.0490"
}
}
]
}{
"success": false,
"message": "<string>",
"code": "engine_not_deployed"
}{
"success": false,
"message": "<string>",
"code": "engine_not_deployed"
}products
List all products for this partner
Returns every BarkerEngine product provisioned for the API key’s partner — across all chains.
Each entry includes the latest daily metrics snapshot (latest_metrics) when available; for products
in pending_deploy status the metrics field is null.
Most dashboards call this once on page load and cache the response for ~60 seconds.
GET
/
api
/
partner
/
products
List all products for this partner
curl --request GET \
--url https://api.barker.money/api/partner/products \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.barker.money/api/partner/products"
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.barker.money/api/partner/products', 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.barker.money/api/partner/products",
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.barker.money/api/partner/products"
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.barker.money/api/partner/products")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.barker.money/api/partner/products")
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{
"success": true,
"data": [
{
"slug": "acme-usdc-base",
"partner": "Acme Pay",
"chain": "base",
"chain_id": 8453,
"engine_contract_address": "0x8874f47Af3305B0BeffaE9EB55A174c306091003",
"underlying_vault_address": "0xbeeF010f9cb27031ad51e3333f9aF9C6B1228183",
"asset_symbol": "USDC",
"asset_address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"asset_decimals": 6,
"barker_fee_bps": 1000,
"partner_fee_bps": 1000,
"display_name": "Acme USD Yield",
"risk_label": "balanced",
"status": "active",
"latest_metrics": {
"as_of_date": "2026-05-04",
"engine_total_assets": "1245678.123456",
"underlying_apy": "0.0612",
"net_apy_for_user": "0.0490"
}
}
]
}{
"success": false,
"message": "<string>",
"code": "engine_not_deployed"
}{
"success": false,
"message": "<string>",
"code": "engine_not_deployed"
}