Skip to content
English
  • There are no suggestions because the search field is empty.

Get blob as text from store by CID

GET /store/v1/text/{cid} Select code sample Fetch cURL
const url = 'https://example.com/store/v1/text/example';const options = {method: 'GET', headers: {Authorization: 'Bearer 
  
   '}}; 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/store/v1/text/example \  --header 'Authorization: Bearer 
  
   '
  

Get blob as text from store by CID

Get blob as text from store by CID.

Authorizations

Section titled “Authorizations ”

Parameters

Section titled “ Parameters ”

Path Parameters

Section titled “Path Parameters ” cid required string

Responses

Section titled “ Responses ”

200

Section titled “200 ”

Get blob as text from store by CID

Media type text/plain string Previous
Put JCS-serialized json document into store
Next
Overview