Skip to main content
GET
/
check_ins
/
{id}
Retrieve a check-in
curl --request GET \
  --url https://api.staging.blackbird.xyz/flynet/v1/check_ins/{id}
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: OAuth access token.

Example

curl https://api.staging.blackbird.xyz/flynet/v1/check_ins/{uuid} \
  -H "Authorization: Bearer $ACCESS_TOKEN"

Response

{
  "id": "{uuid}",
  "object": "check_in",
  "location": { "id": "{uuid}", "object": "location" },
  "visit_number": 25,
  "created_at": "2024-09-26T13:56:56.22107Z",
  "ended_at": "2024-09-26T13:56:56.22107Z"
}