# Retrieve List of Blockchains

````javascript
Circular.GetBlockchains()
  .then(data => {
    // do something with the data in JSON format
  });
```​⬤
````

### Output

```json
{
  "Result": 200, // Success
  "Response": {
    "Blockchains": [
      // Blockchains Array
      {
        "Address": "0x...", // Chain Address
        "Name": "Circular Main Public" // Chain Name
      }
      // Additional blockchains can be added here
    ]
  }
}
```
