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

# Request SP PnL settlement

> 
**Limit: 1 request per second**

`POST /v1/sv/sp_settle_pnl`




## OpenAPI

````yaml orderly.openapi post /v1/sv/sp_settle_pnl
openapi: 3.0.1
info:
  title: EVM
  description: ''
  version: 1.0.0
servers:
  - url: https://api.orderly.org
    description: Mainnet
  - url: https://testnet-api.orderly.org
    description: Testnet
security: []
tags:
  - name: public
  - name: private
paths:
  /v1/sv/sp_settle_pnl:
    post:
      tags:
        - private
      summary: Request SP PnL settlement
      description: |

        **Limit: 1 request per second**

        `POST /v1/sv/sp_settle_pnl`
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                message:
                  type: object
                  properties:
                    contract:
                      type: string
                      description: ''
                    brokerId:
                      type: string
                      description: ''
                    chainId:
                      type: number
                      description: ''
                    settleNonce:
                      type: string
                      description: ''
                    timestamp:
                      type: number
                      description: ''
                signature:
                  type: string
                userAddress:
                  type: string
                verifyingContract:
                  type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BasicResponse'
components:
  schemas:
    BasicResponse:
      required:
        - success
      type: object
      properties:
        success:
          description: Indicates whether the request was successful.
          type: boolean
          example: true
        timestamp:
          description: Server timestamp in milliseconds.
          type: integer
          example: 1702989203989

````