Skip to main content
GET
/
projects
List projects
curl --request GET \
  --url https://api.jonahanderson.me/projects \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "project_example_001",
    "name": "Project Atlas",
    "summary": "Example summary for a customer-facing workflow automation product."
  },
  {
    "id": "project_example_002",
    "name": "Signal Console",
    "summary": "Example summary for an internal dashboard used to monitor integration health."
  }
]

Documentation Index

Fetch the complete documentation index at: https://developer.jonahanderson.me/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Signed bearer token returned by POST /auth/token. Send it in the Authorization header as Bearer <token>.

Response

Project list.

id
string
required

Stable identifier for the project.

Example:

"project_example_001"

name
string
required

Project name shown in the portfolio.

Example:

"Project Atlas"

summary
string
required

Short summary of what the project is or does.

Example:

"Example summary for a customer-facing workflow automation product."