VISIMADE

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 Tokens
2. Make API Requests

Use your token to authenticate requests to the Visimade API endpoints.

View API Reference
Quick 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/123
Example: 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
Team Data API

Create, read, update, and delete records in team data collections.

Learn more
Security

Learn about token scopes, expiration, and best practices for secure API access.

Learn more
Developer Documentation - Visimade