For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Talk to usGet started
OverviewAPI Reference
OverviewAPI Reference
    • Introduction
    • Quick Start
  • Integrations
    • Overview
    • Custom Automations
    • Using Our Actions
    • Using Our Webhooks
Logo
Talk to usGet started
On this page
  • Making requests to integrations
Integrations

Overview

Was this page helpful?
Previous

Custom Automations

Next
Built with

Integrations with Keet are designed to be super simple for you to link a single end-user to many integrations. Every end-user can have multiple Keet integrations and still has the same accountToken.

You should store your accountToken in your database and use it to link your end-users to their Keet integrations.

Making requests to integrations

Any time you need to make a request to an integration associated with a user you will need to pass the accountToken in the header of your request by setting X-Account-Token.

Example

GET
/v1/venmo/transactions
1curl https://api.trykeet.com/v1/venmo/transactions \
2 -H "X-Account-Token: X-Account-Token" \
3 -H "Authorization: Bearer <token>"
Try it