Get Flashcard Item
curl --request GET \
--url http://dolphinflashcards.com/api/get-flashcard-item \
--header 'Content-Type: application/json' \
--data '
{
"cardID": "34491212345799755658107639929006996702748532692311513250209090523742322511111"
}
'import requests
url = "http://dolphinflashcards.com/api/get-flashcard-item"
payload = { "cardID": "34491212345799755658107639929006996702748532692311513250209090523742322511111" }
headers = {"Content-Type": "application/json"}
response = requests.get(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
cardID: '34491212345799755658107639929006996702748532692311513250209090523742322511111'
})
};
fetch('http://dolphinflashcards.com/api/get-flashcard-item', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "http://dolphinflashcards.com/api/get-flashcard-item",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_POSTFIELDS => json_encode([
'cardID' => '34491212345799755658107639929006996702748532692311513250209090523742322511111'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "http://dolphinflashcards.com/api/get-flashcard-item"
payload := strings.NewReader("{\n \"cardID\": \"34491212345799755658107639929006996702748532692311513250209090523742322511111\"\n}")
req, _ := http.NewRequest("GET", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://dolphinflashcards.com/api/get-flashcard-item")
.header("Content-Type", "application/json")
.body("{\n \"cardID\": \"34491212345799755658107639929006996702748532692311513250209090523742322511111\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("http://dolphinflashcards.com/api/get-flashcard-item")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"cardID\": \"34491212345799755658107639929006996702748532692311513250209090523742322511111\"\n}"
response = http.request(request)
puts response.read_body{
"back": "Evening",
"front": "Monday"
}{
"error": "Your supplied json keys do not match the expected format. The request should be in the format: {'cardID': ''}"
}Get flashcard item
Get Flashcard Item
Get a flashcard item based on the card ID. Flashcard sets store multiple flashcard items, which are the individual flashcards.
GET
/
get-flashcard-item
Get Flashcard Item
curl --request GET \
--url http://dolphinflashcards.com/api/get-flashcard-item \
--header 'Content-Type: application/json' \
--data '
{
"cardID": "34491212345799755658107639929006996702748532692311513250209090523742322511111"
}
'import requests
url = "http://dolphinflashcards.com/api/get-flashcard-item"
payload = { "cardID": "34491212345799755658107639929006996702748532692311513250209090523742322511111" }
headers = {"Content-Type": "application/json"}
response = requests.get(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
cardID: '34491212345799755658107639929006996702748532692311513250209090523742322511111'
})
};
fetch('http://dolphinflashcards.com/api/get-flashcard-item', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "http://dolphinflashcards.com/api/get-flashcard-item",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_POSTFIELDS => json_encode([
'cardID' => '34491212345799755658107639929006996702748532692311513250209090523742322511111'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "http://dolphinflashcards.com/api/get-flashcard-item"
payload := strings.NewReader("{\n \"cardID\": \"34491212345799755658107639929006996702748532692311513250209090523742322511111\"\n}")
req, _ := http.NewRequest("GET", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://dolphinflashcards.com/api/get-flashcard-item")
.header("Content-Type", "application/json")
.body("{\n \"cardID\": \"34491212345799755658107639929006996702748532692311513250209090523742322511111\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("http://dolphinflashcards.com/api/get-flashcard-item")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"cardID\": \"34491212345799755658107639929006996702748532692311513250209090523742322511111\"\n}"
response = http.request(request)
puts response.read_body{
"back": "Evening",
"front": "Monday"
}{
"error": "Your supplied json keys do not match the expected format. The request should be in the format: {'cardID': ''}"
}Body
application/json
A unique numerical identifier of the specific card to be retrieved from the flashcard set.
Example:
"34491212345799755658107639929006996702748532692311513250209090523742322511111"
⌘I