Visimade API
Programmatically access and manage your pages and team data using the Visimade REST API.
1. Create an API Token
Generate an API token from your account settings to authenticate API requests.
Manage API Tokens2. Make API Requests
Use your token to authenticate requests to the Visimade API endpoints.
View API ReferenceQuick Start
Authentication
All API requests require authentication using a Bearer token in the Authorization header:
Authorization: Bearer vm_your_token_here
Example: Fetch a Page
curl -H "Authorization: Bearer vm_your_token_here" \ https://visimade.com/api/pages/123
Example: Update Page Content
curl -X PATCH \
-H "Authorization: Bearer vm_your_token_here" \
-H "Content-Type: application/json" \
-d '{"html_content": "<html>...</html>"}' \
https://visimade.com/api/pages/123Example: Read Team Data
curl -H "Authorization: Bearer vm_your_token_here" \ https://visimade.com/api/pages/123/team-data/tasks
Pages API
Read and update page content, metadata, and create new versions programmatically.
Learn more