Skip to content
CtrlK

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.

All API requests use the following base URL:

https://cloud.viewneo.com/api/v1.0/

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
  • An active viewneo account with the API Plugin activated
  • A valid access token (Personal Access Token or OAuth2)
SectionDescription
AuthenticationHow to obtain and use access tokens
EndpointsAvailable REST endpoints and interactive Swagger UI
ExamplesPractical code examples (Node.js)

viewneo provides a Swagger UI for interactive API testing:

https://cloud.viewneo.com/doc/api

Swagger UI lets you visualize and test API endpoints directly in your browser without writing any code.

The API uses JSON for both requests and responses. All requests must include the appropriate headers:

Content-Type: application/json
Authorization: Bearer YOUR_ACCESS_TOKEN

See Authentication to learn how to obtain an access token.