Announcing Celo Support
Center.dev now supports Celo.
We are excited to share that Center now supports Celo.
Celo is an EVM-compatible L1 with low fees, cross-chain interoperability and integrated stablecoin support. It has cultivated a rich ecosystem of dedicated builders focused on creating a better financial system. With a strong mobile focus, Celo allows users to easily make financial transactions with cryptocurrencies, as well as access decentralized applications, using their mobile devices.
Developers can now use Center’s API to build NFT-related applications on Celo. Center offers a wide suite of functionality that will help you ship your product faster, including access to:
- Ownership and transfer data
- Collection and asset data
- Search
- NFT Rendering
- Market data (e.g., floor price, market cap)
Get started
Building an NFT-related application may seem daunting, but our APIs can help abstract away complex infrastructure details so you can focus on what matters to your users. We already support a wide variety of applications, including NFT marketplaces, wallets, data intelligence tools and portfolio trackers.
Ready to get started?
- Sign up for an API key
Need help or want more information?
- Check out our documentation
- Contact our support team
- Join Center's Discord or Telegram channels
- Follow us on Twitter
Or check out a few examples:
Demo: Search for a collection
Note: Limited to 3 results for display purposes
Request
curl -XGET "<https://api.center.dev/v1/celo-mainnet/search?query=Shadowfied&limit=3>"
Result
{
"results": [
{
"id": "celo-mainnet/0x2d66F30E15bc3001341Ea16384Dd1Ef5eaeF56c4/3",
"name": "Shadowfied BAYC #0003",
"previewImageUrl": "<https://cdn.center.app/v2/42220/b4c94b3c4c7d13fcd64dcc2a9de335b2e2a2db54ee1784dc97559c2c1c3a861d/779709c274ae93d5ad54cdbb704e06f07ea3b78b37d99d45f9b24aad6d50dcea.gif>",
"relevance": 9.198799,
"url": "<https://center.app/celo-mainnet/collections/0x2d66F30E15bc3001341Ea16384Dd1Ef5eaeF56c4/3>",
"address": "0x2d66F30E15bc3001341Ea16384Dd1Ef5eaeF56c4",
"tokenId": "3",
"type": "Asset"
},
{
"id": "celo-mainnet/0x3568009FA33dC1B80310DA05C3268c0c8DFE6Dbb/0",
"name": "Shadowfied BAYC #0000",
"previewImageUrl": "<https://cdn.center.app/v2/42220/56dccae9fe857cdd6d2306e97508be6046e9cea030e6a868762bd5a4a2ddc9a3/9541d93ccdf9d7f4ae565f7de20578e4935308cb1c9d91b4320a72ab120c1a25.gif>",
"relevance": 9.198799,
"url": "<https://center.app/celo-mainnet/collections/0x3568009FA33dC1B80310DA05C3268c0c8DFE6Dbb/0>",
"address": "0x3568009FA33dC1B80310DA05C3268c0c8DFE6Dbb",
"tokenId": "0",
"type": "Asset"
},
{
"id": "celo-mainnet/0x3568009FA33dC1B80310DA05C3268c0c8DFE6Dbb/18",
"name": "Shadowfied BAYC #0018",
"previewImageUrl": "<https://cdn.center.app/v2/42220/6fe33c0ae1ac59909000fbc0750951484b7eccf329e4423414f123d611ad139f/b007ace46d6b5f71371a1a999fad5edff79b2176dd181ac0bb4c1faad361b325.gif>",
"relevance": 9.198799,
"url": "<https://center.app/celo-mainnet/collections/0x3568009FA33dC1B80310DA05C3268c0c8DFE6Dbb/18>",
"address": "0x3568009FA33dC1B80310DA05C3268c0c8DFE6Dbb",
"tokenId": "18",
"type": "Asset"
}
]
}
Demo: View assets owned by a wallet
Note: Limited to 3 results for display purposes
Request
curl -XGET "<https://api.center.dev/v1/celo-mainnet/account/0x00560E5b6e3817E0DdccbC3d96279b7BDa387D08/assets-owned?limit=3>"
Result
{
"items": [
{
"address": "0x38f4F48c9Ab6B96daedA4Fae1F40c288b8656E8C",
"tokenId": "202122000000000500000000000000000595",
"smallPreviewImageUrl": "<https://cdn.center.app/v2/42220/15e4efc7a28a10c037cc7eabcdcce381b7092cf425d7d0ee3db6e4426fc1f870/02cfeca024243aa8e0bee8724c3f9c9503f2701c5c18262571972b6c6eefa107.png>"
},
{
"address": "0x38f4F48c9Ab6B96daedA4Fae1F40c288b8656E8C",
"tokenId": "202122000000003300000000000000000521",
"smallPreviewImageUrl": "<https://cdn.center.app/v2/42220/9c89d32f9994103df42de9d2e67419b2f95e3b4f5f852aeaca3d6fe8de98099a/cbdfe3b5041cab6173d73fe9653475e3e1710922f92d0ed1cc938adaccd4eafa.png>"
},
{
"address": "0x38f4F48c9Ab6B96daedA4Fae1F40c288b8656E8C",
"tokenId": "202122000000005500000000000000000710",
"smallPreviewImageUrl": "<https://cdn.center.app/v2/42220/6f9258791fe76517be49d587cdc29208871f5530ab7ce8c91a8328b3f7aea204/54433c5bbd28df7f7629ff94f1d81377b2d4b3cbe163e1551e393a2d64423b50.png>"
}
],
"paging": {
"offset": 0,
"limit": 3,
"onLastPage": false
}
}