Welcome to World of IPTV

With

+23k members
+11k threads
+106k posts

we are the most popular IPTV community on the web. 

IMPORTANT NOTE:
WE HAVE RECENTLY NOTICED THAT TOO MANY DOUBLE FAKE ACCOUNTS ARE CREATED IN THE PAST.
TO PREVENT THIS ISSUE THE DECISION WAS MADE THAT IN THE FUTURE A ANNUALLY FEE 20 EURO WILL BE RAISED FOR NEW MEMBERSHIPS.

Join now to the World of IPTV

Forum Rules

Before you start, check out the forum rules first

Account upgrade

Upgrade your account to get access to full features

Advertising

Would you like to place your advertisement with us ?

Resources Manager

Hundreds of IPTV scripts and apps are available for download

Tutorial Collection for Xtream Codes Panel Commands

mumus

Extended Member
Ext. Member
Joined
Oct 24, 2019
Messages
1
Reaction score
0
Points
1
Location
france
API Start/Stop Streams/vods / View Online/Offline Streams

PHP:
apt install curl -y

  • View Server List
    Perform this request, to view all your servers, main & load balancers including their status

    http://your_dns:port/api.php?action=server&sub=list

    PHP:
    ex: curl "http://127.0.0.1:80/api.php?action=server&sub=list"
  • View Online Streams
    Perform this request, to view only the online Live Streams

    http://your_dns:port/api.php?action=stream&sub=online
    PHP:
    ex: curl "http://127.0.0.1:80/api.php?action=stream&sub=online"
  • View Offline Streams
    Perform this request, to view only the Offline Live Streams

    http://your_dns:port/api.php?action=server&sub=offline
    PHP:
    ex: curl "http://127.0.0.1:80/api.php?action=server&sub=offline"
  • Start/Restart A Stream
    Perform this request, to start or restart a Live Stream. The last argument is an array in which you can specify the stream ids. It works with POST method as well.

    http://your_dns:port/api.php?action=stream&sub=start&stream_ids[]=1
  • PHP:
    ex: curl "http://127.0.0.1:80/api.php?action=stream&sub=start&stream_ids[]=51"
  • Stop A Stream
    Perform this request, to stop a Live Stream. The last argument is an array in which you can specify the stream ids. It works with POST method as well.

    http://your_dns:port/api.php?action=stream&sub=stop&stream_ids[]=1
    PHP:
    ex: curl "http://127.0.0.1:80/pi.php?action=stream&sub=stop&stream_ids[]=557"
  • Start VOD Encoding (Applies for series episodes as well )
  • Perform this request, to start a VOD Encoding process. The last argument is an array in which you can specify the stream ids. It works with POST method as well.

    http://your_dns:port/api.php?action=vod&sub=start&stream_ids[]=1
    PHP:
    ex: curl "http://127.0.0.1:80/api.php?action=vod&sub=start&stream_ids[]=554"
  • Stop A VOD Encoding
    Perform this request, to stop a VOD Encoding. The last argument is an array in which you can specify the stream ids. It works with POST method as well.

    http://your_dns:port/api.php?action=vod=stop&stream_ids[]=1
PHP:
ex: curl "http://127.0.0.1:80/api.php?action=vod=stop&stream_ids[]=555

i am getting
api.php is currepted , do you know a fix to that ?
 

rifat

Extended Member
Ext. Member
Joined
Oct 24, 2019
Messages
9
Reaction score
4
Points
14
Location
Earth
TODAY I GOT :

{"result":false,"0":"KEY WRONG"}
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

coolG

Extended Member
Ext. Member
Joined
Jul 2, 2019
Messages
64
Reaction score
119
Points
44
Location
spain
anybody knows to make mass events to magboxes? (original xc v2)
sending out messages to magboxes?
we have a basic custom panel and want to add more functions....
anybody?
thanks
 

lub0112

Extended Member
Ext. Member
Joined
Sep 30, 2019
Messages
263
Reaction score
517
Points
104
Location
glasgow
crons for clearing logs for anyone sufffering massive logs

0 * * * * /usr/bin/mysql -uxxxxx -pxxxxxxxx -hlocalhost -Dxtream_iptvpro -e"TRUNCATE TABLE client_logs"


0 * * * * /usr/bin/mysql -uxxxxx -pxxxxxxxxx -hlocalhost -Dxtream_iptvpro -e"TRUNCATE TABLE stream_logs"
 

mojbuk

Extended Member
Ext. Member
Joined
Sep 22, 2019
Messages
55
Reaction score
326
Points
64
Location
BiH
anybody knows to make mass events to magboxes? (original xc v2)
sending out messages to magboxes?
we have a basic custom panel and want to add more functions....
anybody?
thanks
How you add unlimited mag witg api?
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

coolG

Extended Member
Ext. Member
Joined
Jul 2, 2019
Messages
64
Reaction score
119
Points
44
Location
spain
How you add unlimited mag witg api?
thtas another one i wish to know....
anybody?
 

dogstyle007

Extended Member
Ext. Member
Joined
Nov 29, 2019
Messages
82
Reaction score
515
Points
94
Location
Africa
Please, how do i block a website from using my stream in XC V1? i tried using the block IP section but it's not working
 

heaveframe

Extended Member
Ext. Member
Joined
Oct 2, 2019
Messages
80
Reaction score
269
Points
64
Location
ONLINE
API Start/Stop Streams/vods / View Online/Offline Streams

PHP:
apt install curl -y

  • View Server List
    Perform this request, to view all your servers, main & load balancers including their status

    http://your_dns:port/api.php?action=server&sub=list

    PHP:
    ex: curl "http://127.0.0.1:80/api.php?action=server&sub=list"
  • View Online Streams
    Perform this request, to view only the online Live Streams

    http://your_dns:port/api.php?action=stream&sub=online
    PHP:
    ex: curl "http://127.0.0.1:80/api.php?action=stream&sub=online"
  • View Offline Streams
    Perform this request, to view only the Offline Live Streams

    http://your_dns:port/api.php?action=server&sub=offline
    PHP:
    ex: curl "http://127.0.0.1:80/api.php?action=server&sub=offline"
  • Start/Restart A Stream
    Perform this request, to start or restart a Live Stream. The last argument is an array in which you can specify the stream ids. It works with POST method as well.

    http://your_dns:port/api.php?action=stream&sub=start&stream_ids[]=1
  • PHP:
    ex: curl "http://127.0.0.1:80/api.php?action=stream&sub=start&stream_ids[]=51"
  • Stop A Stream
    Perform this request, to stop a Live Stream. The last argument is an array in which you can specify the stream ids. It works with POST method as well.

    http://your_dns:port/api.php?action=stream&sub=stop&stream_ids[]=1
    PHP:
    ex: curl "http://127.0.0.1:80/pi.php?action=stream&sub=stop&stream_ids[]=557"
  • Start VOD Encoding (Applies for series episodes as well )
  • Perform this request, to start a VOD Encoding process. The last argument is an array in which you can specify the stream ids. It works with POST method as well.

    http://your_dns:port/api.php?action=vod&sub=start&stream_ids[]=1
    PHP:
    ex: curl "http://127.0.0.1:80/api.php?action=vod&sub=start&stream_ids[]=554"
  • Stop A VOD Encoding
    Perform this request, to stop a VOD Encoding. The last argument is an array in which you can specify the stream ids. It works with POST method as well.

    http://your_dns:port/api.php?action=vod=stop&stream_ids[]=1
PHP:
ex: curl "http://127.0.0.1:80/api.php?action=vod=stop&stream_ids[]=555


List offline streams doesn't work for me
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

malychino

Extended Member
Ext. Member
Joined
Nov 14, 2019
Messages
109
Reaction score
89
Points
39
Location
Nowher
Hello to all,
i have a problem with one server not running streams.
After inserting the stream after a few moments it goes into stopped.
Note: this only happens on one server!
I would ask for your help how to solve this.
Thanks
 

ramimeraabi

Extended Member
Ext. Member
Joined
Sep 24, 2019
Messages
7
Reaction score
29
Points
24
Location
lb
View Server List
Perform this request, to view all your servers, main & load balancers including their status

http://your_dns:port/api.php?action=server&sub=list
i received this result

Not Found
The requested URL /api.php was not found on this server.
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

heaveframe

Extended Member
Ext. Member
Joined
Oct 2, 2019
Messages
80
Reaction score
269
Points
64
Location
ONLINE
API Start/Stop Streams/vods / View Online/Offline Streams

PHP:
apt install curl -y

  • View Server List
    Perform this request, to view all your servers, main & load balancers including their status

    http://your_dns:port/api.php?action=server&sub=list

    PHP:
    ex: curl "http://127.0.0.1:80/api.php?action=server&sub=list"
  • View Online Streams
    Perform this request, to view only the online Live Streams

    http://your_dns:port/api.php?action=stream&sub=online
    PHP:
    ex: curl "http://127.0.0.1:80/api.php?action=stream&sub=online"
  • View Offline Streams
    Perform this request, to view only the Offline Live Streams

    http://your_dns:port/api.php?action=server&sub=offline
    PHP:
    ex: curl "http://127.0.0.1:80/api.php?action=server&sub=offline"
  • Start/Restart A Stream
    Perform this request, to start or restart a Live Stream. The last argument is an array in which you can specify the stream ids. It works with POST method as well.

    http://your_dns:port/api.php?action=stream&sub=start&stream_ids[]=1
  • PHP:
    ex: curl "http://127.0.0.1:80/api.php?action=stream&sub=start&stream_ids[]=51"
  • Stop A Stream
    Perform this request, to stop a Live Stream. The last argument is an array in which you can specify the stream ids. It works with POST method as well.

    http://your_dns:port/api.php?action=stream&sub=stop&stream_ids[]=1
    PHP:
    ex: curl "http://127.0.0.1:80/pi.php?action=stream&sub=stop&stream_ids[]=557"
  • Start VOD Encoding (Applies for series episodes as well )
  • Perform this request, to start a VOD Encoding process. The last argument is an array in which you can specify the stream ids. It works with POST method as well.

    http://your_dns:port/api.php?action=vod&sub=start&stream_ids[]=1
    PHP:
    ex: curl "http://127.0.0.1:80/api.php?action=vod&sub=start&stream_ids[]=554"
  • Stop A VOD Encoding
    Perform this request, to stop a VOD Encoding. The last argument is an array in which you can specify the stream ids. It works with POST method as well.

    http://your_dns:port/api.php?action=vod=stop&stream_ids[]=1
PHP:
ex: curl "http://127.0.0.1:80/api.php?action=vod=stop&stream_ids[]=555


DO you know how to start encoding on a specific server ? I really need that :/
 

pinkoo

Extended Member
Ext. Member
Joined
Dec 9, 2019
Messages
4
Reaction score
9
Points
11
Location
france
thank you.
(but for info. : concatenate series ID request seems not working)
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com

coolG

Extended Member
Ext. Member
Joined
Jul 2, 2019
Messages
64
Reaction score
119
Points
44
Location
spain
hi all
anybody knows how to add options for transcoding streams?
thank you
 

Snekhers

Extended Member
Ext. Member
Joined
Mar 18, 2020
Messages
9
Reaction score
5
Points
14
Location
Nocation
Hello, what is command or link for MANAGE BOUQUETS for every user self pack?
Thanks
 
shape1
shape2
shape3
shape4
shape5
shape6
Top
AdBlock Detected

We know, ad-blocking software do a great job at blocking ads. But our site is sponsored by advertising. 

For the best possible site experience please take a moment to disable your AdBlocker.
You can create a Account with us or if you already have account, you can prefer an Account Upgrade.

I've Disabled AdBlock