Skip to main content
GET
/
v1
/
users
/
me
Python (SDK)
from finance_dev import FinanceDev, models
import os


with FinanceDev(
    security=models.Security(
        client_id=os.getenv("FINANCEDEV_CLIENT_ID", ""),
        client_secret=os.getenv("FINANCEDEV_CLIENT_SECRET", ""),
    ),
) as fd_client:

    res = fd_client.users.get_me()

    # Handle response
    print(res)
{
  "id": 123,
  "email": "<string>",
  "country": "<string>",
  "plaid_status": "<string>",
  "account_application": {
    "id": 123,
    "status": "CREATED",
    "can_submit": true,
    "missing_fields": [
      "<string>"
    ],
    "plaid_link_token": "<string>"
  },
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://finance.dev/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

User information retrieved successfully

id
integer<int64>
email
string
country
string
plaid_status
string
account_application
object
created_at
string<date-time>
updated_at
string<date-time>