Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Venmo support #7

Open
JohnStarich opened this issue Jan 2, 2020 · 0 comments
Open

Venmo support #7

JohnStarich opened this issue Jan 2, 2020 · 0 comments

Comments

@JohnStarich
Copy link
Owner

Venmo supports a relatively simple JSON API for downloading transactions that include unique IDs. Ideally, they'd support OFX/QFX but this should be sufficient for unique ID imports.

Example:

➜ ~ curl -H 'Accept: application/json' -H 'Cookie: ...' 'https://api.venmo.com/v1/transaction-history?start_date=2019-12-01&end_date=2019-12-31'
{
  "data": {
    "start_balance": 0,
    "year_to_date_fees": 0,
    "end_balance": 0,
    "statement_period_fees": 0,
    "transactions": [
      {
        "refund": null,
        "capture": null,
        "direct_deposit": null,
        "disbursement": null,
        "internal_balance_transfer": null,
        "transfer": null,
        "datetime_created": "2019-12-02T23:55:40",
        "payment": {
          "status": "settled",
          "id": "2890403437596377250",
          "date_authorized": null,
          "date_completed": "2019-12-02T23:55:40",
          ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant