---
title: "Look up an invitation"
method: GET
path: "/api/v1/members/invites/{token}"
tags: ["members"]
---

# Look up an invitation

`GET /api/v1/members/invites/{token}`

Resolves an invitation token so the join page can show who invited whom. Unauthenticated — the token is the credential. Returns only the invited address, the inviter's address, and the expiry; nothing else about the account is exposed.

## Path parameters

- `token` string, required

## Response `200`

The invitation.

- MembersGetMemberInviteResponse200
  - `invite` MemberInvite, required
    - `email` string, email, required — The address this invitation was issued to.
    - `invitedByEmail` string, email, required — Who sent the invitation.
    - `expiresAt` string, date-time, required

## Other responses

- `404` — The token is unknown, already accepted, or expired.

---

[API](https://skmtc.net/getdial/apis/rest-api.md) · [All operations](https://skmtc.net/getdial/apis/rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/getdial/rest-api/versions/cfa621230237/schema)
