Tutorial Endpoints
Description of endpoints used to get data related to tutorials on the DeSo blockchain
Last updated
Was this helpful?
Description of endpoints used to get data related to tutorials on the DeSo blockchain
Last updated
Was this helpful?
Please make sure you've read Data: API so you are familiar with the following types referenced in this documentation:
POST
POST /api/v0/get-tutorial-creators
Get the well-known and up-and-coming creators featured in the Buy a Creator step of the tutorial. Creators who have a founder's reward greater than 10% are excluded here.
Endpoint implementation in .
Example usage in frontend: - Make request to - Use GetTutorialCreators to
ResponseLimit*
int
Number of creators to return for each category
POST
/api/v0/start-or-skip-tutorial
Begin or skip the tutorial.
PublicKeyBase58Check*
string
Public key of user starting or skipping tutorial
JWT*
string
JSON web token authenticating user
IsSkip
boolean
if true, update the user's tutorial status to skipped. Otherwise, set the tutorial status to started
No response body
POST
/api/v0/update-tutorial-status
Override endpoint to automatically update a user's tutorial status
Valid values for tutorial status are TutorialStarted
, TutorialSkipped
, InvestInOthersBuyComplete
, InvestInOthersSellComplete
, TutorialCreateProfileComplete
, InvestInYourselfComplete
, FollowCreatorsComplete
, GiveADiamondComplete
, TutorialComplete
PublicKeyBase58Check*
string
Public key of user whose tutorial status is being updated
JWT*
string
JSON web token authenticating user
TutorialStatus*
string
Value to be set for user's Tutorial status.
CreatorPurchasedInTutorialPublicKey
string
Public key of creator the well-known or up-and-coming the user purchased in the tutorial
ClearCreatorCoinPurchasedInTutorial
boolean
If true, sets the user's CreatorCoinsPurchasedInTutorial to 0
No response body.
Endpoint implementation in .
Example usages in frontend: - Make request to - Use StartOrSkipTutorial to
Endpoint implementation in .
Example usages in 's frontend: - Make request to - Use UpdateTutorialStatus to