# Getting started

We're proud to announce that we finally have the eGlow API available again!

We do want to mention that this is a stripped down version of eGlow removing all the logic and only leaving the API part available. If you feel like something is missing you can always request something to be added.

## Setting up the dependency

### Gradle

#### Groovy

```groovy
repositories {
    maven { url 'https://jitpack.io' }
}

dependencies {
    compileOnly 'com.github.SlyOtters:EGlow-API:v1.0'
}
```

#### Kotlin

```kotlin
repositories {
    maven("https://jitpack.io")
}

dependencies {
    compileOnly("com.github.SlyOtters", "EGlow-API", "v1.0")
}
```

### Maven

```xml
<repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
</repository>

<dependency>
    <groupId>com.github.SlyOtters</groupId>
    <artifactId>EGlow-API</artifactId>
    <version>v1.0</version>
    <scope>provided</scope>
</dependency>
```

WARNING: Do NOT shade the API into your jar and do NOT relocate the API from it's original package!\
\
If you do the API will not behave as intended! for Gradle make sure it's on `compileOnly` and for maven `<scope>provided<scope>`.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://eplugins.gitbook.io/eglow/developer-api/getting-started.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
