Skip to main content
POST
/
lists
/
entries
Query entries in a list with optional filters, sorts, and pagination
curl --request POST \
  --url https://api.supersonic.cv/lists/entries \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "list_id": "<string>",
  "filters": {},
  "sorts": [
    {
      "field": "<string>",
      "direction": "asc"
    }
  ],
  "page": 123,
  "page_size": 123
}
'
{}

Authorizations

Authorization
string
header
required

API key: supersonic_live_...

Body

application/json
list_id
string
required

List UUID

filters
object

Entry data field filters

sorts
object[]
page
integer
page_size
integer

Response

Success

The response is of type object.