Skip to main content
GET
/
achievements
/
:achievementId
Get Specific Achievement
curl --request GET \
  --url https://www.api.baselink.tech/achievements/:achievementId \
  --header 'bearer: <api-key>'
{
  "achievement": {},
  "achievement.id": "<string>",
  "achievement.userId": "<string>",
  "achievement.type": "<string>",
  "achievement.title": "<string>",
  "achievement.description": "<string>",
  "achievement.expiresAt": "<string>",
  "achievement.metadata": {},
  "achievement.createdAt": "<string>",
  "achievement.updatedAt": "<string>"
}
Retrieve detailed information about a specific achievement. This endpoint is restricted to admin users only.
achievement
object
The achievement object.
achievement.id
string
The unique identifier of the achievement.
achievement.userId
string
The ID of the user who owns this achievement.
achievement.type
string
The type/category of the achievement.
achievement.title
string
The title of the achievement.
achievement.description
string
The description of the achievement.
achievement.expiresAt
string
The expiration date of the achievement (if applicable).
achievement.metadata
object
Additional metadata for the achievement.
achievement.createdAt
string
The creation timestamp of the achievement.
achievement.updatedAt
string
The last update timestamp of the achievement.