Skip to main content

GetIndexerOutput

Retrieves the recorded object output of an indexer.

Request Parameters

  • indexer_id (required)

    The ID of the indexer to retrieve the output from.

  • uid (optional)

    The unique identifier of the object to retrieve. The uid value is an arbitrary string generated by the indexer.

  • key (optional)

    Retrieve only objects with the given key. The key value is an arbitrary string generated by the indexer.

  • start_after (optional)

    Retrieve only objects created for transactions after this date. The date is in RFC3339 format.

  • end_before (optional)

    Retrieve only objects created for transactions before this date. The date is in RFC3339 format.

  • next_token (optional)

    The token to retrieve the next page of results. The token is returned in the next_token field of the response.

Response

  • outputs_json (array)

    A JSON string containing the array of objects

  • next_token (string)

    The token to retrieve the next page of results.

Example Request

{
"jsonrpc": "2.0",
"method": "dyndexer_getIndexerOutput",
"params": [
{
"indexer_id": "indexer-123456"
}
],
}

Example Response

{
"jsonrpc": "2.0",
"result": {
"outputs_json": "..."
}
}