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.

Search Orders

Run full-text searches over orders. The query term is matched simultaneously against customer name and email, order ID (internal and external), and line-item SKUs.

Información

Requires orders:read permission. For paginated lists with structured filters, use List orders.

Endpoint

Full-text search with optional filters.

Examples

curl -G 'https://api.fenicia.io/orders/search' \
  -H 'Authorization: Bearer fn_live_xxxxxxxxxxxx' \
  --data-urlencode 'q=jane@example.com' \
  --data-urlencode 'status=accepted'

Use cases

  • Customer support: quickly look up an order by the customer's email.
  • Reconciliation: locate orders by SKU when investigating stock reports.
  • Auditing: retrieve an order by its external marketplace ID.

Errors

CodeHTTPDescription
MISSING_QUERY400Missing required q parameter.
UNAUTHORIZED401Missing or invalid API key.
FORBIDDEN403Insufficient permission (orders:read).
RATE_LIMIT_EXCEEDED429Exceeded 100 req / 60s.

Related

  • List orders
  • Order CRUD
  • API overview