Estonian Creditors' Association - Trust Mark

Companies with the trust mark are reliable and under real-time Union control
Companies that can be trusted

To get the badge, join the Storybook package: Brand Management↗ and if you qualify, you will also receive EVUL Membership↗ for your company, which comes with Security Certificate and Trust Mark↗.

Choose a company

To install the trustmark, first search for your company. If no samples appear after selecting the company, your company does not qualify (see the conditions above). When the labels appear, click the copy code button next to the label you like. Everything you need will be copied to the clipboard. Paste the copied content into the HTML source code of your website where you want to add the label. Don't forget to save the changes. If all the steps have been performed correctly, the trustmark will appear.

* Unauthorized copying, addition or other use of the trust mark is prohibited and may be considered an infringement of a protected trademark!

* Change your website's Content security policy to allow scorestorybook content on your page.


Advanced setup

Below you will find a tutorial on how to set up the connector in more detail.

Create a new HTML element to place the trust token inside.

<div id="ssb-evul-stamp"></div>

Add JavaScript to the page. There are two ways to add the script:

  1. Add the following code snippet inside the HTML <script> tag
  2. Add the following code snippet to a separate .js file and include it on your page

NB: After the first run, the code snippet will remove the script in which it is placed.

(({ feature, token, element, options }) => {
    if (!document.getElementById('ssb.pistik.dns-prefetch')) {
        const link = document.createElement('link');
        link.id = 'ssb.pistik.dns-prefetch';
        link.href = 'https://pistik.ssb.ee';
        link.rel = 'dns-prefetch';

        document.head.appendChild(link);
    }

    if (!document.getElementById('ssb.pistik.loader')) {
        const script = document.createElement('script');
        script.id = 'ssb.pistik.loader';
        script.type = 'text/javascript';
        script.src = 'https://pistik.ssb.ee/app/public/js/main.js';

        document.head.appendChild(script);
    }
    
    document.addEventListener('ssb.pistik.loader.ready', (event) => {
        document.dispatchEvent(new CustomEvent('ssb.pistik.loader.load', { 
            detail: { feature, token, element, options }
        }));
    }, { once: true });

    document.currentScript.remove();
})({
    feature: 'evul-stamp',
    element: document.getElementById('ssb-evul-stamp'),
    options: {
        // Add options here as <key: value> pairs
        reg_code: 'FIRMA_REGISTRIKOOD',
    },
});

The code snippet has options that you can change according to the rules.

({
    feature: 'evul-stamp',
    element: document.getElementById('ssb-evul-stamp'),
    options: {
        reg_code: 'FIRMA_REGISTRIKOOD',
    },
});
feature
string mandatory The plug-in you want to run. In this case, you don't need to change it.
element
HTMLElement mandatory The element into which the plug is placed.
options
object mandatory Plugin options as key:value pairs.
reg_code
string mandatory Company registration code.
colour
string The color of the stamp in hexadecimal. Default value #000000.
lang
string Language to display in (et, en). Default value documentElement.lang.
size
integer The size of the stamp in pixels. Default value is 100.

Media page plug-in

The Storybook media page plugin is a software module that allows you to display your company's latest news in real time on your website - so that when you create a new news item, it is immediately visible on your website.

The Storybook Media Page Plugin is a software module that allows you to display the latest company news on your website. To get the Media Page Plugin, join the Storybook package: Brand Management↗.

Choose a company:

To install the Media Page plugin, first search for your company. If the sample does not appear after selecting the company, your company does not qualify (see conditions above). When the stories appear, click the copy code button next to the sample. Everything you need will be copied to the clipboard. Paste the copied content into the HTML source code of your website where you want to add the stories. Don't forget to save your changes. If all the steps have been done correctly, your latest stories will appear.


Advanced setup

Below you will find a tutorial on how to set up the connector in more detail.

Create a new HTML element to place the articles in.

<div id="ssb-stories"></div>

Add JavaScript to the page. There are two ways to add the script:

  1. Add the following code snippet inside the HTML <script> tag
  2. Add the following code snippet to a separate .js file and include it on your page

NB: After the first run, the code snippet will remove the script in which it is placed.

(({ feature, token, element, options }) => {
    if (!document.getElementById('ssb.pistik.dns-prefetch')) {
        const link = document.createElement('link');
        link.id = 'ssb.pistik.dns-prefetch';
        link.href = 'https://pistik.ssb.ee';
        link.rel = 'dns-prefetch';

        document.head.appendChild(link);
    }

    if (!document.getElementById('ssb.pistik.loader')) {
        const script = document.createElement('script');
        script.id = 'ssb.pistik.loader';
        script.type = 'text/javascript';
        script.src = 'https://pistik.ssb.ee/app/public/js/main.js';

        document.head.appendChild(script);
    }
    
    document.addEventListener('ssb.pistik.loader.ready', (event) => {
        document.dispatchEvent(new CustomEvent('ssb.pistik.loader.load', { 
            detail: { feature, token, element, options }
        }));
    }, { once: true });

    document.currentScript.remove();
})({
    feature: 'stories',
    element: document.getElementById('ssb-stories'),
    options: {
        // Add options here as <key: value> pairs
        reg_code: 'FIRMA_REGISTRIKOOD',
    },
});

The code snippet has options that you can change according to the rules.

({
    feature: 'stories',
    element: document.getElementById('ssb-stories'),
    options: {
        reg_code: 'FIRMA_REGISTRIKOOD',
    },
});
feature
string mandatory The plug-in you want to run. In this case, you don't need to change it.
element
HTMLElement mandatory The element into which the plug is placed.
options
object mandatory Plugin options as key:value pairs.
reg_code
string mandatory Company registration code.
from
integer Number of stories to display (≥ 0). Default value 0.
size
integer Number of stories to display (1-10). Default value 3.
lang
string Language to display in (et, en). Default value documentElement.lang.

Credit score plugin

The credit score plugin gives you the ability to display your company's credit rating on your website or any web application.

A positive trust rating gives you a big competitive advantage, as 87% of consumers will not make a purchase decision online without being convinced of the trustworthiness of a company. To get a credit score plug-in, join the Storybook package: Brand Management↗.

Choose a company

To install a credit score, first search for your company. If the sample does not appear after selecting the company, your company does not qualify (see conditions above). When the tags appear, click the copy code button next to the sample. Everything you need will be copied to the clipboard. Paste the copied content into the HTML source code of your website where you want to add the score. Don't forget to save the changes. If all the steps have been done correctly, the credit score will appear.

* Unauthorized copying, adding or otherwise using the credit score is prohibited and considered a violation of a protected trademark!

* Change your website's Content security policy to allow scorestorybook content on your page.


Advanced setup

Below you will find a tutorial on how to set up the connector in more detail.

Create a new HTML element to place the credit score in.

<div id="ssb-credit-score"></div>

Add JavaScript to the page. There are two ways to add the script:

  1. Add the following code snippet inside the HTML <script> tag
  2. Add the following code snippet to a separate .js file and include it on your page

NB: After the first run, the code snippet will remove the script in which it is placed.

(({ feature, token, element, options }) => {
    if (!document.getElementById('ssb.pistik.dns-prefetch')) {
        const link = document.createElement('link');
        link.id = 'ssb.pistik.dns-prefetch';
        link.href = 'https://pistik.ssb.ee';
        link.rel = 'dns-prefetch';

        document.head.appendChild(link);
    }

    if (!document.getElementById('ssb.pistik.loader')) {
        const script = document.createElement('script');
        script.id = 'ssb.pistik.loader';
        script.type = 'text/javascript';
        script.src = 'https://pistik.ssb.ee/app/public/js/main.js';

        document.head.appendChild(script);
    }
    
    document.addEventListener('ssb.pistik.loader.ready', (event) => {
        document.dispatchEvent(new CustomEvent('ssb.pistik.loader.load', { 
            detail: { feature, token, element, options }
        }));
    }, { once: true });

    document.currentScript.remove();
})({
    feature: 'credit-score',
    element: document.getElementById('ssb-credit-score'),
    options: {
        // Add options here as <key: value> pairs
        reg_code: 'FIRMA_REGISTRIKOOD',
    },
});

The code snippet has options that you can change according to the rules.

({
    feature: 'credit-score',
    element: document.getElementById('ssb-credit-score'),
    options: {
        reg_code: 'FIRMA_REGISTRIKOOD',
    },
});
feature
string mandatory The plug-in you want to run. In this case, you don't need to change it.
element
HTMLElement mandatory The element into which the plug is placed.
options
object mandatory Plugin options as key:value pairs.
reg_code
string mandatory Company registration code.
lang
string Language to display in (et, en). Default value documentElement.lang.

We will open soon

Search image from image bank

Dropdown

All pictures

From this image bank, you can Access millions of images (for free) and also upload brand images to create your profile , which only You can use at any time.

Dropdown

Sequence
Colours

6.9M

free photo

391k

photographer

App Ad

Scorestorybook Chrome extension

The Storybook extension tells you which company's website you are currently on and how reliable that company is today. download extension

See the background of the caller! Storybook App brings you direct contacts for 400,000 Estonian companies and individuals (managers, officials). The data is enriched with solvency and financial information.