Skip to main content

Submit a Transaction

POST 

/transactions

This endpoint actually submits a transaction to the Stellar network. It only takes a single, required parameter: the signed transaction. Refer to the Transactions page for details on how to craft a proper one. If you submit a transaction that has already been included in a ledger, this endpoint will return the same response as would’ve been returned for the original transaction submission. This allows for safe resubmission of transactions in error scenarios, as highlighted in the error-handling guide.

Request

Query Parameters

    tx stringrequired

Responses

Success

Schema

    _embedded

    object

    records

    object[]

  • Array [

  • memo string
    memo_bytes string

    _links

    object

    self

    object

    required

    href linkrequired
    templated boolean

    account

    object

    required

    href linkrequired
    templated boolean

    ledger

    object

    required

    href linkrequired
    templated boolean

    operations

    object

    required

    href linkrequired
    templated boolean

    effects

    object

    required

    href linkrequired
    templated boolean

    precedes

    object

    required

    href linkrequired
    templated boolean

    succeeds

    object

    required

    href linkrequired
    templated boolean

    transaction

    object

    required

    href linkrequired
    templated boolean
    id id (string)required
    paging_token stringrequired
    successful booleanrequired
    hash stringrequired
    ledger int32required
    created_at stringrequired
    source_account address (string)required

    Possible values: Value must match regular expression G[A-Z0-9]{55}

    account_muxed string
    account_muxed_id string
    source_account_sequence stringrequired
    fee_account address (string)required

    Possible values: Value must match regular expression G[A-Z0-9]{55}

    fee_account_muxed address (string)

    Possible values: Value must match regular expression G[A-Z0-9]{55}

    fee_account_muxed_id string
    fee_charged stringrequired
    max_fee stringrequired
    operation_count int32required
    envelope_xdr stringrequired
    result_xdr stringrequired
    result_meta_xdr stringrequired
    fee_meta_xdr string
    memo_type stringrequired
    signatures string[]required

    Possible values: Value must match regular expression G[A-Z0-9]{55}

    valid_after string
    valid_before string

    preconditions

    object

    timebounds

    object

    min_time string
    max_time string

    ledgerbounds

    object

    min_ledger string
    max_ledger string
    min_account_sequence string
    min_account_sequence_age string
    min_account_sequence_ledger_gap uint32
    extra_signers string[]

    fee_bump_transaction

    object

    hash hash (string)
    signatures string[]

    Possible values: Value must match regular expression G[A-Z0-9]{55}

    inner_transaction

    object

    hash hash (string)
    signatures string[]

    Possible values: Value must match regular expression G[A-Z0-9]{55}

    max_fee string
  • ]

Loading...