Zappiti Player API
zappiti · Media
Move your app forward with the Zappiti Player API. Use http://your-player-ip:8990/ as base URL for your requests.
Authentication
Sample Requests
ErrorCode.NotInstalled ErrorCode.NotRunning ErrorCode.Running
Hover any highlighted part to learn what it does
curl -X POST "https://api.apis.guru/v2/specs/zappiti.com/4.15.174/CheckZappitiService"
import requests
response = requests.post(
"https://api.apis.guru/v2/specs/zappiti.com/4.15.174/CheckZappitiService",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/zappiti.com/4.15.174/CheckZappitiService';
const response = await fetch(url, {
method: 'POST',
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/zappiti.com/4.15.174/CheckZappitiService"
req, _ := http.NewRequest("POST", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/zappiti.com/4.15.174/CheckZappitiService")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Post.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/zappiti.com/4.15.174/CheckZappitiService";
$opts = ["http" => [
"method" => "POST",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Get user's login details
Hover any highlighted part to learn what it does
curl -X POST "https://api.apis.guru/v2/specs/zappiti.com/4.15.174/ConnectionDetails"
import requests
response = requests.post(
"https://api.apis.guru/v2/specs/zappiti.com/4.15.174/ConnectionDetails",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/zappiti.com/4.15.174/ConnectionDetails';
const response = await fetch(url, {
method: 'POST',
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/zappiti.com/4.15.174/ConnectionDetails"
req, _ := http.NewRequest("POST", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/zappiti.com/4.15.174/ConnectionDetails")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Post.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/zappiti.com/4.15.174/ConnectionDetails";
$opts = ["http" => [
"method" => "POST",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Open a popup that allow the user to install Zappiti Service, if not already installed
Hover any highlighted part to learn what it does
curl -X POST "https://api.apis.guru/v2/specs/zappiti.com/4.15.174/InstallZappitiService"
import requests
response = requests.post(
"https://api.apis.guru/v2/specs/zappiti.com/4.15.174/InstallZappitiService",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/zappiti.com/4.15.174/InstallZappitiService';
const response = await fetch(url, {
method: 'POST',
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/zappiti.com/4.15.174/InstallZappitiService"
req, _ := http.NewRequest("POST", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/zappiti.com/4.15.174/InstallZappitiService")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Post.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/zappiti.com/4.15.174/InstallZappitiService";
$opts = ["http" => [
"method" => "POST",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with Zappiti Player API?
Zappiti Player API is a Media API. Developers commonly use media APIs for:
- storing and delivering images, video, and audio
- building digital asset management and media libraries
- transcoding and optimising media for the web
- adding video streaming and playback to your app
- automating content tagging and metadata extraction
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Zappiti Player API is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide