Skip to main content
GET
/
store
/
items
Get Store Item
curl --request GET \
  --url https://api.example.com/store/items
{
  "key": "<string>",
  "value": "<unknown>",
  "namespace": [
    "<string>"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.aegra.dev/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

key
string
required

Key of the item to retrieve.

namespace

Namespace path. Use dot-separated string or repeated query params.

Response

Successful Response

Response model for getting items

key
string
required

The item's key within its namespace.

value
any
required

The stored value.

namespace
string[]
required

The namespace path where this item is stored.