GET v1/crawlevents?start={start}&end={end}&channel_id={channel_id}&page_size={page_size}&offset={offset}&since={since}
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| start | date | None. | |
| end | date | None. | |
| channel_id | integer | None. | |
| page_size | integer | Default value is 200 | |
| offset | integer | Default value is 0 | |
| since | date | None. | 
Body Parameters
None.
Response Information
Resource Description
CrawlEventsResource| Name | Description | Type | Additional information | 
|---|---|---|---|
| CrawlEvents | Collection of CrawlEventDto | None. | 
Response Formats
application/json, text/json
            Sample:
        
{
  "crawlEvents": [
    {
      "id": 1,
      "channel": 2,
      "start": "2025-10-31T09:07:37.5791714-04:00",
      "length": 4,
      "text": "sample string 5",
      "deleted": true
    },
    {
      "id": 1,
      "channel": 2,
      "start": "2025-10-31T09:07:37.5791714-04:00",
      "length": 4,
      "text": "sample string 5",
      "deleted": true
    }
  ]
}
        application/xml, text/xml
            Sample:
<Resources xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CablecastAPI.DTOs">
  <CrawlEvents>
    <CrawlEvent>
      <Channel>2</Channel>
      <Deleted>true</Deleted>
      <Id>1</Id>
      <Length>4</Length>
      <Start>2025-10-31T09:07:37.5791714-04:00</Start>
      <Text>sample string 5</Text>
    </CrawlEvent>
    <CrawlEvent>
      <Channel>2</Channel>
      <Deleted>true</Deleted>
      <Id>1</Id>
      <Length>4</Length>
      <Start>2025-10-31T09:07:37.5791714-04:00</Start>
      <Text>sample string 5</Text>
    </CrawlEvent>
  </CrawlEvents>
</Resources>