Did Json
GET
/.well-known/did.json
const url = 'https://example.com/.well-known/did.json';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/.well-known/did.jsonResponses
Section titled “ Responses ”Successful Response
Media type application/json
Example generated
example