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

# Send Transaction



## OpenAPI

````yaml Post /v3/schedule-transaction
openapi: 3.0.0
info:
  title: Aarc API Documentation
  description: Makes it easy to bring assets cross chain for devs
  version: '3.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /v3/schedule-transaction:
    post:
      tags:
        - BridgeSwap
      operationId: BridgeSwapController_scheduleTransaction
      parameters:
        - name: x-api-key
          in: header
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                fromAddress:
                  type: string
                toAddress:
                  type: string
                token:
                  type: string
                amount:
                  type: string
                scheduleTime:
                  type: string
                  format: date-time
      responses:
        '201':
          description: Transaction scheduled successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  transactionId:
                    type: string
                  status:
                    type: string

````