GET
/
home
/
search
Search Home
curl --request GET \
  --url https://indexer.testnet.incentiv.net/api/home/search
{
  "total": 123,
  "items": [
    {}
  ]
}

Query Parameters

from
string

Start of the range filter, could be a block number or timestamp depending on context.

to
string

End of the range filter, could be a block number or timestamp depending on context.

blockNumber
integer

Specific block number to filter results.

fromTimestamp
integer

UNIX timestamp (seconds) marking the start of the time range.

toTimestamp
integer

UNIX timestamp (seconds) marking the end of the time range.

limit
integer

Maximum number of results to return.

offset
integer

Offset for pagination.

sort
string

Sorting order of the results. Options may include TIMESTAMP_ASC, TIMESTAMP_DESC, NUMBER_ASC, NUMBER_DESC.

type
string

Type of entity to filter by, e.g., block, transaction, userOperation.

Response

200
application/json

Search results matching the query parameters.

The response is of type object.