KosmoKrator

finance

Venmo CLI for AI Agents

Use the Venmo CLI from KosmoKrator to call Venmo tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

7 functions 6 read 1 write Manual OAuth token auth

Venmo CLI Setup

Venmo can be configured headlessly with `kosmokrator integrations:configure venmo`.

# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash

# Configure and verify this integration.
kosmokrator integrations:configure venmo --set access_token="$VENMO_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmokrator integrations:doctor venmo --json
kosmokrator integrations:status --json

Credentials

Authentication type: Manual OAuth token oauth2_manual_token. Configure credentials once, then use the same stored profile from scripts, coding CLIs, Lua code mode, and the MCP gateway.

KeyEnv varTypeRequiredLabel
access_token VENMO_ACCESS_TOKEN Secret secret yes Access Token

Call Venmo Headlessly

Use the generic call form when another coding CLI or script needs a stable universal interface.

kosmo integrations:call venmo.venmo_list_payments '{
  "limit": 1,
  "offset": 1,
  "after": "example_after",
  "before": "example_before"
}' --json

Use the provider shortcut form for shorter human-facing commands.

kosmo integrations:venmo venmo_list_payments '{
  "limit": 1,
  "offset": 1,
  "after": "example_after",
  "before": "example_before"
}' --json

Agent Discovery Commands

These commands return structured output for coding agents that need to inspect capabilities before choosing a function.

kosmo integrations:docs venmo --json
kosmo integrations:docs venmo.venmo_list_payments --json
kosmo integrations:schema venmo.venmo_list_payments --json
kosmo integrations:search "Venmo" --json
kosmo integrations:list --json

All CLI Functions

Every function below can be called headlessly. The generic form is stable across all integrations; the provider shortcut is shorter but specific to Venmo.

venmo.venmo_list_payments

Read read

List Venmo payments with optional filtering. Supports pagination with limit and offset parameters.

Parameters
limit, offset, after, before

Generic CLI call

kosmo integrations:call venmo.venmo_list_payments '{"limit":1,"offset":1,"after":"example_after","before":"example_before"}' --json

Provider shortcut

kosmo integrations:venmo venmo_list_payments '{"limit":1,"offset":1,"after":"example_after","before":"example_before"}' --json

venmo.venmo_get_payment

Read read

Retrieve a Venmo payment by ID. Returns full payment details including amount, status, note, sender, and recipient.

Parameters
id

Generic CLI call

kosmo integrations:call venmo.venmo_get_payment '{"id":"example_id"}' --json

Provider shortcut

kosmo integrations:venmo venmo_get_payment '{"id":"example_id"}' --json

venmo.venmo_create_payment

Write write

Create a Venmo payment. Specify amount, recipient user ID, an optional note, and audience visibility.

Parameters
amount, user_id, note, audience

Generic CLI call

kosmo integrations:call venmo.venmo_create_payment '{"amount":1,"user_id":"example_user_id","note":"example_note","audience":"example_audience"}' --json

Provider shortcut

kosmo integrations:venmo venmo_create_payment '{"amount":1,"user_id":"example_user_id","note":"example_note","audience":"example_audience"}' --json

venmo.venmo_list_users

Read read

List Venmo users with optional filtering. Supports search by username, email, or phone and pagination.

Parameters
query, limit, offset

Generic CLI call

kosmo integrations:call venmo.venmo_list_users '{"query":"example_query","limit":1,"offset":1}' --json

Provider shortcut

kosmo integrations:venmo venmo_list_users '{"query":"example_query","limit":1,"offset":1}' --json

venmo.venmo_get_user

Read read

Retrieve a Venmo user by ID. Returns user profile details including username, display name, and profile picture.

Parameters
id

Generic CLI call

kosmo integrations:call venmo.venmo_get_user '{"id":"example_id"}' --json

Provider shortcut

kosmo integrations:venmo venmo_get_user '{"id":"example_id"}' --json

venmo.venmo_list_transactions

Read read

List Venmo transactions with optional filtering. Supports filtering by date range, action type, and pagination.

Parameters
limit, offset, after, before, action

Generic CLI call

kosmo integrations:call venmo.venmo_list_transactions '{"limit":1,"offset":1,"after":"example_after","before":"example_before","action":"example_action"}' --json

Provider shortcut

kosmo integrations:venmo venmo_list_transactions '{"limit":1,"offset":1,"after":"example_after","before":"example_before","action":"example_action"}' --json

venmo.venmo_get_current_user

Read read

Get the currently authenticated Venmo user. Returns the authenticated user's full profile including balance and account details.

Parameters
none

Generic CLI call

kosmo integrations:call venmo.venmo_get_current_user '{}' --json

Provider shortcut

kosmo integrations:venmo venmo_get_current_user '{}' --json

Function Schemas

Use these parameter tables when building CLI payloads without calling integrations:schema first.

venmo.venmo_list_payments

List Venmo payments with optional filtering. Supports pagination with limit and offset parameters.

Operation
Read read
Schema command
kosmo integrations:schema venmo.venmo_list_payments --json
ParameterTypeRequiredDescription
limit integer no Number of payments to return (default 20).
offset integer no Offset for pagination.
after string no Only return payments after this timestamp (ISO 8601).
before string no Only return payments before this timestamp (ISO 8601).

venmo.venmo_get_payment

Retrieve a Venmo payment by ID. Returns full payment details including amount, status, note, sender, and recipient.

Operation
Read read
Schema command
kosmo integrations:schema venmo.venmo_get_payment --json
ParameterTypeRequiredDescription
id string yes Venmo payment ID.

venmo.venmo_create_payment

Create a Venmo payment. Specify amount, recipient user ID, an optional note, and audience visibility.

Operation
Write write
Schema command
kosmo integrations:schema venmo.venmo_create_payment --json
ParameterTypeRequiredDescription
amount number yes Payment amount in dollars (e.g., 25.00).
user_id string yes Recipient Venmo user ID.
note string yes Payment note or description.
audience string no Visibility: "private", "friends", or "public". Default: "friends".

venmo.venmo_list_users

List Venmo users with optional filtering. Supports search by username, email, or phone and pagination.

Operation
Read read
Schema command
kosmo integrations:schema venmo.venmo_list_users --json
ParameterTypeRequiredDescription
query string no Search query — username, email, or phone number.
limit integer no Number of users to return (default 20).
offset integer no Offset for pagination.

venmo.venmo_get_user

Retrieve a Venmo user by ID. Returns user profile details including username, display name, and profile picture.

Operation
Read read
Schema command
kosmo integrations:schema venmo.venmo_get_user --json
ParameterTypeRequiredDescription
id string yes Venmo user ID.

venmo.venmo_list_transactions

List Venmo transactions with optional filtering. Supports filtering by date range, action type, and pagination.

Operation
Read read
Schema command
kosmo integrations:schema venmo.venmo_list_transactions --json
ParameterTypeRequiredDescription
limit integer no Number of transactions to return (default 20).
offset integer no Offset for pagination.
after string no Only return transactions after this timestamp (ISO 8601).
before string no Only return transactions before this timestamp (ISO 8601).
action string no Filter by action type: "pay" or "charge".

venmo.venmo_get_current_user

Get the currently authenticated Venmo user. Returns the authenticated user's full profile including balance and account details.

Operation
Read read
Schema command
kosmo integrations:schema venmo.venmo_get_current_user --json
ParameterTypeRequiredDescription
No parameters.

Permissions

Headless calls still follow the integration read/write permission policy. Configure read/write defaults with integrations:configure. Add --force only for trusted automation that should bypass that policy.