> ## Documentation Index
> Fetch the complete documentation index at: https://cobo-docs-feature-cobo-cli.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Babylon Batch Broadcast Staking Transaction

> <Note>This content applies to WaaS 1.0 only. We highly recommend that you upgrade to [WaaS 2.0](https://www.cobo.com/developers/v2/guides/overview/introduction).</Note> This endpoint is used to batch broadcast the specified pre-signed staking transactions based on the provided parameter `request_ids`

#### Request

<ParamField body="request_ids" type="String" required>A comma-separated list of transaction request IDs. Please note that the length of the list should be less than or equal to 100.</ParamField>

#### Response

<ResponseField name="success" type="bool">request successful or failed</ResponseField>

<ResponseField name="result" type="object" />

<RequestExample>
  ```python Python
  request(
      "POST",
      "/v1/custody/mpc/babylon/batch_broadcast_staking_transaction/",
      {
          "request_ids": "1717059604245,1718613205287"
      },
      api_key, api_secret, host
  )
  ```

  ```javascript JavaScript
  coboFetch('POST', '/v1/custody/mpc/babylon/batch_broadcast_staking_transaction/', {
      "request_ids": "1717059604245,1718613205287"
  }, api_key, api_secret, host)
      .then(res => {
          res.json().then((data)=>{
              console.log(JSON.stringify(data, null, 4));
          })
      }).catch(err => {
          console.log(err)
      });
  ```

  ```go Go
  Request("POST", "/v1/custody/mpc/babylon/batch_broadcast_staking_transaction/", map[string]string{
      "request_ids": "1717059604245,1718613205287"
  })
  ```
</RequestExample>

<ResponseExample>
  ```json
  {
    "success": true,
    "result": {}
  }

  ```
</ResponseExample>
