API help...

I’ve found the wiki article here and understand the API is at /api. However, how should the calls/requests be formatted? For example, if I wanted to pull episode information, how would I format the query? I see it’s seriesId, I also see I need to pass my api key somehow and what id is the series id based on, an id in the drone db or an id pulled from some service, or something else? http://localhost:8989/api?apikey=??? etc?

Thanks

Currently in the master branch the API Key must be sent as a header (X-Api-Key).

The API docs show the available interfaces, for episodes its /episode

http://localhost:8989/api/episode?seriresid=1

All parameters for get requests are query strings and parameters for PUT/POST are part of the body as JSON.