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

# Welcome

> _Build smarter. Ship faster._

Engrate is the acceleration layer for companies building energy products. We give you production-ready APIs for the hard parts — cost calculations, schedule submissions, settlement workflows — so you can ship in days instead of spending months on legacy integrations.

<CodeGroup>
  ```bash Cost of Energy theme={null}
  curl --request POST \
    --url https://api.engrate.io/cost-of-energy/v1/calculate \
    --header "authorization: $API_KEY" \
    --header "content-type: application/json" \
    --data '{
      "tariff_id": "0199c317-25ec-7cf7-94cc-32a39f068433",
      "start_time": "2026-01-01T00:00:00+01:00",
      "end_time": "2026-01-01T00:30:00+01:00",
      "time_series": [{
        "name": "quarter-hourly-energy-offtake",
        "values": [1.5, 1.2]
      }]
    }'
  ```

  ```bash Schedule Management theme={null}
  curl --request POST \
    --url https://api.engrate.io/schedule-management/v1/schedules \
    --header "authorization: $API_KEY" \
    --header "content-type: application/json" \
    --data '{
      "market": "DE",
      "tso": "50HERTZ_DE_TSO",
      "receiver_id": "10XDE-VE-TRANSMK",
      "series": [{
        "type": "internal",
        "ids": {
          "in_area": "10YDE-VE-------2",
          "out_area": "10YDE-VE-------2",
          "in_party": "11XDE-EXAMPLE--A",
          "out_party": "11XDE-EXAMPLE--B"
        },
        "data": [{ "ts": "2026-01-23T23:00:00Z", "amount": 10.5 }]
      }]
    }'
  ```
</CodeGroup>

## Products

<Columns cols={2}>
  <Card title="Cost of Energy" icon="bolt" horizontal href="/products/cost-of-energy">
    One API for the full cost stack — grid fees, taxes, transfer charges, peak power fees. Machine-readable calculation pipelines you implement once.
  </Card>

  <Card title="Schedule Management" icon="calendar-days" iconType="solid" color="#ffbb00" horizontal href="/products/schedule-management">
    Submit energy schedules to TSOs across Germany and the Netherlands. One API, all protocol differences handled.
  </Card>

  <Card title="Settlement Management" icon="money-bill-transfer" horizontal href="/products/settlement-management">
    DE and NL settlement workflows — clearing, reconciliation, and imbalance — through a single integration surface.
  </Card>
</Columns>

## Getting started

<Steps>
  <Step title="Sign up">
    Create an account at [console.engrate.io](https://console.engrate.io) and generate an API key.

    <Warning>
      Keep your API key secure and never commit it to version control. Use environment variables or secure secret management in production.
    </Warning>
  </Step>

  <Step title="Pick a quickstart">
    Start with the [Cost of Energy Quickstart](/guides/cost-of-energy-quickstart) to go from zero to a working cost calculation with curl examples you can paste and go.
  </Step>

  <Step title="Explore the platform">
    Browse [all products](/products) or jump straight to the [API reference](/api-reference).
  </Step>
</Steps>
