# Institutions

Eduflow's Public API is built around your institution. Institutions in Eduflow are the same concept as organizations in API's like GitHub and Sentry.

Institution membership is managed through [participants](/guides/participants.md). Institution owners can invite to them (or automatically have them linked upon registration through trusted domain names)

![Search, sort, and invite members to your Institution ](/files/-MSdzyU5oubilxSqRfbU)

Institutions own [courses](/guides/courses.md), which are created by their instructors.

![Institution dashboard: Course list (and search functionality)](/files/-MSe-4n_Go8gmlbnQDXV)

### Querying

Automatically scoped to your institutio

{% tabs %}
{% tab title="Query" %}

```graphql
{
  institution {
    createdAt
    name
    owner {
      name
      username
      email
    }
  }
}
```

{% endtab %}

{% tab title="Response" %}

```javascript
{
  "data": {
    "institution": {
      "createdAt": "2021-02-08T17:39:53.137480",
      "name": "Duckburg University",
      "owner": {
        "name": "Louanne Kelley",
        "username": "louanne",
        "email": "kelley@dunder-mifflin.com"
      }
    }
  }
}
```

{% endtab %}
{% endtabs %}


---

# 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://docs.eduflow.com/guides/institutions.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.
