> For the complete documentation index, see [llms.txt](https://docs.bsvblockchain.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.bsvblockchain.org/important-concepts/details/spv/broadcasting.md).

# Broadcasting

The SPV Wallet broadcasts all valid transactions it receives or creates to ARC.

{% embed url="<https://github.com/bitcoin-sv/go-broadcast-client/>" %}

## ARC Endpoints

We use the first endpoint to determine the correct fee model to use when creating a transaction.

{% openapi src="<https://bitcoin-sv.github.io/arc/arc.json>" path="/v1/policy" method="get" %}
<https://bitcoin-sv.github.io/arc/arc.json>
{% endopenapi %}

Thereafter we simply broadcast to ARC and expect a `SEEN_ON_NETWORK` txStatus response in most cases.

{% openapi src="<https://bitcoin-sv.github.io/arc/arc.json>" path="/v1/tx" method="post" %}
<https://bitcoin-sv.github.io/arc/arc.json>
{% endopenapi %}

Usually a callbackUrl would be set for async status updates - but if you'd like to manually check the most recent state of a given transaction, you can use this:

{% openapi src="<https://bitcoin-sv.github.io/arc/arc.json>" path="/v1/tx/{txid}" method="get" %}
<https://bitcoin-sv.github.io/arc/arc.json>
{% endopenapi %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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.bsvblockchain.org/important-concepts/details/spv/broadcasting.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.
