Search DID-Linked Resource

Search and query for DID-Linked Resources

The /resource/search API allows users to search for specific entries of a Resource on the cheqd Network. For example, if there are multiple Resources associated with the same DID, the search functionality allows applications to make requests only to a specified Resource.

Get a DID-Linked Resource.

This endpoint returns the DID-Linked Resource for a given DID identifier and resource identifier.

GET/resource/search/{did}
Path parameters
did*string

DID identifier

Example: "did:cheqd:mainnet:7bf81a20-633c-4cc7-bc4a-5a45801005e0"
Query parameters
Response

The request was successful.

Body
object
Request
const response = await fetch('/resource/search/{did}', {
    method: 'GET',
    headers: {},
});
const data = await response.json();

Last updated