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

# Execute a quote



## OpenAPI

````yaml POST /v1/execute
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.roissingue.com/
    description: Production
security: []
paths:
  /v1/execute:
    post:
      summary: Post Execute
      operationId: post_execute_v1_execute_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExecuteIn'
            examples:
              execute:
                summary: Execute a swap from a signed quote
                value:
                  quote: {}
                  payloadToSign: {}
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExecuteOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ExecuteIn:
      properties:
        quote:
          additionalProperties: true
          type: object
          title: Quote
        payloadToSign:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Payloadtosign
      type: object
      required:
        - quote
        - payloadToSign
      title: ExecuteIn
    ExecuteOut:
      properties:
        success:
          type: boolean
          title: Success
          description: Indicates if the supertransaction execution was successful.
        supertxHash:
          anyOf:
            - type: string
            - type: 'null'
          title: Supertxhash
          description: >-
            The transaction hash of the executed supertransaction, or null if
            not available.
        error:
          anyOf:
            - type: string
            - type: 'null'
          title: Error
          description: Error message if the execution failed, or null if successful.
      type: object
      required:
        - success
      title: ExecuteOut
      examples:
        - success: true
          supertxHash: '0x9a72f87a93c55d8f88e3f8c2a7b4c5d6e7f8a9b0c1d2e3f4a5b6c7d8e9f0a1b2'
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````