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

# Get Started

> Make your first request on the Codex API

export const EmbedFrame = ({query, height, caption}) => {
  const encodedQuery = typeof window === "undefined" ? "" : encodeURIComponent(query);
  return <Frame caption={caption}>
      <div style={{
    width: "100%",
    height: height || "100%",
    minHeight: "400px",
    maxHeight: "90vh",
    position: "relative",
    display: "flex",
    flexDirection: "column",
    flex: "1"
  }}>
        <iframe src={"https://explorer.codex.io/embed.html?query=" + encodedQuery} width="100%" className="w-full aspect-video rounded-xl" style={{
    flex: "1",
    height: "100%",
    borderRadius: "12px",
    border: "none",
    display: "block"
  }} />
      </div>
    </Frame>;
};

<Steps>
  <Step title="Sign up for a Codex account">
    You'll need an account to make API requests. Sign up on the [Codex Dashboard](https://dashboard.codex.io/signup?utm_source=codex\&utm_medium=docs\&utm_campaign=get-started).
  </Step>

  <Step title="Copy your API key">
    Once you've made an account, go to the [API Keys](https://dashboard.codex.io/dashboard/api-keys?utm_source=codex\&utm_medium=docs\&utm_campaign=get-started) page & hit the `Copy` button next to your API key.
  </Step>

  <Step title="Make your first request">
    Paste your API key in this embedded GraphQL explorer & run your first request. You should see a list of networks.

    <EmbedFrame
      query={`
query MyQuery {
getNetworks {
id
name
}
}`}
    />

    <Note>
      Throughout the docs you'll notice expandable "Try it" sections where you can run queries on real data like this mini explorer. For a more powerful version, check out the full [explorer](/explore)
    </Note>
  </Step>

  <Step title="Add Codex to your project">
    Now you're ready to [add Codex to your app](/build) so you can get building!
  </Step>
</Steps>

If you're having trouble, please reach out to us on [Discord](https://discord.gg/9ZB7zcWuBY).
