FeniciaDocs
DocumentaciónAPICambiosSoporte
Buscar⌘K
Orders APIList OrdersCreate an OrderGet an OrderSearch OrdersOrder Status TransitionsUpdate an OrderFulfillment & ShippingReturns & RefundsAttachmentsActivity Log & ExportAbandoned CartsError Catalog

Producto

  • Características
  • Precios
  • Integraciones

Recursos

  • Documentación
  • API
  • Cambios
  • Blog

Empresa

  • Sobre nosotros
  • Contacto
  • Carreras

Legal

  • Privacidad
  • Términos
FeniciaLa plataforma de e-commerce para merchants profesionales

© 2026 Hobbio Inc. Todos los derechos reservados.

List Orders

Returns a paginated list of orders for the authenticated tenant. Supports combinable filters, field projection, and pagination.

Información

Requires orders:read permission. See Authentication to configure your API key.

Endpoint

List orders with filters and pagination.

Examples

curl -G 'https://api.fenicia.io/orders' \
  -H 'Authorization: Bearer fn_live_xxxxxxxxxxxx' \
  --data-urlencode 'statusGroup=in_progress' \
  --data-urlencode 'limit=50' \
  --data-urlencode 'startDate=2026-04-01T00:00:00Z'

Field projection

Use fields to reduce payload size:

GET /orders?fields=id,externalId,orderStatus,total

Related count endpoints

MethodPathDescription
GET/orders/countTotal count (respects filters).
GET/orders/count/status-groupsCount grouped by statusGroup.
GET/orders/count/individual-statusCount per individual status.

Errors

CodeHTTPDescription
INVALID_QUERY_PARAM400Invalid or malformed query parameter.
UNAUTHORIZED401Missing or invalid API key.
FORBIDDEN403API key lacks orders:read permission.
RATE_LIMIT_EXCEEDED429Exceeded 100 req / 60s.

Related

  • Search orders
  • Order CRUD
  • API overview