Single product detail (with latest metrics)
curl --request GET \
--url https://api.barker.money/api/partner/products/{slug} \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.barker.money/api/partner/products/{slug}"
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/{slug}', 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/{slug}",
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/{slug}"
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/{slug}")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.barker.money/api/partner/products/{slug}")
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",
"asset_symbol": "USDC",
"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,
"code": "not_found",
"message": "Product not found"
}products
Single product detail (with latest metrics)
Same Product shape as the list endpoint, scoped to one slug. Use this when you already know
the slug (e.g. from a deep-link or cached config) and don’t need to fetch the whole list.
GET
/
api
/
partner
/
products
/
{slug}
Single product detail (with latest metrics)
curl --request GET \
--url https://api.barker.money/api/partner/products/{slug} \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.barker.money/api/partner/products/{slug}"
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/{slug}', 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/{slug}",
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/{slug}"
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/{slug}")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.barker.money/api/partner/products/{slug}")
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",
"asset_symbol": "USDC",
"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,
"code": "not_found",
"message": "Product not found"
}