Before you can read account and transaction data, you first need to set up a connection. The public API flow is:Documentation Index
Fetch the complete documentation index at: https://docs.waycore.com/llms.txt
Use this file to discover all available pages before exploring further.
- Identify the owning entity
- Choose a bank target with either an institution catalog record or a portal URL
- Create or return a connection
- Provide the delegated-user credentials
- Mark setup complete
- Wait for the connection to become
kind="ready" - Read data or trigger a sync
1. Find the owning entity
Start by listing entities and choosing either the default org entity or a customer entity you created earlier.2. Choose the bank target
If the bank is already in the public institution catalog, search by name, identifier, portal URL, or portal domain, then capture theinstitutionId you want to connect.
A bank does not need to appear in /v1/institutions before you can start onboarding it. If it is not listed, use its HTTPS portalUrl when creating the connection.
3. Create or return a connection
Create the connection using the chosenentityId plus either institutionId or portalUrl. The response returns a ConnectionResource, which may be a new kind="setup" connection or an existing connection returned directly.
If the response is kind="setup", you can use the returned setup.instructions immediately. The current email, username, phone number, and other setup details are included on that first create response.
4. Provide credentials
Once the delegated user exists in the bank, submit the current working credentials. Includepassword when that bank requires one.
5. Mark setup complete
After the bank-side delegated-user setup is finished, notify Waycore so activation can continue. From there, Waycore completes activation and starts the initial historical backfill automatically.6. Wait for kind="ready"
If the create call returned kind="setup", poll the connection until it transitions to kind="ready". Once the connection is ready, the normal steady-state status is active.
7. Read data or queue a sync
Once the connection is ready, you can read accounts and transactions immediately, or trigger a sync if you need fresh data right away. Manual sync triggers are subject to the connection cooldown described in Connections.GET /v1/transactions for backfills and GET /v1/transactions/sync plus webhooks to keep your mirror current.