Skip to main content
GET
/
merchant
/
{storeId}
/
dashboard
/
stats
Get dashboard stats
curl --request GET \
  --url https://api.wava.co/v1/merchant/{storeId}/dashboard/stats
{
  "result": {
    "currency": "COP",
    "date_from": "2026-04-01",
    "date_to": "2026-04-30",
    "total_revenue": 10000000,
    "total_orders": 142,
    "conversion_rate": 85.5,
    "delta_revenue_pct": 12.5,
    "delta_orders_pct": 8.3,
    "daily_revenue": [
      {
        "date": "2026-04-01",
        "value": 50000
      },
      {
        "date": "2026-04-02",
        "value": 0
      }
    ],
    "gateway_split": [
      {
        "gateway": "breb",
        "tpv": 7000000,
        "pct": 0.7
      },
      {
        "gateway": "nequi",
        "tpv": 2000000,
        "pct": 0.2
      },
      {
        "gateway": "daviplata",
        "tpv": 1000000,
        "pct": 0.1
      }
    ],
    "fees_vs_net": [
      {
        "date": "2026-04-01",
        "net_to_merchant": 47500,
        "fees": 2500
      },
      {
        "date": "2026-04-02",
        "net_to_merchant": 0,
        "fees": 0
      }
    ]
  }
}

Path Parameters

storeId
integer
required

The store ID to fetch dashboard data for. Must be owned by the authenticated user.

Example:

2366

Query Parameters

currency
string
required

3-letter currency code (e.g. COP, USD).

Pattern: ^[A-Z]{3}$
Example:

"COP"

date_from
string<date>
required

Start of the date range (YYYY-MM-DD, COT timezone, inclusive).

Example:

"2026-04-01"

date_to
string<date>
required

End of the date range (YYYY-MM-DD, COT timezone, inclusive end-of-day).

Example:

"2026-04-30"

Response

Dashboard stats

result
object