| name | appnz-gists-orgs-keys-api |
| description | Use this skill for app.nz gists, organizations, teams, invites, and user SSH/GPG key management APIs. |
app.nz Gists, Orgs, and User Keys
Use these app.nz control-plane APIs with Authorization: Bearer pk_live_.... Treat responses as JSON. Public config/list endpoints may work without auth, but write routes and user data routes require auth.
Workflow
- Fetch the relevant config/list endpoint first when building UI or automation.
- Send JSON bodies with
Content-Type: application/json unless the endpoint specifies multipart upload.
- Preserve returned IDs; follow-up routes are ID-based.
- On errors, check status and JSON
error; do not retry write calls blindly.
Endpoints
| Method | Path | Use |
|---|
| GET | /api/gists | List gists. |
| POST | /api/gists | Create a gist. |
| GET | /api/orgs | List or browse orgs. |
| POST | /api/orgs | Create an org. |
| GET | /api/user/ssh-keys | List SSH keys. |
| POST | /api/user/ssh-keys | Add SSH key for compute and git workflows. |
| GET | /api/user/gpg-keys | List GPG keys. |