POST
/
store
/
items
/
search
Search for items within a namespace prefix.
curl --request POST \
  --url https://api.b-bot.space/v2/store/items/search \
  --header 'Content-Type: application/json' \
  --data '{
  "namespace_prefix": [
    "<string>"
  ],
  "filter": {},
  "limit": 10,
  "offset": 0,
  "query": "<string>"
}'
{
  "items": [
    {
      "namespace": [
        "<string>"
      ],
      "key": "<string>",
      "value": {},
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Body

application/json

Request to search for items within a namespace prefix.

Response

200
application/json

Success

The response is of type object.