> For the complete documentation index, see [llms.txt](https://docs.jetadmin.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.jetadmin.io/api-reference/records/retrieve-a-record.md).

# Retrieve a record

GET <https://data.jetadmin.io/projects/\\{{project\\_id\\}}/prod/\\{{resource\\_name\\}}/models/\\{{model\\_id\\}}/{id}>

Replace the double-brace placeholders with your identifiers. The interactive endpoint below uses standard OpenAPI path parameters.

Record fields, required values, filters, and operation support depend on the selected model. Use the generated API for your resource to check its exact schema.

## GET /projects/{project\_id}/prod/{resource\_name}/models/{model\_id}/{id}

> Retrieve a record

```json
{"openapi":"3.1.0","info":{"title":"Jet Admin Records API","version":"1.0.0"},"tags":[{"name":"Records","description":"Read and manage records in a model."}],"servers":[{"url":"https://data.jetadmin.io","description":"JetAdmin Data API"}],"security":[{"ApiToken":[]}],"components":{"securitySchemes":{"ApiToken":{"type":"apiKey","in":"header","name":"Authorization","description":"Static API token for the selected resource, passed directly in the Authorization header. Use the token and auth format shown by the resource API."}},"schemas":{"Record":{"type":"object","additionalProperties":true,"description":"Fields and required values are defined by the selected model. Consult its generated API schema. Examples are illustrative."},"Error":{"type":"object","additionalProperties":true,"description":"JetAdmin error response. The exact fields depend on the validation failure."}},"responses":{"Unauthorized":{"description":"Missing or invalid API token.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"NotFound":{"description":"Record not found.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}},"paths":{"/projects/{project_id}/prod/{resource_name}/models/{model_id}/{id}":{"get":{"tags":["Records"],"operationId":"retrieveRecord","summary":"Retrieve a record","responses":{"200":{"description":"The requested record.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Record"}}}},"401":{"$ref":"#/components/responses/Unauthorized"},"404":{"$ref":"#/components/responses/NotFound"}}}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.jetadmin.io/api-reference/records/retrieve-a-record.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
