Skip to main content

Querying Flows

Retrieving Flow-related information can be done through multiple methods:

  • TriggerPortal – A user-friendly interface for managing and monitoring Flows.
  • Front-end Integration via IntentoJS – Enables seamless interaction with Flows in dApps.
  • Command-Line Interface (CLI) – Local querying for developers and power users.
  • API Endpoints (RPC & LCD) – Directly query Flow data through RPC, LCD, or Swagger endpoints.

Example LCD Endpoints

  1. Retrieve Flow Detail

    GET /intento/intent/v1beta1/flow/{flow_id}

    Example LCD endpoint:

    https://lcd.intento.zone/intento/intent/v1beta1/flow/1

    Returns details of the specified Flow.

  2. List All Flows

    GET /intento/intent/v1beta1/flows

    Example LCD Swagger UI:

    https://lcd.intento.zone/swagger/#get-/intento/intent/v1beta1/flows

    Fetches all active Flows.

Queries

The available queries are as follows:

QueryDescriptionParameterReturnsHTTP MethodEndpoint
InterchainAccountFromAddressReturns the interchain account for a given owner address on a specified connection pairQueryInterchainAccountFromAddressRequestQueryInterchainAccountFromAddressResponseGET/intento/intent/v1beta1/address-to-ica
FlowReturns the auto-executing interchain account flow for a specified IDQueryFlowRequestQueryFlowResponseGET/intento/intent/v1beta1/flow/{id}
FlowsReturns all flow infomrationQueryFlowsRequestQueryFlowsResponseGET/intento/intent/v1beta1/flows
FlowsForOwnerReturns all flow infomration for a given ownerQueryFlowsForOwnerRequestQueryFlowsForOwnerResponseGET/intento/intent/v1beta1/flows-for-owner/{owner}
FlowHistoryReturns flow execution history for a given flowQueryFlowHistoryRequestQueryFlowHistoryResponseGET/intento/intent/v1beta1/flows-history
ParamsReturns the total set of the Intent module parametersQueryParamsRequestQueryParamsResponseGET/intento/intent/v1beta1/params

These proto queries provide a convenient way to interact with the Intent module and access information about automatic interchain flows.

You can use pagination fields to narrow down the scope.

FieldTypeDescription
pagination.keystringA value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.
pagination.offsetstringA numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.
pagination.limitstringThe total number of results to be returned in the result page. If left empty, it will default to a value to be set by each app.
pagination.count_totalbooleanSet to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. Only respected when offset is used.
pagination.reversebooleanSet to true if results are to be returned in the descending order.