API Reference
Build with theViewert API
Integrate Viewert into your applications. Access vellums, user profiles, and more through our RESTful API.
API Coming Soon
Join the waitlist to get early access
RESTful Design
Clean, predictable endpoints following REST conventions
Secure Authentication
OAuth 2.0 and API key authentication options
JSON Responses
Consistent JSON format with detailed error messages
Rate Limiting
Fair usage limits with clear headers and documentation
Quick Start
Base URL
https://api.viewert.comAuthentication
Authorization: Bearer YOUR_API_KEYExample Request
$ curl -X GET "https://api.viewert.com/vellums" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"Example Response
{
"data": [
{
"id": "01ABC123...",
"title": "My First Vellum",
"content": "...",
"author": {
"username": "johndoe",
"display_name": "John Doe"
},
"created_at": "2026-01-15T10:30:00Z",
"is_public": true
}
],
"meta": {
"total": 42,
"page": 1,
"per_page": 20
}
}Endpoints
Coming Soon
GET
/api/vellumsGET
/api/vellum/:idPOST
/api/vellum-newPOST
/api/vellum/:idDELETE
/api/vellum/:idGET
/api/cirrus/:usernameGET
/api/cirrus/:username/vellumsGET
/api/searchSDKs & Libraries
🟨
JavaScript / TypeScript
Coming Soon🐍
Python
Coming Soon🔵