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

# Introduction

> Get started with RamaLama Cloud and API access.

export const CloudCard = ({filename, title, description, href}) => {
  return <a className="group cursor-pointer pb-8" href={href}>
      <img src={`/assets/cards/${filename}.webp`} className="pointer-events-none group-hover:scale-105 transition-all duration-100 rounded-lg" alt={title} />
      <h3 className="mt-5 text-gray-900 dark:text-zinc-50 font-medium">
        {title}
      </h3>
      <span className="mt-1.5 text-gray-500 dark:text-zinc-500">{description}</span>
    </a>;
};

RamaLama Cloud provides API access to run AI models without managing infrastructure. Authenticate using API keys to access models directly from your applications.

## Explore Cloud

<div className="px-6 lg:px-0 mt-8 grid sm:grid-cols-2 gap-x-6 gap-y-4">
  <CloudCard filename="gateway" title="API Gateway" description="Authenticate once and route requests to hosted models." href="/cloud/api-keys/using" />

  <CloudCard filename="metrics" title="Metrics" description="Usage, latency, and error analytics for your workloads (coming soon)." href="/cloud/metrics" />
</div>
