get https://api.spearmint.xyz/projects//entries/
Supported API key type: Secret
Description
Get an entry, specified by a projectId
and an address
. If the entry does not exist, this endpoint will return a 404.
Use this endpoint on your backend processes to get expanded information about a given entry, such as its tentative status, which should not be exposed to the client.
Note: this endpoint also returns the actual attestation data that has been saved for the entry (if it exists), regardless of whether it has become obsolete (when it no longer conforms to the project's attestation schema due to a recent schema update).
Expect more attributes to become available in the future.
Response interface
{
data: {
address: string;
status: "submitted" | "selected" | "waitlisted" | "not_selected" | "disqualified";
tentativeStatus: "selected" | "waitlisted" | "not_selected" | "disqualified";
attestationData: Record<string, string | boolean> | null;
};
}
{
error: {
message: string;
};
}