> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://apidocs.movieknight.site/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://apidocs.movieknight.site/_mcp/server.

# Providers

GET {{baseUrl}}/api/providers

**What:** US watch/streaming providers for the provider filter (trimmed to the fields the UI uses).

**Auth:** None.

**Params:** None.

**Returns:** `data = [{ provider_id, provider_name, logo_path, display_priority }]`.

Reference: https://apidocs.movieknight.site/movie-knight-api/catalog/providers

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: collection
  version: 1.0.0
paths:
  /api/providers:
    get:
      operationId: providers
      summary: Providers
      description: >-
        **What:** US watch/streaming providers for the provider filter (trimmed
        to the fields the UI uses).


        **Auth:** None.


        **Params:** None.


        **Returns:** `data = [{ provider_id, provider_name, logo_path,
        display_priority }]`.
      tags:
        - subpackage_catalog
      parameters:
        - name: Authorization
          in: header
          description: Bearer authentication
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Catalog_Providers_Response_200'
servers:
  - url: '{{baseUrl}}'
    description: '{{baseUrl}}'
components:
  schemas:
    ApiProvidersGetResponsesContentApplicationJsonSchemaDataItems:
      type: object
      properties:
        logo_path:
          type: string
        provider_id:
          type: integer
        provider_name:
          type: string
        display_priority:
          type: integer
      required:
        - logo_path
        - provider_id
        - provider_name
        - display_priority
      title: ApiProvidersGetResponsesContentApplicationJsonSchemaDataItems
    Catalog_Providers_Response_200:
      type: object
      properties:
        ok:
          type: boolean
        data:
          type: array
          items:
            $ref: >-
              #/components/schemas/ApiProvidersGetResponsesContentApplicationJsonSchemaDataItems
      required:
        - ok
        - data
      title: Catalog_Providers_Response_200
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

```

## Examples



**Response**

```json
{
  "ok": true,
  "data": [
    {
      "logo_path": "/pbpMk2JmcoNnQwx5JGpXngfoWtp.jpg",
      "provider_id": 8,
      "provider_name": "Netflix",
      "display_priority": 0
    },
    {
      "logo_path": "/emthp39XA2YScoYL1p0sdbAH2WA.jpg",
      "provider_id": 9,
      "provider_name": "Amazon Prime Video",
      "display_priority": 2
    },
    {
      "logo_path": "/97yvRBw1GzX7fXprcF80er19ot.jpg",
      "provider_id": 337,
      "provider_name": "Disney Plus",
      "display_priority": 4
    },
    {
      "logo_path": "/jbe4gVSfRlbPTdESXhEKpornsfu.jpg",
      "provider_id": 1899,
      "provider_name": "Max",
      "display_priority": 5
    }
  ]
}
```

**SDK Code**

```python Catalog_Providers_example
import requests

url = "https://{{baseurl}}/api/providers"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.json())
```

```javascript Catalog_Providers_example
const url = 'https://{{baseurl}}/api/providers';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go Catalog_Providers_example
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://{{baseurl}}/api/providers"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("Authorization", "Bearer <token>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby Catalog_Providers_example
require 'uri'
require 'net/http'

url = URI("https://{{baseurl}}/api/providers")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
```

```java Catalog_Providers_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://{{baseurl}}/api/providers")
  .header("Authorization", "Bearer <token>")
  .asString();
```

```php Catalog_Providers_example
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://{{baseurl}}/api/providers', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

echo $response->getBody();
```

```csharp Catalog_Providers_example
using RestSharp;

var client = new RestClient("https://{{baseurl}}/api/providers");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
IRestResponse response = client.Execute(request);
```

```swift Catalog_Providers_example
import Foundation

let headers = ["Authorization": "Bearer <token>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://{{baseurl}}/api/providers")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```