> ## Documentation Index
> Fetch the complete documentation index at: https://docs.creditriskmonitor.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Home

export function openSearch() {
  document.getElementById('search-bar-entry').click();
}

<div className="relative w-full flex items-center justify-center" style={{ height: '24rem', overflow: 'hidden'}}>
  <div className="absolute inset-0 bg-primary dark:bg-primary-light" style={{opacity: 0.05 }} />

  <div style={{ position: 'absolute', textAlign: 'center', padding: '0 1rem' }}>
    <div
      className="text-gray-900 dark:text-gray-200"
      style={{
margin: '0',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
gap: '12px'
}}
    >
      <span style={{ fontWeight: '400', fontSize: '50px', fontFamily: 'Libre Franklin' }}>Integrate with</span>
      <span style={{ fontWeight: '600', fontSize: '50px', fontFamily: 'Libre Franklin' }}>CreditRiskMonitor</span>
    </div>

    <p
      className="prose prose-gray dark:prose-invert mx-auto"
      style={{
marginTop: '1rem',
fontWeight: '400',
fontSize: '20px',
fontFamily: 'Libre Franklin',
maxWidth: '100%',
textAlign: 'center'
}}
    >
      Predictive intelligence and analytics for <a href="https://www.creditriskmonitor.com/credit">credit</a> and <a href="https://www.creditriskmonitor.com/supply-chain">supply chain</a> professionals.
    </p>

    <div className="flex items-center justify-center">
      <button
        type="button"
        className="hidden w-full lg:flex items-center text-sm leading-6 rounded-lg py-1.5 pl-2.5 pr-3 shadow-sm text-gray-400 dark:text-white/50 bg-background-light dark:bg-background-dark dark:brightness-[1.1] dark:ring-1 dark:hover:brightness-[1.25] ring-1 ring-gray-400/20 hover:ring-gray-600/25 dark:ring-gray-600/30 dark:hover:ring-gray-500/30 focus:outline-primary"
        id="home-search-entry"
        style={{
marginTop: '2rem',
maxWidth: '26rem',
}}
        onClick={openSearch}
      >
        <svg
          className="h-4 w-4 ml-1.5 mr-3 flex-none bg-gray-500 hover:bg-gray-600 dark:bg-white/50 dark:hover:bg-white/70"
          style={{
marginRight: '0.5rem',
maskImage:
'url("https://mintlify.b-cdn.net/v6.5.1/solid/magnifying-glass.svg")',
maskRepeat: 'no-repeat',
maskPosition: 'center center',
}}
        />

        Help me get started with...
      </button>
    </div>

    <div style={{marginTop: '2rem', display: 'inline-flex', alignItems: 'center'}}>
      <a
        href="/user-guides"
        className="text-primary hover:text-primary-dark dark:text-primary-light dark:hover:text-primary-lighter flex items-center gap-1"
        style={{ 
fontSize: '18px',
fontWeight: '600',
fontFamily: 'Libre Franklin'
}}
      >
        Browse Docs

        <svg
          xmlns="http://www.w3.org/2000/svg"
          viewBox="0 0 320 512"
          style={{
      width: '12px',
      height: '12px',
      fill: 'currentColor',
      marginLeft: '4px'
    }}
        >
          <path d="M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z" />
        </svg>
      </a>
    </div>
  </div>
</div>

<div
  style={{
marginTop: '4rem',
marginBottom: '2rem',
textAlign: 'center'
}}
>
  <h2
    className="text-gray-900 dark:text-gray-200"
    style={{
fontSize: '24px',
fontWeight: '600',
fontFamily: 'Libre Franklin'
}}
  >
    Explore Our Key Guides and Tools
  </h2>
</div>

<div
  style={{ 
maxWidth: '70rem', 
marginLeft: 'auto',
marginRight: 'auto', 
paddingLeft: '1.25rem',
paddingRight: '1.25rem' 
}}
>
  <CardGroup cols={2}>
    <Card title="Get started" icon="circle-play" href="/user-guides/get-started/initial-setup" iconType="solid">
      Learn quickly how to set up the APIs.
    </Card>

    <Card title="API Reference" icon="code" href="/api-reference" iconType="solid">
      Integrate our APIs to scale and make better financial decisions.
    </Card>
  </CardGroup>

  <br />

  <CardGroup cols={2}>
    <Card title="User Guides" icon="book" href="/user-guides" iconType="solid">
      Practical guides for using our tools to evaluate financial risk.
    </Card>

    <Card title="Support" icon="headset" href="/support" iconType="solid">
      Assistance for getting the most from our solutions.
    </Card>
  </CardGroup>
</div>
