Skip to main content
GET
/
realtime
/
v1
/
call
Get Calls
curl --request GET \
  --url https://realtime.govworx.net/realtime/v1/call
{
  "content": [
    {
      "id": "<string>",
      "call_sid": "<string>",
      "call_status": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "started_at": "2023-11-07T05:31:56Z",
      "summary": {
        "title": "<string>",
        "summary": "<string>",
        "nature": "<string>",
        "location": "<string>",
        "severity": "<string>",
        "hazards": "<string>",
        "timeSensitivity": "<string>",
        "callerInfo": "<string>",
        "suspectDetails": "<string>",
        "ancillaryServices": "<string>",
        "additionalRemarks": "<string>"
      },
      "call_socket": {
        "token": {
          "token": "<string>",
          "expires": 123,
          "issued": 123,
          "capability": "<string>",
          "clientId": "<string>"
        },
        "channel": "<string>",
        "updates_channel_host": "<string>"
      },
      "call_details_record": {
        "ani_number": "<string>",
        "call_duration_ms": 123,
        "call_started_at": "2023-11-07T05:31:56Z",
        "call_answered_at": "2023-11-07T05:31:56Z",
        "call_ended_at": "2023-11-07T05:31:56Z"
      },
      "call_locations": [
        {
          "latitude": 123,
          "longitude": 123,
          "accuracy": 123,
          "city": "<string>",
          "state": "<string>",
          "streetAddress": "<string>",
          "country": "<string>",
          "source": "<string>",
          "createdAt": "2023-11-07T05:31:56Z"
        }
      ]
    }
  ],
  "pageable": {
    "pageNumber": 0,
    "pageSize": 5,
    "sort": {
      "sorted": true,
      "unsorted": true,
      "empty": true
    },
    "offset": 0,
    "paged": true,
    "unpaged": true
  },
  "last": true,
  "totalPages": 7,
  "totalElements": 34,
  "numberOfElements": 5,
  "sort": {
    "sorted": true,
    "unsorted": true,
    "empty": true
  },
  "first": true,
  "size": 5,
  "number": 0,
  "empty": true
}

Query Parameters

page
integer<int32>
default:1
Required range: x >= 1
size
integer<int32>
default:25
Required range: 1 <= x <= 50
summary
boolean
default:false

Include call summary in the response

Response

Returns a paginated list of calls

Paginated response containing a list of calls

content
object[]

List of calls for the current page

pageable
object

Pagination details

last
boolean

Whether this is the last page

totalPages
integer<int32>

Total number of pages

Example:

7

totalElements
integer<int64>

Total number of elements across all pages

Example:

34

numberOfElements
integer<int32>

Number of elements in the current page

Example:

5

sort
object

Sort information

first
boolean

Whether this is the first page

size
integer<int32>

Page size

Example:

5

number
integer<int32>

Current page number (0-indexed)

Example:

0

empty
boolean

Whether the page is empty