GET /data/{entity}/{id}
GET entity record by id (logical key)
When you need a specific entity record and you know the id (logical key).
Request
Endpoint
{entity} is the Entity name according to the name provided in the schema
{id} is the record identifier (the logical key for the record)
Responses
Gemini responses always contains a proper HTTP status code, and a JSON body with a status text, the data inserted and a meta object that holds metadata about the response.
Lets take a look by using some real examples and the following schema:
200 - Success
Success response contains the data record and some useful metadata, for example the last update time in both ISO and unix format.
404 - Not Found
Last updated