Go to app

📘

Supported API key types: Publishable, Secret

Description

Get the finalized status of an entry, specified by a projectId and an address. If the entry exists (has been submitted) but has not been finalized, "submitted" will be returned as its status. If the entry does not exist, this endpoint will return a 404 error.

This endpoint can be used to display registration/raffle status for your users. To display attestation availability status, use the Attestations API.

Response interface

{
  data: {
    status: "submitted" | "selected" | "waitlisted" | "not_selected" | "disqualified";
  };
}
{
  error: {
    message: string;
  };
}
Language
Click Try It! to start a request and see the response here!