The badge can be displayed on your website. Once published, the badge automatically updates once a day. It includes a link to a “Learn More” page, where stakeholders can explore the structure and concepts behind Bitsight Security Ratings. You can also share the Learn More page directly by sharing this URL: https://service.bitsighttech.com/trust/landing/generic.html
See our implementation of the badge: http://bitsight.com/security
Requirements
Instructions
- Direct where to display the badge by entering the domain in this field. If the badge does not appear, try adding the full URL to this field and try again. The embed code only works on web pages with domains designated by this field.
Please note: The embed code makes a request to the trust.bitsighttech.com host in order to update your rating. If your website has a Content Security Policy (CSP), you will need to allow requests from trust.bitsighttech.com as an approved domain. Refer to Mozilla MDN Web Docs for an example of how to add a trusted domain to your CSP. - Once your Bitsight Badge is configured, select Save changes to finalize your badge configuration.
-
Embed Code Example
<div id="bitsight-widget"> </div> <script> const div=document.getElementById("bitsight-widget"); const req=new XMLHttpRequest(); req.open("GET","https://trust.bitsighttech.com/rating/(company guid)"); req.onload=function(e){if(req.readyState===4){if(req.status===200){const {response}=req; div.innerHTML=response; } } }; req.send(); </script>
Badge Specifications
- The size and layout of your badge are determined by your choices on the Badges tab.
- The first line of the embed code (
<div id="bitsight-widget"> </div>) establishes a container and sets the location of the badge. Place this line of code wherever you want the badge to appear on the webpage. No additional formatting is needed for the badge to work, but you may need to adjust the dimensions of your page. - The code between
<script>and</script>is javascript and not HTML. - The remaining lines of code (
until req.send()) are used to create a request object, give it instructions on how to handle the response, check the response to see if it is good, and finally send that request totrust.bitsighttech.com.
Layout Options
Each layout option has a unique size, shape, and included content. Select any of the following options to see a preview of the badge:
Badge
| Size | Description |
|---|---|
|
Large 300 x 300 pixels |
Includes:
Use the link below the company name to open the Learn More page. |
|
Medium 200 x 200 pixels |
Includes:
Select any part of the badge to open the Learn More page. |
|
Small 100 x 100 pixels |
Includes:
Select any part of the badge to open the Learn More page. |
Narrow
| Information | Description |
|---|---|
|
Default 476 x 348 pixels |
Includes:
Use the Learn More link to open the Learn More page. |
|
Detailed 732 x 348 pixels |
This detailed badge highlights your performance. It includes:
Use the Learn More link to open the Learn More page. |
|
Minimal 312 x 348 pixels |
This minimal badge includes:
Select any part of the badge to open the Learn More page. |
Wide
| Information | Description |
|---|---|
|
Default 292 x 600 pixels |
Includes:
Use the Learn More link to open the Learn More page. |
|
Detailed 416 x 600 pixels |
This detailed badge highlights your performance. It includes:
Use the Learn More link to open the Learn More page. |
|
Minimal 292 x 600 pixels |
This minimal badge includes:
Select any part of the badge to open the Learn More page. |
- December 18, 2025: Updated language per December 3, 2025 release.
- October 29, 2024: Bitsight Badge navigation instructions moved to the Organization section in the menu.
- November 23, 2022: Detailed layouts for the narrow (732 x 348 pixels) & wide (416 x 600 pixels) options.
- August 24, 2022: Added information on the view-only page for non-Admins.
Comments
Please sign in to leave a comment.