Before issuing points for an event, you must first register the event. This is a one-time process for each unique event. You can do this through the “API” sidebar at app.absinthe.network.
Absinthe’s off-chain points API allows any project the freedom to issue, query, update, and delete points for any off-chain action.
You can test-drive the API in our interactive graphql playground here.
You will need an API key to set in an authorization header. If you don’t have one yet, you can create your own via your season in the app.absinthe.network dashboard.
Before being able to introspect the schema through our interactive graphql playground or through a direct call, you will need to set the API key as an authorization header via this format:
The primary key for each entry is an autogenerated id integer.
This means that you can issue the same points, to the same identity multiple times.
If you choose to update someone’s score, either insert an entry with the positive difference or
issue an update mutation.
You can issue points to evm addresses, solana addresses, and different social identites like
discord, x (twitter), and github. The identity_type is an enum that indicates what type of identity account_id is.
Here are the supported identity types:
Identity Type
Description
EVM_ADDRESS
Public address on the Ethereum blockchain (e.g., “0xB58621209Dc0b0c514E52a6D9A165a16ae95e4f7”)
SOLANA_ADDRESS
Public address on the Solana blockchain (e.g., “8ZUkk8pTyEAjyHbmBBXdrDNiNZ9D9Gcn5HgqxEjD8aHn”)
BTC_ADDRESS
Public address on the Bitcoin blockchain (e.g., “1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa”)
EMAIL
Email as used by Gmail, Outlook, or other providers (e.g., “user@example.com”)
DISCORD_PROVIDER_ID
Discord provider ID (numeric identifier, not username)
X_PROVIDER_ID
X (formerly Twitter) provider ID (numeric identifier, not username)
GITHUB_PROVIDER_ID
GitHub account provider ID (numeric identifier, not username)
Some identity types in the list include “PROVIDER_ID” because they are associated with external service providers or platforms. It’s important to note that these PROVIDER_IDs are not usernames, but rather unique numerical or alphanumeric identifiers. For example like this: 1517923606637912064.
These identifiers can be retrieved through OAuth authentication flows or by using authentication providers like NextAuth.js (now Auth.js). When a user authenticates through these services, your application receives this unique identifier, allowing you to link the user’s external account to their account in your system.
The PROVIDER_ID approach is more reliable than using usernames because:
It’s a stable identifier that doesn’t change even if the user changes their username.
It’s unique to each user on the platform.
It’s provided securely through the authentication process.
The UUID of the registered event, obtained when you registered the event using the Register Off-Chain Event API. This links the points issuance to a specific registered event.
A JSON formatted string that can can store arbitrary metadata alongside each points issuance event.
The client_season and added_by fields are visible via the gql queries but cannot be manually modified through
mutations. The client_season field represents the name of your campaign and is used to organize and categorize point issuances.