shinkro URL

The URL you need to set in Plex Webhook or Tautulli notification agent.

Your Plex Media Server or Tautulli instance must send a post request to the /api/plex endpoint of shinkro with the apiKey value as a parameter or header. The header key is Shinkro-Api-Key and param key is apiKey.

Plex Media Server and shinkro hosted on the same server

In this case, you can simply use the loopback ip address to connect the two. The URL would be as follows:

http://127.0.0.1:7011/api/plex?apiKey={shinkro.ApiKey value from config.toml}

Using a Reverse Proxy

If you are using a reverse proxy with shinkro as a subdomain, the url would be as follows:

http(s)://shinkro.domain.com/api/plex?apiKey={shinkro.ApiKey value from config.toml}

If it is set as a subfolder, it would be as follows:

http(s)://subdomain.domain.com/shinkro/api/plex?apiKey={shinkro.ApiKey from config.toml}

For example:

https://shinkro.domain.com/api/plex?apiKey=vmkvnfkinfbikn2134dsd

https://subdomain.domain.com/shinkro/api/plex?apiKey=vmkvnfkinfbikn2134dsd

Not using a Reverse Proxy

The URL would be as follows:

http://{your_public_ip_address}/api/plex?apiKey={shinkro.ApiKey from config.toml}

For example:

http://46.123.11.2/api/plex?apiKey=vmkvnfkinfbikn2134dsd

Last updated