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

# Quickstart

> Get started with the orcrev.fit API in minutes

## Quick Start Guide

### 1. Make Your First Request

Fetch the list of all services:

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET "https://www.orcrev.fit/api/services"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://www.orcrev.fit/api/services');
  const data = await response.json();
  console.log(data.items);
  ```

  ```python Python theme={null}
  import requests

  response = requests.get('https://www.orcrev.fit/api/services')
  data = response.json()
  print(data['items'])
  ```
</CodeGroup>

### 2. Get Service Details

Retrieve information about a specific service:

```bash theme={null}
curl -X GET "https://www.orcrev.fit/api/services/example-slug"
```

### 3. Fetch Metrics

Get peak metrics for a service:

```bash theme={null}
curl -X GET "https://www.orcrev.fit/api/metrics?slug=example-slug"
```

## Common Use Cases

<AccordionGroup>
  <Accordion title="Monitor Service Status">
    Use `/api/services` to get real-time status and online counts for all services.
  </Accordion>

  <Accordion title="Track Historical Data">
    Use `/api/metrics/history` to access historical data points for analytics.
  </Accordion>

  <Accordion title="Build Dashboards">
    Combine `/api/overview` with `/api/metrics/all` for comprehensive dashboard data.
  </Accordion>
</AccordionGroup>

## Next Steps

<CardGroup cols={2}>
  <Card title="Services API" icon="server" href="/api-reference/services-list">
    Explore services endpoints
  </Card>

  <Card title="Metrics API" icon="chart-line" href="/api-reference/metrics">
    Learn about metrics tracking
  </Card>
</CardGroup>
