# GET /tx-status

This endpoint returns the status of the bridge transaction, identified by `quoteId` that is returned from Native firm quote endpoint.

**Bridge statuses**

* `USER_REQUESTED`: The user requested a firm quote but did not submit the initiate intent transaction.
* `USER_COMMITTED`: The user submitted the initiate intent and deposited funds into the Native bridge contract.
* `MM_FILLED`: The market maker (MM) filled the transaction on the destination chain; no further action is required from the user.
* `MM_FAILED`: The MM failed to sign the transaction within the expiry time; the user needs to perform a refund operation to retrieve their deposited funds.
* `REFUNDED`: The user performed a refund operation and withdrew their funds.
* `CLAIMED`: The MM claimed funds from the bridge contract to Native Lend, updating their credit position.

### **Headers**

| Name     | Description                           |
| -------- | ------------------------------------- |
| `apiKey` | API Key retrieved from the Native app |

### **Params**

| Name         | Description                                                              |
| ------------ | ------------------------------------------------------------------------ |
| `quoteId` \* | The unique order ID that is returned from the Native firm-quote endpoint |

### **Example Request**

```json
https://newapi.native.org/v1/bridge/tx-status?quoteId=0xeed84ac291ed96013ddeee89d2646cb0>
```

### **Example Response**

```json
{
    "quoteId": "0xeed84ac291ed96013ddeee89d2646cb0",
    "status": "MM_FILLED"
}
```


---

# 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.native.org/native-dev/build-with-native/swap-aggregators/crosschain-swap-api/old-docs/get-tx-status.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.
