Get a page of claim data. The default response will include the 100 most recent claims sorted by date in descending order. Include the optional pg and show pagination parameters to obtain a specific page or number of claims to include in the response. You may also filter claim data to a specific channel, track or video. All optional parameters supported by this endpoint are described in the table below.
optional claim data request parameters
Parameter
Type
Description
show
int
The number of claims to show per page.
pg
int
The page of claim data to retrieve.
claim_id
string
Get data for a specific claim by claim ID.
video_id
string
Get claims against a specific by youtube video ID.
channel_id
string
Get claims against a specific youtube channel by youtube channel ID.
track_id
int
Get claims pertaining to a specific track by SourceAudio Track ID.
Example requests
//get a specific page of claim data { "pg": 2, "show": 25 }
// filter response by to a specific set of claim data { "claim_id": "UC_B7kPmEgq9QbgkwNKjG1Cg", "video_id": "UC_B7kPmEgq9QbgkwNKjG1Cg", "track_id": 123456, "channel_id": "UC_B7kPmEgq9QbgkwNKjG1Cg" }