# getCallsStatus | @account-kit/wallet-client

> Overview of the getCallsStatus function from @account-kit/wallet-client

> For the complete documentation index, see [llms.txt](/docs/llms.txt).

{/* This file is auto-generated by TypeDoc. Do not edit manually. */}

```ts
function getCallsStatus(client, params): Promise<{}>;
```

Defined in: [account-kit/wallet-client/src/client/actions/getCallsStatus.ts:39](https://github.com/alchemyplatform/aa-sdk/blob/main/account-kit/wallet-client/src/client/actions/getCallsStatus.ts#L39)

Gets the status of a prepared call by its ID.
This method is used to check the execution status of calls sent via sendPreparedCalls.

## Example

```ts
// After sending prepared calls
const sendResult = await client.sendPreparedCalls({...});

// Check the status of the call ID
const status = await client.getCallsStatus(sendResult.id);
```

## Parameters

<table>
  <thead>
    <tr>
      <th align="left">Parameter</th>
      <th align="left">Type</th>
      <th align="left">Description</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        `client`
      </td>

      <td>
        `InnerWalletApiClient`
      </td>

      <td>
        The wallet API client to use for the request
      </td>
    </tr>

    <tr>
      <td>
        `params`
      </td>

      <td>
        `` `0x${string}` ``
      </td>

      <td>
        The ID of the prepared call to check
      </td>
    </tr>

  </tbody>
</table>

## Returns

`Promise`\<\{
}>

A Promise that resolves to the status information including:

- id: The hex ID of the call
- chainId: The chain ID in hex format
- status: The current status of the batch execution
- receipts: Optional array of transaction receipts if the batch has been executed