> For the complete documentation index, see [llms.txt](https://integuru.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://integuru.gitbook.io/docs/detailed-references/invoke-the-taiki-app.md).

# Invoke the Taiki App

### What is the Taiki App?

The Taiki App offers a seamless tax form retrieval experience for both Android and iOS users. As an instant app on Android and an app clip on iOS, Taiki eliminates the need for traditional downloads. Users can access Taiki directly from a mobile or web application, allowing for immediate use without installation.

Once invoked, Taiki streamlines the process of gathering tax documents. Users simply log into their preferred platforms, and Taiki automatically collects all relevant tax forms from these sources. The app then efficiently transmits this compiled information to your specified web hook, ensuring secure and convenient delivery of tax data.

<div><figure><img src="/files/gMjlhNcx7LBgx2KKi5H2" alt=""><figcaption></figcaption></figure> <figure><img src="/files/F5RBKh5eTFf8YVUZRmdH" alt=""><figcaption></figcaption></figure> <figure><img src="/files/1Mb3PTnnavV0sCgfRuTY" alt=""><figcaption></figcaption></figure></div>

## The Taiki modal can be invoked in two ways.&#x20;

1. Invoking from [#invoking-the-taiki-app-from-webapp](#invoking-the-taiki-app-from-webapp "mention")
2. Invoking from iOS and Android.&#x20;

All methods of invocation requires a JWT token (string) and a year (string). JWTToken is the token generated here ([Initialize JWT Token](/docs/detailed-references/initialize-jwt-token.md)) and year is the tax form year you want your users to extract. (To file the tax report for 2023, year should be 2023)

## **Invoking the Taiki app from Webapp**

To support the Taiki App with your webapp, you can use our JS CDN library to generate a QR code that when scanned by the user, will open the Taiki app.

#### First import it in the html entry point of your frontend.

```html
<script src="https://Taiki JS CDN Link"></script>
```

#### Then invoke the QR code like so.&#x20;

```javascript
window.generateQRCode(JWTToken, year);
```

## **Invoking the Taiki app from IOS**

Below is an example of an IOS application that triggers the Taiki App Clip from your app.

```swift
let baseURL = "Taiki App Clip URL"
let queryParameters = [
    "jwt": "JWT token generated by /api/token",
    "year": "year"
]

let appClipURL = URL(string: baseURL)?.appendingQueryParameters(queryParameters)

Link("Connect with Taiki", destination: appClipURL ?? URL(string: baseURL)!)
    .foregroundStyle(Color.white)
```

## **Invoking the Taiki app from Android**

Coming soon!


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://integuru.gitbook.io/docs/detailed-references/invoke-the-taiki-app.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
