> ## Documentation Index
> Fetch the complete documentation index at: https://docs.flynet.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve a check-in

Returns one check-in by UUID. The response embeds the location,
restaurant, and neighborhood needed to render the row. Check-ins carry
no member identity.

Auth: **API key** in `X-API-Key`, minted with the `read:checkins` scope
— the same credential as the [`/check_ins` venue feed](/api-reference/check-ins/list).
A key without that scope returns `403` `insufficient_scope`; a missing
key returns an empty-body `401` with a `WWW-Authenticate: Bearer` header.

## Example

```bash theme={null}
curl https://api.staging.blackbird.xyz/flynet/v1/check_ins/{uuid} \
  -H "X-API-Key: $API_KEY"
```

## Response

```json theme={null}
{
  "id": "{uuid}",
  "object": "check_in",
  "location": {
    "id": "{uuid}",
    "object": "location",
    "name": "FLYBAR — Williamsburg",
    "restaurant": {
      "id": "{uuid}",
      "object": "restaurant",
      "name": "FLYBAR"
    },
    "neighborhood": {
      "id": "{uuid}",
      "object": "neighborhood",
      "name": "Williamsburg"
    }
  },
  "blackbird_pay_enabled": true,
  "created_at": "2024-09-26T13:56:56.22107Z",
  "ended_at": "2024-09-26T13:56:56.22107Z"
}
```
