v1

latestOpenAPI 3.0.42026-07-26159287356.1 KB
Fids

Fetch a list of all the FIDs

Fetch a list of all the FIDs.

get/v1/fids

Query parameters

shard_idinteger required

The shard ID to filter by

pageSizeinteger

Maximum number of messages to return in a single response

reverseboolean

Reverse the sort order, returning latest messages first

pageTokenstring

The page token returned by the previous query, to fetch the next page. If this parameter is empty, fetch the first page

Response

A successful response.

fidsFidSchema[] required
nextPageTokenstring byte required

Base64-encoded pagination token for fetching the next page of results. An empty value indicates there are no more pages to return. Used in conjunction with the pageSize parameter to implement pagination across large result sets.

Example response

{
  "fids": [
    1
  ],
  "nextPageToken": "AuzO1V0DtaItCwwa10X6YsfStlynsGWT"
}