All pages
Powered by GitBook
1 of 1

Loading...

Get Multiple Escrow Balance

Get the balance of multiple escrows.

Headers

Name
Value

Content-Type

application/json

x-api-key

<token>

Open API

Use Example:

import axios from "axios";

const http = axios.create({
  baseURL: "https://dev.api.trustlesswork.com",
  timeout: 10000,
  headers: {
    "Content-Type": "application/json",
    "x-api-key": your_api_key,
  },
});

export const useExample = async (addresses: string[]) => {
  const response = await http.get("/escrow/single-release/get-multiple-escrow-balance", {
    params: { addresses },
  });

  return response;
};