Files
ritmex-bot/docs/ccxt/wiki/examples/php/coinone-markets.md
T
2025-10-03 15:28:16 +08:00

321 B

<?php

include './ccxt.php';

$exchange = new \ccxt\coinone(array(
   // 'verbose' => true, // uncomment for verbose output
));

$markets = $exchange->load_markets();

var_dump($markets);
echo "\n" . $exchange->name . " supports " . count($markets) . " pairs\n";

?>