# Polyflow Pricing Plans

[Polyflow](http://polyflow.dev) is integrated with the [PolyflowSwapper smart contract,](https://etherscan.io/address/0x5c824552d3c6dcfab7a83e95dda313ab8c74fde3#code) which uses underlying AAPX tokens to unlock paid packages.

There are three packages available for the Polyflow tool, they are outlined at the [pricing page](https://polyflow.dev/pricing).

To start using Polyflow inside your project, [contact us](mailto:hello@polyflow.dev) for onboarding.

### Buying Subscription

Call the `paySubscription(accountId)` function on the PolyflowSwapper contract and provide your account identifier as a parameter, the one you used for creating a project on Polyflow.&#x20;

The amount of ETH you need to send to this function is determined by the active Polyflow pricing plan. PolyflowSwapper contract will convert ETH to the dollar amount, and Polyflow system will detect this event while keeping the account active.\
\
To renew subscription plan, execute payments regularly and your account will remain active.

{% hint style="info" %}
We notify users via e-mail if the payment hasn't been detected with a 2-week notice.
{% endhint %}

#### Account Identifier

Your account is the masked e-mail address you used when creating the account on the Polyflow application. We use masked format to protect user's privacy, and to not store the sensitive user information on-chain.

`accountId = keccak256(user_email)`

To calculate your account ID, apply the keccak256 function to your email address. For an example, you can use [this online tool](https://emn178.github.io/online-tools/keccak_256.html) to get the identifier for your e-mail address.

<figure><img src="/files/EsKLpExoFtyX3tdTqrYq" alt=""><figcaption><p>Calculating identifier for user@email.com</p></figcaption></figure>

In an example above, we calculated the identifier for email **<user@email.com>** and the result was:\
\
`0xe870815e738261a48cd94eb488b78935868aa2955cbf298deb2df27b898b870b`


---

# Agent Instructions: 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://docs.dev3.sh/welcome-to-dev3/pricing/polyflow-pricing-plans.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.
