1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
# db
json store with url-based data structure indexing
for example
```
GET https://cs.p13i.io/db/UUID
200
{
“someKey”: [
{ “id”: 1 },
{ “id”: 2,
“someObject”: {
“something123”: false
}
},
]
}
GET https://cs.p13i.io/db/UUID/someKey/1/someObject/something123/
200
false
GET https://cs.p13i.io/db/UUID/someKey/0/
200
{ “id”: 1 }
GET https://cs.p13i.io/db/UUID/someKey/1/someObject/noKey
404
```