Retrieve a Blob
GET https://jsonblob.com/api/jsonBlob/{{blob_id}}
Retrieving a JSON Blob is accomplished by sending a GET request to /api/jsonBlob/, where is the last part of the URL path returned from the POST request. Upon successfully retrieving the JSON Blob, a 200 response will be returned. If no JSON Blob exists for the given , a 404 response will be returned. The body of the response is the JSON that was stored in the JSON Blob.
Use the Blob ID from a *
Create a Blob*POSTrequest and append it to the URL to retrieve the JSON.
If you have recently created a blob using Qodex, the variable{{blob_id}}already has the blob id.
HEADERS
| Key | Datatype | Required | Description |
|---|---|---|---|
Content-Type | string | ||
Accept | string |
RESPONSES
status: OK
{"people":["bill","steve","bob"]}