Skip to main content
GET
/
projects
/
{id}
Get a single project
curl --request GET \
  --url https://api.jonahanderson.me/projects/{id}
{
  "id": "proj_001",
  "name": "Empire",
  "summary": "Lightweight web app for groups to play the party game Empire on mobile devices.",
  "description": "Empire is a lightweight web app built for mobile-friendly party gameplay, created as an AI-assisted product build and deployed on Vercel.",
  "links": {
    "github": "<string>",
    "live": "<string>",
    "details": "<string>"
  },
  "tags": [
    "Web App",
    "OpenAI Codex",
    "Vercel",
    "AI-Assisted Dev"
  ]
}

Path Parameters

id
string
required

Response

Project detail

id
string
required
Example:

"proj_001"

name
string
required
Example:

"Empire"

summary
string
required
Example:

"Lightweight web app for groups to play the party game Empire on mobile devices."

description
string
required
Example:

"Empire is a lightweight web app built for mobile-friendly party gameplay, created as an AI-assisted product build and deployed on Vercel."

tags
string[]
Example:
[
"Web App",
"OpenAI Codex",
"Vercel",
"AI-Assisted Dev"
]