Last updated 3 months ago
Retrieve and return all on-chain inscription information for a specific DID name.
Successful operation
0: Success, -1: Error
0
A list of on-chain inscription information for the specified DID.
const response = await fetch('https://open-api.b137.io/v1/getDidDetail?did=text', { method: 'GET', headers: {}, }); const data = await response.json();
{ "code": 0, "data": [ { "owner": "bc1plhw3qceajqpv2q96zt365z278ce5jyecz0d5zjrnrad96y7c34msk4v7u6", "inscriptionId": "c562cbbc69346b355771342047967a58be2eed054cfb2961478035b277af5b4ci0", "genesisBlock": 841023 } ] }