Home: Difference between revisions

From BigID Developer Portal
No edit summary
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 159: Line 159:
         flex-direction: row;
         flex-direction: row;
         display: flex;
         display: flex;
         align-items: center;
         align-items: stretch;
         padding-top: 2vh;
         padding-top: 2vh;
     }
     }
Line 182: Line 182:
         background-color: var(--card-bg);
         background-color: var(--card-bg);
         padding: 2px;
         padding: 2px;
        text-decoration: none;
     }
     }
      
      
Line 215: Line 216:
         font-weight: 600;
         font-weight: 600;
         color: var(--card-text-primary);
         color: var(--card-text-primary);
    }
    .card-link-wrapper {
        display: block;
        height: 100%;
        text-decoration: none;
     }
     }
      
      
Line 322: Line 317:
         padding: 12px 24px;
         padding: 12px 24px;
         border-radius: 8px;
         border-radius: 8px;
         background: #48bb78;
         background: #2b6cb0;
        box-shadow: 0 4px 14px 0 rgba(43, 108, 176, 0.39);
         font-weight: 600;
         font-weight: 600;
         color: #fff;
         color: #fff;
Line 334: Line 330:
      
      
     #classify .try button:hover {
     #classify .try button:hover {
         background: #38a169;
         transform: translateY(-2px);
         box-shadow: 0 0 15px rgba(72, 187, 120, 0.6);
         background: #2c5282;
     }
     }
      
      
     #classify .try button.processing {
     #classify .try button.processing {
         background: #38a169;
         background: #2c5282;
         cursor: not-allowed;
         cursor: not-allowed;
     }
     }
Line 371: Line 367:
     }
     }


     .skin-citizen-dark main .card a:link {
     .skin-citizen-dark main .card .card-footer {
         background-color: rgba(255, 255, 255, .1);
         background-color: rgba(255, 255, 255, .1);
     }
     }
Line 405: Line 401:


     @media only screen and (max-width: 768px) {
     @media only screen and (max-width: 768px) {
         #mega, .row {
         #mega, #classify.row {
             text-align: center;
             text-align: center;
             flex-direction: column;
             flex-direction: column;
        }
        #getStarted .row {
            flex-direction: column;
            align-items: center;
         }
         }
          
          
Line 423: Line 424:
         }
         }


         main .row {
         main .card {
             flex-direction: column;
             margin: 15px 0;
            width: 95%;
            max-width: 450px;
         }
         }


         main .card {
         main .card>.card-inner-content>.content {
             margin: 15px 0;
             padding: 24px;
             width: 100%;
             min-height: auto;
         }
         }
     }
     }
Line 457: Line 460:
     <section id="getStarted">
     <section id="getStarted">
         <div class="row">
         <div class="row">
             <div class="card purple animate-on-scroll">
             <a href="Apps" class="card purple animate-on-scroll">
                <a href="Apps" class="card-link-wrapper">
                <div class="card-inner-content">
                    <div class="card-inner-content">
                    <div class="content">
                        <div class="content">
                        <h1>Apps</h1>
                            <h1>Apps</h1>
                        <p>Add custom logic and screens to your BigID system.</p>
                            <p>Add custom logic and screens to your BigID system.</p>
                        </div>
                        <div class="card-footer">
                            <span>Learn more</span>
                        </div>
                     </div>
                     </div>
                </a>
                     <div class="card-footer">
            </div>
                         Learn more
            <div class="card red animate-on-scroll">
                <a href="BigID_API" class="card-link-wrapper">
                     <div class="card-inner-content">
                        <div class="content">
                            <h1>REST API</h1>
                            <p>Manage BigID programmatically. Scan data, run SARs, and more through code.</p>
                        </div>
                         <div class="card-footer">
                            <span>Learn more</span>
                        </div>
                     </div>
                     </div>
                 </a>
                 </div>
             </div>
             </a>
             <div class="card blue animate-on-scroll">
             <a href="BigID_API" class="card red animate-on-scroll">
                <a href="Connectors" class="card-link-wrapper">
                <div class="card-inner-content">
                    <div class="card-inner-content">
                    <div class="content">
                        <div class="content">
                        <h1>REST API</h1>
                            <h1>Connectors</h1>
                        <p>Manage BigID programmatically. Scan data, run SARs, and more through code.</p>
                            <p>Scan any system, anywhere. Write your own connector in any programming language.</p>
                        </div>
                        <div class="card-footer">
                            <span>Learn more</span>
                        </div>
                     </div>
                     </div>
                </a>
                     <div class="card-footer">
            </div>
                         Learn more
            <div class="card orange animate-on-scroll">
                <a href="LLMs" class="card-link-wrapper">
                     <div class="card-inner-content">
                         <div class="content">
                            <h1>LLMs</h1>
                            <p>Interacting with BigID using MCP.</p>
                        </div>
                        <div class="card-footer">
                            <span>Learn more</span>
                        </div>
                     </div>
                     </div>
                 </a>
                 </div>
             </div>
            </a>
             <a href="Connectors" class="card blue animate-on-scroll">
                <div class="card-inner-content">
                    <div class="content">
                        <h1>Connectors</h1>
                        <p>Scan any system, anywhere. Write your own connector in any programming language.</p>
                    </div>
                    <div class="card-footer">
                        Learn more
                    </div>
                </div>
            </a>
            <a href="LLMs" class="card orange animate-on-scroll">
                <div class="card-inner-content">
                    <div class="content">
                        <h1>LLMs</h1>
                        <p>Interacting with BigID using MCP.</p>
                    </div>
                    <div class="card-footer">
                        Learn more
                    </div>
                </div>
            </a>
         </div>
         </div>
     </section>
     </section>
Line 627: Line 622:


</script>
</script>


</html>
</html>
{{#description2:Get started adding BigID's data discovery to your application with tutorials, samples, and
{{#description2:Get started adding BigID's data discovery to your application with tutorials, samples, and
documentation}}
documentation}}

Latest revision as of 20:11, 19 August 2025

Discover

Bring enterprise-scale data intelligence to your application

See into your data

BigID allows you to sort through large swaths of data to see what really matters. Using hundreds of machine learning, NLP and regex classifiers, you can classify any data, anywhere. Try it on the right.

Hello! Can you please process payment for [email protected] to 4199006507426062? Thank you!