Estonian Creditors' Association - Trust label

Companies with a trust label are trustworthy and under the Union's control in real time
Companies that can be trusted

To get a stamp, join the Storybook package: Brand Management↗ and if you qualify, you will also receive EVUL Membership↗ accompanied by Security certificate and Trust Stamp↗.

Choose company

To install a trust stamp, first search for your company. If no samples appear after selecting a company, your company does not qualify (see conditions above). When the tags appeared, press the copy code button next to the tag you like. Everything necessary is copied to the clipboard. Paste the HTML source code of your web page of the copied content where you want to add the tag. Don't forget to save the changes. If all actions have been performed correctly, the trust mark will appear.

* Unauthorized copying, addition or other use of the trust mark is prohibited and treated as a violation of a protected trademark!

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


Advanced setup

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

Create a new HTML element, into which the trust stamp is placed.

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

Add the JavaScript. There are two options to add the script:

  1. To add the following code snippet inline into an HTML <script> tag
  2. To add following code snippet into a separate .js file and include it on your page

NB! After the first execution, the script will remove the script it is placed in.

(({ 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',
    },
});

In the script there are options, which can be changed following the rules.

({
    feature: 'evul-stamp',
    element: document.getElementById('ssb-evul-stamp'),
    options: {
        reg_code: 'FIRMA_REGISTRIKOOD',
    },
});
feature
string required Widget, which you wish to run. Don't have to change this right now.
element
HTMLElement required The element, into which the widget is placed.
options
object required Widget options as key:value pairs.
reg_code
string required Company registration code
colour
string The stamp's colour in hexadecimal. Default #000000.
lang
string Language in which content is displayed (et, en). Default documentElement.lang.

Media page plug-in

The Storybook Media Page Plug-in is a software module that allows you to display real-time news and images on your website - so that when you create new article, it's instantly 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 a media page plugin, first find your business. If a sample does not appear after selecting a company, your company does not qualify (see conditions above). When the stories appeared, press the copy code button next to the sample. Everything necessary is copied to the clipboard. Paste the copied content to the HTML source code of your web page where you want to display the stories. Don't forget to save the changes. If all the steps are done correctly, your latest stories will be visible.


Advanced setup

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

Create a new HTML element, into which the stories will be placed.

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

Add the JavaScript. There are two options to add the script:

  1. To add the following code snippet inline into an HTML <script> tag
  2. To add following code snippet into a separate .js file and include it on your page

NB! After the first execution, the script will remove the script it is placed in.

(({ 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',
    },
});

In the script there are options, which can be changed following the rules.

({
    feature: 'stories',
    element: document.getElementById('ssb-stories'),
    options: {
        reg_code: 'FIRMA_REGISTRIKOOD',
    },
});
feature
string required Widget, which you wish to run. Don't have to change this right now.
element
HTMLElement required The element, into which the widget is placed.
options
object required Widget options as key:value pairs.
reg_code
string required Company registration code
from
integer The start position (offset) for displaying the stories (≥ 0). Default 0.
size
integer Number of displayed stories (1-10). Default 3.
lang
string Language in which content is displayed (et, en). Default documentElement.lang.

Credit score plugin

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

A positive trustworthiness rating gives a great competitive advantage, because 87% of consumers do not make a purchase decision online without being convinced of the trustworthiness of the company. To get a credit score widget, join the Storybook plan: Brand Management↗.

Choose company

To install a credit score, first find your company. If a sample does not appear after selecting a company, your company does not qualify (see conditions above). When the tags appeared, press the copy code button next to the sample. Everything necessary is copied to the clipboard. Paste the copied content HTML source code of your web page where you want to add the score. Don't forget to save the changes. If all the steps are done correctly, the credit score will be visible.

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

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


Advanced setup

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

Create a new HTML element, into which the credit score is added.

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

Add the JavaScript. There are two options to add the script:

  1. To add the following code snippet inline into an HTML <script> tag
  2. To add following code snippet into a separate .js file and include it on your page

NB! After the first execution, the script will remove the script it is placed in.

(({ 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',
    },
});

In the script there are options, which can be changed following the rules.

({
    feature: 'credit-score',
    element: document.getElementById('ssb-credit-score'),
    options: {
        reg_code: 'FIRMA_REGISTRIKOOD',
    },
});
feature
string required Widget, which you wish to run. Don't have to change this right now.
element
HTMLElement required The element, into which the widget is placed.
options
object required Widget options as key:value pairs.
reg_code
string required Company registration code
lang
string Language in which content is displayed (et, en). Default documentElement.lang.

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.0M

free photo

365k

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 as of 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.