# getCallsStatus

Retrieves the status and receipts of a batch call previously sent via **sendCalls**, using its **UserOperation hash**.

```typescript
const { status, receipts } = await smartAccountClient.getCallsStatus({ 
  id: userOpHash,
})
```

## Returns

The request returns the call batch status (**PENDING** or **CONFIRMED**) and, if confirmed, the transaction receipts, including logs, block details, gas used, and the transaction hash.

```json
{
  "status": "PENDING"
}
```

or

```json
{
  "status": "CONFIRMED",
  "receipts": [
    {
      "logs": [
        {
          "address": "0x1234567890abcdef1234567890abcdef12345678",
          "data": "0x...",
          "topics": ["0x...", "0x..."]
        }
      ],
      "status": "0x1",
      "blockHash": "0xabcdef...",
      "blockNumber": "0x10d4f",
      "gasUsed": "0x5208",
      "transactionHash": "0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890"
    }
  ]
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.cometh.io/advanced/capabilities/getcallsstatus.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
