POST
/
get-flashcard-item
curl --request POST \
  --url http://dolphinflashcards.com/api/get-flashcard-item \
  --header 'Content-Type: application/json' \
  --data '{
  "cardID": "34491212345799755658107639929006996702748532692311513250209090523742322511111"
}'
{
  "back": "Evening",
  "front": "Monday"
}

Body

application/json
cardID
string
required

The unique numerical identifier of the specific card being retrieved from the flashcard set.

Example:

"34491212345799755658107639929006996702748532692311513250209090523742322511111"

Response

200
application/json
OK
back
string

The back side content of the flashcard.

Example:

"Evening"

front
string

The front side content of the flashcard.

Example:

"Monday"