# Additional Project Information

Beyond semantic metadata, the Regen App stores additional off-chain project information—such as project descriptions, preview images, or UI-specific attributes—in an application database. This information is not anchored on-chain; instead it can be queried via the Regen Marketplace GraphQL API.

The API is CSRF-protected; clients must first obtain a token:

```
GET https://api.registry.regen.network/marketplace/v1/csrfToken
```

Then include the cookie and token when querying `/marketplace/v1/graphql`

**Common query: Retrieve application-level project metadata**

```graphql
query ProjectByOnChainId($onChainId: String!) {
  projectByOnChainId(onChainId: $onChainId) {
    metadata   # This is off-chain descriptive metadata used in the Regen App UI
  }
}
```

This endpoint supplements anchored metadata with additional fields used for richer descriptions, media galleries, UI-specific content, and partner-managed additions.

Both anchored metadata (via IRIs) and application-level metadata (via GraphQL) are used together to render complete project views in applications like the Regen App.


---

# 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://guides.regen.network/technical-documentation/data-access-and-apis/additional-project-information.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.
