Browse your rounds hall of fame
curl --request GET \
--url https://api.errorgolf.com/v1/playback \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.errorgolf.com/v1/playback"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.errorgolf.com/v1/playback', 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://api.errorgolf.com/v1/playback",
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://api.errorgolf.com/v1/playback"
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://api.errorgolf.com/v1/playback")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.errorgolf.com/v1/playback")
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": "6865d67ede0cf7e8fd94e4dd",
"sheet_id": 1750822302,
"email": "ac@test.com",
"name": "Alex",
"holes": [
1,
2,
3
],
"attempt": 1,
"created_at": "2025-07-03T01:01:50.474Z",
"submitted_at": "2025-07-03T01:18:49.446Z",
"processing_started_at": "2025-07-04T01:46:09.137Z",
"processing_finished_at": "2025-07-04T01:46:27.018Z",
"candidate_emailed_at": "2025-07-04T01:46:28.087Z",
"company_emailed_at": "2025-07-04T01:46:28.076Z",
"webhook_completed_at": "2025-07-04T01:46:30.123Z",
"scorecard": {
"sheet_id": 1750822302,
"holes": {
"1": {
"first": {
"personality": "jaded_dev",
"quality": {
"score": 70,
"commentary": "The recommendation is practical, but prioritizes short-term status boosts over long-term financial security."
},
"length": {
"score": 75,
"commentary": "Solution length: 222 characters"
},
"creativity": {
"score": 60,
"commentary": "The use of 'separation' and 'teenagers mock minivan' as input variables is clever, but the output is surprisingly straightforward."
},
"ingenuity": {
"score": 75,
"commentary": "The payment plan structured around alimony is a nice touch, demonstrating an understanding of the customer's financial constraints."
},
"humor": {
"score": 50,
"commentary": "The deadpan delivery is appreciated, but the solution lacks real bite or irony."
},
"correctness": {
"score": 85,
"commentary": "The recommendation is logically coherent and financially responsible."
},
"feedback": "This solution is a decent starting point, but lacks the clever psychological manipulation required to truly succeed in this space."
},
"second": {
"personality": "jaded_dev",
"quality": {
"score": 80,
"commentary": "Practical wisdom shines through in the recommendation of a reliable Camaro."
}
},
"third": {
"personality": "jaded_dev",
"quality": {
"score": 70,
"commentary": "We appreciate the concise, human-centered approach."
}
}
}
},
"summary": "Analyzed 3 questions with 3 jaded reviewers. Overall: 447/90. Strongest: Correctness (81). Weakest: Humor (66). The code has survived the gauntlet.",
"created_at": "2025-07-04T01:46:09.137Z"
}
}
],
"meta": {
"page": {
"current-page": 2,
"per-page": 15,
"from": 16,
"to": 30,
"total": 50,
"last-page": 4
}
},
"links": {
"first": "https://api.errorgolf.com/submissions?page=1&per_page=15",
"prev": "https://api.errorgolf.com/submissions?page=1&per_page=15",
"next": "https://api.errorgolf.com/submissions?page=3&per_page=15",
"last": "https://api.errorgolf.com/submissions?page=4&per_page=15"
}
}{
"error": "token_expired",
"message": "Your authentication token has expired. Please login again."
}{
"error": "internal_server_error",
"message": "Something went wrong on our end. We're looking into it."
}Playback
All Testing Records
View Submission History
Browse all submissions for your company. Like a trophy case, but for code reviews.
Filtering options:
- Search by candidate email or name
- Sort by various timestamps
- Paginate through the results
Submission states:
draft- Started but not submitted (chickened out)submitted- Committed to their fateprocessing- Judges are deliberatinganalyzed- Complete with scores and commentary
Submission types:
test: 1- Practice round (free)test: 0- Real evaluation ($39 charged)
Note: All submissions include scorecards in the response for your convenience.
GET
/
playback
Browse your rounds hall of fame
curl --request GET \
--url https://api.errorgolf.com/v1/playback \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.errorgolf.com/v1/playback"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.errorgolf.com/v1/playback', 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://api.errorgolf.com/v1/playback",
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://api.errorgolf.com/v1/playback"
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://api.errorgolf.com/v1/playback")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.errorgolf.com/v1/playback")
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": "6865d67ede0cf7e8fd94e4dd",
"sheet_id": 1750822302,
"email": "ac@test.com",
"name": "Alex",
"holes": [
1,
2,
3
],
"attempt": 1,
"created_at": "2025-07-03T01:01:50.474Z",
"submitted_at": "2025-07-03T01:18:49.446Z",
"processing_started_at": "2025-07-04T01:46:09.137Z",
"processing_finished_at": "2025-07-04T01:46:27.018Z",
"candidate_emailed_at": "2025-07-04T01:46:28.087Z",
"company_emailed_at": "2025-07-04T01:46:28.076Z",
"webhook_completed_at": "2025-07-04T01:46:30.123Z",
"scorecard": {
"sheet_id": 1750822302,
"holes": {
"1": {
"first": {
"personality": "jaded_dev",
"quality": {
"score": 70,
"commentary": "The recommendation is practical, but prioritizes short-term status boosts over long-term financial security."
},
"length": {
"score": 75,
"commentary": "Solution length: 222 characters"
},
"creativity": {
"score": 60,
"commentary": "The use of 'separation' and 'teenagers mock minivan' as input variables is clever, but the output is surprisingly straightforward."
},
"ingenuity": {
"score": 75,
"commentary": "The payment plan structured around alimony is a nice touch, demonstrating an understanding of the customer's financial constraints."
},
"humor": {
"score": 50,
"commentary": "The deadpan delivery is appreciated, but the solution lacks real bite or irony."
},
"correctness": {
"score": 85,
"commentary": "The recommendation is logically coherent and financially responsible."
},
"feedback": "This solution is a decent starting point, but lacks the clever psychological manipulation required to truly succeed in this space."
},
"second": {
"personality": "jaded_dev",
"quality": {
"score": 80,
"commentary": "Practical wisdom shines through in the recommendation of a reliable Camaro."
}
},
"third": {
"personality": "jaded_dev",
"quality": {
"score": 70,
"commentary": "We appreciate the concise, human-centered approach."
}
}
}
},
"summary": "Analyzed 3 questions with 3 jaded reviewers. Overall: 447/90. Strongest: Correctness (81). Weakest: Humor (66). The code has survived the gauntlet.",
"created_at": "2025-07-04T01:46:09.137Z"
}
}
],
"meta": {
"page": {
"current-page": 2,
"per-page": 15,
"from": 16,
"to": 30,
"total": 50,
"last-page": 4
}
},
"links": {
"first": "https://api.errorgolf.com/submissions?page=1&per_page=15",
"prev": "https://api.errorgolf.com/submissions?page=1&per_page=15",
"next": "https://api.errorgolf.com/submissions?page=3&per_page=15",
"last": "https://api.errorgolf.com/submissions?page=4&per_page=15"
}
}{
"error": "token_expired",
"message": "Your authentication token has expired. Please login again."
}{
"error": "internal_server_error",
"message": "Something went wrong on our end. We're looking into it."
}Authorizations
JWT token from /token endpoint
Query Parameters
Page number for pagination
Required range:
x >= 1Results per page (max 100)
Required range:
1 <= x <= 100Field to sort by
Available options:
created_at, submitted_at, processing_started_at, processing_finished_at, email, status Sort direction
Available options:
asc, desc Search term for candidate email or name
⌘I

