pub:{action}:{object}:{detail}: Configuration data
API: bitfinex.com:bitfinex
Endpoint: /conf/pub:{action}:{object}:{detail}
Response format: application/json
Auth: none
Method: GET
Last Status:
200
Latency: 243ms
Description
Returns public configuration data including currency labels, symbol mappings, fees, and exchange specifications. Use this to resolve currency codes to full names and understand supported pairs.
From spec: Returns public configuration data including currency mappings, trading pairs, fees, and specifications.
Usage Tips
- Common actions: map, list
- Common objects: currency, symbol, pair
- Returns nested arrays; first element is usually the key/ID
- Useful for discovering available trading symbols
Parameters (3)
action
(string, path, required)
Action type: map, list, info, fees, spec
Constraints: {'enum': ['map', 'list', 'info', 'fees', 'spec']}
detail
(string, path, required)
Detail level (varies by action/object)
object
(string, path, required)
Object type: currency, pair, etc.
Examples (1)
Get currency label mappings
probe-gate
Demonstrates fetching the mapping of currency codes to their full display names
Curl
Python Requests
Zingu Apis
Javascript Fetch
curl 'https://api-pub.bitfinex.com/v2/conf/pub:map:currency:label'
import requests
resp = requests.get("https://api-pub.bitfinex.com/v2/conf/pub:map:currency:label")
data = resp.json()
import zingu_apis
api = zingu_apis.api("bitfinex")
result = api.fetch("conf/pub:{action}:{object}:{detail}")
for item in result:
print(item)
const resp = await fetch("https://api-pub.bitfinex.com/v2/conf/pub:map:currency:label");
const data = await resp.json();
Run
Truncate
Auto
Table
Raw
Probe History
Time Status Latency Size
2026-04-16 17:15:07.413591
200
243ms
2026-04-16 02:14:50.520610
200
161ms
2026-04-15 03:25:23.397421
200
160ms
2026-04-14 01:50:37.702923
200
168ms
2026-04-12 14:16:16.049313
200
149ms
2026-04-10 02:41:19.969128
200
333ms
2026-04-09 00:29:14.121579
200
229ms
2026-04-08 00:22:28.844307
200
169ms
2026-04-07 00:26:02.627688
200
159ms
2026-04-05 17:58:02.223128
ERR
—
2026-04-05 00:25:04.871907
200
191ms