Find an API

Search public APIs with auth details & Postman guides

← All APIs

Zappiti Player API

zappiti · Media

Media No Auth Free & Open media

Move your app forward with the Zappiti Player API. Use http://your-player-ip:8990/ as base URL for your requests.

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

POST Check if Zappiti Service app status on the player

ErrorCode.NotInstalled ErrorCode.NotRunning ErrorCode.Running

https://api.apis.guru/v2/specs/zappiti.com/4.15.174/CheckZappitiService

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));
POST Get user's login details

Get user's login details

https://api.apis.guru/v2/specs/zappiti.com/4.15.174/ConnectionDetails

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));
POST Open a popup that allow the user to install Zappiti Service, if not already installed

Open a popup that allow the user to install Zappiti Service, if not already installed

https://api.apis.guru/v2/specs/zappiti.com/4.15.174/InstallZappitiService

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

Get Postman ↗
  1. 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

Open documentation ↗