---
updatedAt: 2026-07-26T13:21:38.000Z
---

Fetch the complete documentation index at: https://docs.noves.fi/llms.txt. Use this file to discover all available pages before exploring further.

# /{chain}/featuredApps/{providerParty}/config

Returns the public Featured App party configuration associated with a specific provider party.

# OpenAPI definition

```json
{
  "openapi": "3.0.1",
  "info": {
    "title": "Canton API",
    "description": "Access public Canton updates, balances, prices, rewards, and more. Set up your own streams and alerts. Fetch fully reconciliable, accounting-grade data. Powered by Noves.",
    "version": "v1"
  },
  "servers": [
    {
      "url": "https://api.canton.noves.fi/"
    }
  ],
  "paths": {
    "/{chain}/featuredApps/{providerParty}/config": {
      "get": {
        "tags": [
          "FeaturedApps"
        ],
        "summary": "/{chain}/featuredApps/{providerParty}/config",
        "description": "Returns the public Featured App party configuration associated with a specific provider party.",
        "parameters": [
          {
            "name": "chain",
            "in": "path",
            "description": "Chain name. Use a chain returned by `GET /chains`.",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string",
              "default": "canton",
              "example": "canton"
            }
          },
          {
            "name": "providerParty",
            "in": "path",
            "description": "Featured App provider party.",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "apiKey",
            "in": "header",
            "description": "API Key for Canton API. To generate an API Key, visit https://app.noves.fi",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string",
              "default": "demokey"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/FeaturedAppConfigDto"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
          },
          "409": {
            "description": "Conflict",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
          },
          "502": {
            "description": "Server Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "FeaturedAppConfigDto": {
        "required": [
          "beneficiaryParties",
          "confirmerParties",
          "name",
          "providerParties",
          "validatorParties"
        ],
        "type": "object",
        "properties": {
          "name": {
            "minLength": 1,
            "type": "string",
            "description": "Featured App display name."
          },
          "providerParties": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Parties configured as Featured App providers."
          },
          "beneficiaryParties": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Parties whose activity can be attributed to the Featured App."
          },
          "validatorParties": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Validator parties used for traffic and verdict attribution."
          },
          "confirmerParties": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Parties configured to confirm the Featured App's activity."
          }
        },
        "additionalProperties": false,
        "description": "Public Featured App party configuration."
      },
      "ProblemDetails": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "nullable": true
          },
          "title": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "detail": {
            "type": "string",
            "nullable": true
          },
          "instance": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": {}
      }
    }
  }
}
```