For the complete documentation index, see llms.txt. This page is also available as Markdown.

πŸ–ΌοΈRedirect and iframe integration

Hosted redirect

Use a normal link or application navigation to open the generated widget URL.

<a
  href="https://widget.coindisco.com/?publicKey=pk_test_YOUR_PUBLIC_KEY"
  target="_blank"
  rel="noopener noreferrer"
>
  Buy or sell crypto
</a>

Embedded iframe

<iframe
  src="https://widget.coindisco.com/?publicKey=pk_test_YOUR_PUBLIC_KEY"
  title="Buy or sell crypto"
  width="450"
  height="700"
  allow="clipboard-write"
  style="border: 0; max-width: 100%;"
></iframe>

Use a responsive container in production:

Security considerations

  • Use the generated public widget key in browser code; never expose a private credential.

  • Configure allowed origins in the dashboard.

  • Use noopener noreferrer for new tabs.

  • Do not append personal data to the URL unless the parameter is documented for that purpose.

  • Validate wallet addresses in the partner application when the partner supplies them.

Last updated