Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request GET \
--url https://quizquail.com/api/v1/themes/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://quizquail.com/api/v1/themes/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://quizquail.com/api/v1/themes/{id}', 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 => "https://quizquail.com/api/v1/themes/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://quizquail.com/api/v1/themes/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://quizquail.com/api/v1/themes/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://quizquail.com/api/v1/themes/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"primaryColor": "<string>",
"secondaryColor": "<string>",
"backgroundColor": "<string>",
"textColor": "<string>",
"accentColor": "<string>",
"fontFamily": "<string>",
"backgroundImageUrl": "<string>",
"isPublic": true,
"effects": {
"backgroundImageOpacity": 0.4,
"backgroundStyle": "blobs",
"backgroundBlobCount": 3,
"backgroundBlobOpacity": 0.24,
"backgroundAnimationSpeed": 1,
"backgroundGradientIntensity": 0.13,
"backgroundVignetteIntensity": 0.7,
"gradientAngle": 135,
"gradientAnimation": true,
"backgroundPattern": "none",
"backgroundPatternOpacity": 0.12,
"backgroundPatternScale": 1,
"particleStyle": "none",
"particleDensity": 0.3,
"particleSpeed": 1,
"particleColor": "theme",
"optionCardVariant": "standard",
"optionCardOpacity": 0.33,
"optionStripeWidth": 4,
"titleLetterSpacing": "-0.02em",
"textStyle": "solid",
"titleTextStyle": "solid",
"textShadowStyle": "subtle",
"optionFontWeight": 400,
"frameStyle": "none",
"frameColor": "#FFFFFF",
"frameOpacity": 0.5,
"introRingCount": 3,
"introParticleCount": 8,
"outroConfettiCount": 12,
"outroBurstCount": 3,
"celebrationStyle": "pulse",
"celebrationIntensity": 0.7,
"correctAnswerGlowSize": 30,
"revealSuspenseFrames": 45,
"revealDimIntensity": 0.3,
"urgencyStyle": "vignette",
"urgencyThreshold": 3,
"urgencyColor": "#EF4444",
"transitionStyle": "fade",
"grainOverlay": "none",
"grainStyle": "film",
"audioReactive": false,
"audioReactiveIntensity": 0.5,
"audioReactiveBpm": 120
},
"userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"soundPack": "<unknown>"
}
}{
"type": "https://quizquail.com/problems/validation-error",
"title": "Validation Error",
"status": 400,
"detail": "Request validation failed",
"instance": "<string>",
"errors": [
{
"field": "title",
"message": "Title is required",
"code": "too_small"
}
]
}Get a theme by ID. Users can access their own themes and public themes.
curl --request GET \
--url https://quizquail.com/api/v1/themes/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://quizquail.com/api/v1/themes/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://quizquail.com/api/v1/themes/{id}', 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 => "https://quizquail.com/api/v1/themes/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://quizquail.com/api/v1/themes/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://quizquail.com/api/v1/themes/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://quizquail.com/api/v1/themes/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"primaryColor": "<string>",
"secondaryColor": "<string>",
"backgroundColor": "<string>",
"textColor": "<string>",
"accentColor": "<string>",
"fontFamily": "<string>",
"backgroundImageUrl": "<string>",
"isPublic": true,
"effects": {
"backgroundImageOpacity": 0.4,
"backgroundStyle": "blobs",
"backgroundBlobCount": 3,
"backgroundBlobOpacity": 0.24,
"backgroundAnimationSpeed": 1,
"backgroundGradientIntensity": 0.13,
"backgroundVignetteIntensity": 0.7,
"gradientAngle": 135,
"gradientAnimation": true,
"backgroundPattern": "none",
"backgroundPatternOpacity": 0.12,
"backgroundPatternScale": 1,
"particleStyle": "none",
"particleDensity": 0.3,
"particleSpeed": 1,
"particleColor": "theme",
"optionCardVariant": "standard",
"optionCardOpacity": 0.33,
"optionStripeWidth": 4,
"titleLetterSpacing": "-0.02em",
"textStyle": "solid",
"titleTextStyle": "solid",
"textShadowStyle": "subtle",
"optionFontWeight": 400,
"frameStyle": "none",
"frameColor": "#FFFFFF",
"frameOpacity": 0.5,
"introRingCount": 3,
"introParticleCount": 8,
"outroConfettiCount": 12,
"outroBurstCount": 3,
"celebrationStyle": "pulse",
"celebrationIntensity": 0.7,
"correctAnswerGlowSize": 30,
"revealSuspenseFrames": 45,
"revealDimIntensity": 0.3,
"urgencyStyle": "vignette",
"urgencyThreshold": 3,
"urgencyColor": "#EF4444",
"transitionStyle": "fade",
"grainOverlay": "none",
"grainStyle": "film",
"audioReactive": false,
"audioReactiveIntensity": 0.5,
"audioReactiveBpm": 120
},
"userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"soundPack": "<unknown>"
}
}{
"type": "https://quizquail.com/problems/validation-error",
"title": "Validation Error",
"status": 400,
"detail": "Request validation failed",
"instance": "<string>",
"errors": [
{
"field": "title",
"message": "Title is required",
"code": "too_small"
}
]
}API key authentication. Prefix your key with Bearer in the Authorization header.
Keys follow the format qq_... and can be scoped to specific permissions.
Resource UUID
"550e8400-e29b-41d4-a716-446655440000"
Theme details
Show child attributes
Was this page helpful?