Rightsline · Example Payload

Rightsline Check Availability Example

Content ManagementEntertainmentMediaRights ManagementRoyalties

Rightsline Check Availability Example is an example object payload from Rightsline, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

rightsline-check-availability-example.json Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://app.rightsline.com/v4/availability?contentId=CONTENT-12345&territory=US&platform=SVOD&startDate=2026-06-01&endDate=2026-12-31",
    "headers": {
      "Authorization": "Bearer RIGHTSLINE_API_TOKEN_HERE"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "contentId": "CONTENT-12345",
      "available": true,
      "territory": "US",
      "platform": "SVOD",
      "windows": [
        {
          "startDate": "2026-01-01",
          "endDate": "2026-12-31",
          "platform": "SVOD",
          "exclusive": false
        }
      ]
    }
  }
}