Overview

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>"