API Overview
The viewneo REST API gives you programmatic access to the full functionality of the viewneo platform. You can manage content, playlists, devices, and more from your own applications.
Base URL
Section titled “Base URL”All API requests use the following base URL:
https://cloud.viewneo.com/api/v1.0/What You Can Do
Section titled “What You Can Do”The API allows you to:
- Manage media files — Upload images, videos, and create website content
- Control playlists — Create, update, and assign playlists
- Manage devices — Query device status and configure settings
- Automate workflows — Integrate viewneo into your existing systems and processes
Requirements
Section titled “Requirements”- An active viewneo account with the API Plugin activated
- A valid access token (Personal Access Token or OAuth2)
API Documentation Sections
Section titled “API Documentation Sections”| Section | Description |
|---|---|
| Authentication | How to obtain and use access tokens |
| Endpoints | Available REST endpoints and interactive Swagger UI |
| Examples | Practical code examples (Node.js) |
Interactive API Explorer
Section titled “Interactive API Explorer”viewneo provides a Swagger UI for interactive API testing:
https://cloud.viewneo.com/doc/apiSwagger UI lets you visualize and test API endpoints directly in your browser without writing any code.
Data Format
Section titled “Data Format”The API uses JSON for both requests and responses. All requests must include the appropriate headers:
Content-Type: application/jsonAuthorization: Bearer YOUR_ACCESS_TOKENSee Authentication to learn how to obtain an access token.