βοΈFilecoin Miner ID <-> Peer ID relation API
This API provides relation in between Filecoin Miner IDs and Peer IDs.
Last updated
This API provides relation in between Filecoin Miner IDs and Peer IDs.
Last updated
By passing in the comma delimited list of Miner Ids, you can search for related Peer Ids in the system.
GET
https://green.filecoin.space/minerid-peerid/api/v1/peer_id
Example:
https://green.filecoin.space/minerid-peerid/api/v1/peer-id?miner_id=f01234
miner_id
String
Comma separated list of miner IDs
[
{
"Head": 1908194,
"MinerId": "f01234",
"PeerId": "12D3KooWPWJemjphGa2pANr6j7HCaLyjUvCroHyTJsATY6TaCFAF",
"Multiaddrs": [
"BI2KQBQGXcE="
By passing in the comma delimited list of Peer Ids, you can search for related Miner Ids in the system.
GET
https://green.filecoin.space/minerid-peerid/api/v1/miner_id
peer_id
String
Comma separated list of peer IDs
[
{
"Head": 1908194,
"MinerId": "f01234",
"PeerId": "12D3KooWPWJemjphGa2pANr6j7HCaLyjUvCroHyTJsATY6TaCFAF",
"Multiaddrs": [
"BI2KQBQGXcE="
]
}
]