Documentation Index
Fetch the complete documentation index at: https://docs.blobhub.io/llms.txt
Use this file to discover all available pages before exploring further.
Create a new metadata item for a blob.
POST /blobs/:org_id/:blob_id/metadata/:alias
Path Parameters
| Parameter | Type | Required | Description |
|---|
org_id | string | Yes | The unique ID of the organization. |
blob_id | string | Yes | The unique ID of the blob. |
alias | string | Yes | The alias for the new metadata item. |
Request Body
| Parameter | Type | Required | Description |
|---|
value | string | No | Arbitrary string value. |
data | object | No | Arbitrary JSON object. |
Response
| Parameter | Type | Description |
|---|
item_id | string | The unique ID of the created item. |
Example
{
"value": "high",
"data": { "score": 0.99 }
}