> ## Documentation Index
> Fetch the complete documentation index at: https://docs.linkio.world/llms.txt
> Use this file to discover all available pages before exploring further.

# Get All Transactions

> Fetch all transaction done.

<Info>
  ### Use this Endpoint to get all Transaction

  **Get api.linkio.world/transactions/v1/fetch\_all\_transactions?business\_id=\$\{bus\_id}**
</Info>

* Deposit: These are simply transactions received in to any address you generated
* Withrawal: These are transactions signed and sent out via Off-ramp.

### Get all Business transactions.

<CodeGroup>
  ```bash bash theme={null}
  const options = {
    method: 'GET',
    headers: {
      accept: 'application/json',
      'ngnc-sec-key': 'Bridge_Secret_Key',
      'content-type': 'application/json'
    },
  };

  let bus_id = "string"
  fetch(`https://api.linkio.world/transactions/v1/fetch_all_transactions`, options)
    .then(response => response.json())
    .then(response => console.log(response))
    .catch(err => console.error(err));
  ```

  ```bash bash theme={null}
  import requests
  bus_id = "string" 
  url = `https://api.linkio.world/transactions/v1/fetch_all_transactions` 

  headers = {
      "accept": "application/json",
      "ngnc-sec-key": "Bridge_Secret_Key",
      "content-type": "application/json"
  }

  response = requests.post(url, headers=headers)

  print(response.text)
  ```
</CodeGroup>

***

[Customer Verification](/docs/customer-verification)

[Processing Windows](/docs/processing-windows)
