# Submit Transaction

## Introduction

Once you have a signed transaction. You are ready to submit it to the Cardano network

## Usage

### Payload

In order to submit the transaction, you need at least one valid signature with the provided transaction.

This approach supports multi signature (*multi sig*) as well.

{% code overflow="wrap" %}

```json
{
  "transaction": "84a4... *The complete transaction*",
  "signatures": ["a100...", "a100..."]
}
```

{% endcode %}

### Submit the Transaction

**You can refer to this page to see how to create a transaction:**

{% content-ref url="/pages/RCnVmsz8IY84fmYcqVQX" %}
[Create Basic Transaction](/guides/transaction/create-basic-transaction.md)
{% endcontent-ref %}

Once **signed**, you can submit it using the following endpoint:

#### With Bash and cURL

{% content-ref url="/pages/Q5ZDYBTN4CqEsW0t1QOB" %}
[Broken mention](broken://pages/Q5ZDYBTN4CqEsW0t1QOB)
{% endcontent-ref %}

#### With Fetch

{% content-ref url="/pages/t980xDOXeLRPzIf38hdn" %}
[Broken mention](broken://pages/t980xDOXeLRPzIf38hdn)
{% endcontent-ref %}

**Cardano Explorer**

You can get your transaction on explorer: <https://preprod.cexplorer.io/tx/b7969bf21b1125938bf112df7d932b66a519b32f0e94e36eb7d3e98cc4ef0c98>


---

# 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://dev.ada-anvil.io/guides/transaction/submit-transaction.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.
