Saltar al contenido principal
List Quotes
curl --request GET \
  --url https://api.spherepay.co/v2/quote \
  --header 'Authorization: Bearer <token>'
{
  "page": 1,
  "limit": 10,
  "total": 1,
  "data": [
    {
      "id": "quote_d243ab2b1de4447d8a046d87fefe58cf",
      "status": "active",
      "type": "off_ramp",
      "customerId": "customer_3faa484998f44cfead9668608b9ee1f5",
      "fees": {
        "integratorFee": {
          "fixedAmount": "0.00",
          "bpsRate": "20",
          "bpsAmount": "0.20",
          "totalAmount": "0.20",
          "currency": "usdc"
        },
        "platformFee": {
          "fixedAmount": "0.00",
          "bpsRate": "20",
          "bpsAmount": "0.20",
          "totalAmount": "0.20",
          "currency": "usdc"
        }
      },
      "source": {
        "currency": "usdc",
        "network": "polygon",
        "amount": "100.00"
      },
      "destination": {
        "currency": "brl",
        "network": "pix",
        "amount": "545.50",
        "exchangeRate": "5.455"
      },
      "expiresAt": "2025-01-01T00:01:00.000Z",
      "created": "2025-01-01T00:00:00.000Z",
      "updated": "2025-01-01T00:00:00.000Z"
    }
  ]
}
Recupera una lista paginada de todas las cotizaciones creadas por tu aplicación. Útil para auditar bloqueos de tasa pasados, construir una vista de historial en tu UI, o encontrar la cotización activa más reciente para un cliente.

Autorizaciones

Authorization
string
header
requerido

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Parámetros de consulta

page
string
predeterminado:1
requerido

Page number of the list (default: 1)

Ejemplo:

1

limit
string
predeterminado:10
requerido

Number of items per page (default: 10)

Ejemplo:

10

customerId
string

Filter quotes by customer ID.

Pattern: ^customer_[a-z0-9]+$
Ejemplo:

"customer_3faa484998f44cfead9668608b9ee1f5"

status
enum<string>

Filter quotes by status.

Opciones disponibles:
active,
used,
expired
Ejemplo:

"active"

Respuesta

page
number
requerido

Current page number

Ejemplo:

1

limit
number
requerido

Number of items per page

Rango requerido: 1 < x < 100
Ejemplo:

10

total
number
requerido

Total number of items

Ejemplo:

1

totalPages
number
requerido

Total number of pages

Ejemplo:

1

hasNext
boolean
requerido

Whether there is a next page

Ejemplo:

false

hasPrevious
boolean
requerido

Whether there is a previous page

Ejemplo:

false

data
object[]
requerido

The list of quotes for the current page.

Última modificación el 18 de junio de 2026