Home: Difference between revisions

From BigID Developer Portal
No edit summary
No edit summary
Line 2: Line 2:
<style type="text/css">
<style type="text/css">
     @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
     @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400&display=swap');


     /* Light Mode Styles (Default) */
     /* Light Mode Styles (Default) */
Line 55: Line 57:


     #mega {
     #mega {
        position: relative;
         padding: 15vh 2vw;
         padding: 15vh 2vw;
         text-align: center;
         text-align: center;
Line 62: Line 65:
         background-size: 400% 400%;
         background-size: 400% 400%;
         animation: gradient-animation 20s ease infinite;
         animation: gradient-animation 20s ease infinite;
        overflow: hidden;
    }
   
    #code-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }
   
    .code-snippet {
        position: absolute;
        color: rgba(255, 255, 255, 0.1);
        font-family: 'Fira Code', monospace;
        font-size: 14px;
        white-space: nowrap;
        animation: slide-code linear infinite;
        user-select: none;
    }
    @keyframes slide-code {
        from { transform: translateY(100vh); }
        to { transform: translateY(-20vh); }
    }
    #mega .title {
        position: relative;
        z-index: 1;
     }
     }


Line 340: Line 374:
<main>
<main>
     <section id="mega">
     <section id="mega">
        <div id="code-background"></div>
         <div class="title">
         <div class="title">
             <h1>Discover</h1>
             <h1>Discover</h1>
Line 493: Line 528:
     // Trigger on load as well
     // Trigger on load as well
     handleScrollAnimation();
     handleScrollAnimation();
    function createCodeBackground() {
        const container = document.getElementById('code-background');
        if (!container) return;
       
        const snippets = [
            "const classify = () => {}",
            "import { BigID } from 'bigid-sdk';",
            "let api_token = '...';",
            "discover.scan({ target: 's3' });",
            "function onResult(data) { console.log(data); }",
            "new Connector('kafka');",
            "fetch('/api/v1/dsar')",
            "// Initialize the application",
            "const port = 3000;",
            "app.listen(port);",
            "main.card { display: flex; }",
            "opacity: 1; transform: translateY(0);"
        ];
        const snippetCount = 30;
        for (let i = 0; i < snippetCount; i++) {
            const snippetEl = document.createElement('div');
            snippetEl.classList.add('code-snippet');
            snippetEl.innerText = snippets[Math.floor(Math.random() * snippets.length)];
           
            snippetEl.style.left = `${Math.random() * 100}%`;
            snippetEl.style.top = `${Math.random() * 100}%`;
            snippetEl.style.animationDuration = `${10 + Math.random() * 15}s`;
            snippetEl.style.animationDelay = `${Math.random() * 10}s`;
           
            container.appendChild(snippetEl);
        }
    }
    createCodeBackground();


</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}}

Revision as of 19:33, 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!

Start Developing

Apps

Add custom logic and screens to your BigID system.

Learn more

REST API

Manage BigID programmatically. Scan data, run SARs, and more through code.

Learn More

Connectors

Scan any system, anywhere. Write your own connector in any programming language.

Learn More

LLMs

Interacting with BigID using MCP.

Learn More

Popular Articles:

{{Special:TopTenPages/1/10}}