Skip to main content
GET
/
cards
/
insights
Get Card Spending Insights
curl --request GET \
  --url https://api.meow.com/v1/cards/insights \
  --header 'x-api-key: <api-key>'
{
  "total_spend": "<string>",
  "total_cashback": "<string>",
  "top_expenses": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "amount": "<string>",
      "detail": "<string>",
      "cardholder": "<string>",
      "posted_time": "2023-11-07T05:31:56Z",
      "logo_url": "<string>",
      "website": "<string>",
      "card_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "network_transaction_id": "<string>"
    }
  ],
  "top_merchants": [
    {
      "total": "<string>",
      "count": 123,
      "merchant": "<string>",
      "logo_url": "<string>",
      "website": "<string>"
    }
  ],
  "weekly_cardholder_spend": [
    {
      "week": "2023-12-25",
      "data": [
        {
          "total": "<string>",
          "value": "<string>"
        }
      ]
    }
  ],
  "weekly_merchant_spend": [
    {
      "week": "2023-12-25",
      "data": [
        {
          "total": "<string>",
          "value": "<string>"
        }
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developer.meow.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Your Meow API key for authentication

Headers

x-entity-id
string<uuid>

Optional entity ID for scoped access to entity-specific data

Query Parameters

from_date
string<date-time> | null
to_date
string<date-time> | null
limit_top_expenses
integer
default:5
Required range: 1 <= x <= 25
limit_top_merchants
integer
default:5
Required range: 1 <= x <= 25

Response

Successful Response

total_spend
string
required
Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
total_cashback
string
required
Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
top_expenses
TopExpense · object[]
required
top_merchants
MerchantSpendInsight · object[]
required
weekly_cardholder_spend
WeeklyTimeSeries · object[]
required
weekly_merchant_spend
WeeklyTimeSeries · object[]
required