> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gomaestro.org/llms.txt
> Use this file to discover all available pages before exploring further.

> Submit a signed Dogecoin transaction to the network for processing and inclusion in the blockchain.

# Send Transaction



## OpenAPI

````yaml dogecoin/node-rpc-api/openapi.json post /transaction/submit
openapi: 3.1.0
info:
  description: Node RPC API for Dogecoin.
  title: Dogecoin - Node RPC API
  version: '0.1'
servers:
  - description: Dogecoin Mainnet
    url: https://xdg-mainnet.gomaestro-api.org/v0/rpc
  - description: Dogecoin Testnet
    url: https://xdg-testnet.gomaestro-api.org/v0/rpc
security:
  - api-key: []
externalDocs:
  description: ''
  url: ''
paths:
  /transaction/submit:
    post:
      tags:
        - Transactions
      summary: Send Transaction
      description: Send transaction to the network
      operationId: rpc_submit_transaction
      requestBody:
        content:
          application/json:
            schema:
              oneOf:
                - type: object
                - title: _
                  type: string
        description: Signed Tx Hex
        required: true
      responses:
        '201':
          content:
            application/json:
              schema:
                type: string
          description: OK
        '400':
          content:
            application/json:
              schema:
                oneOf:
                  - $ref: '#/components/schemas/api_dogecoin.NodeRPCError'
                  - $ref: '#/components/schemas/api_dogecoin.APIError'
          description: Invalid request.
        '500':
          content:
            application/json:
              schema:
                oneOf:
                  - $ref: '#/components/schemas/api_dogecoin.APIError'
                  - $ref: '#/components/schemas/api_dogecoin.APIError'
          description: Error processing transaction response.
components:
  schemas:
    api_dogecoin.NodeRPCError:
      properties:
        code:
          description: Error code returned from the API request
          example: 0
          type: integer
        node rpc error:
          description: Error returned from the API request
          example: node rpc error
          type: string
      type: object
    api_dogecoin.APIError:
      properties:
        error:
          description: Error returned from the API request
          example: Bad Request
          type: string
      type: object
  securitySchemes:
    api-key:
      description: Project API Key
      in: header
      name: api-key
      type: apiKey

````