Fenergo Nebula Entity Profile Query 1.0

Fenergo Nebula Entity Profile Query — OpenAPI 3.0.4 contract published by Fenergo for the entityprofilequery service of the Fen-X SaaS platform, carrying 2 path(s) and 2 operation(s). Harvested verbatim from Fenergo's own published specification endpoint.

Operations 2

GET /api/entityprofileconfiguration Get the configurations for every entity type #
GET /api/entityprofileconfiguration/{id} Get the configuration for a specific entity type #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/entityprofilequery-v1-0"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

fenergo-entityprofilequery-v1-0-openapi.json Raw ↑
{
  "openapi": "3.0.4",
  "info": {
    "title": "Fenergo Nebula Entity Profile Query",
    "description": "Entity Profile Query API provides endpoints for the configuration of the entity profile page",
    "version": "1.0"
  },
  "servers": [
    {
      "url": "/entityprofilequery"
    }
  ],
  "paths": {
    "/api/entityprofileconfiguration": {
      "get": {
        "tags": [
          "EntityProfileConfiguration"
        ],
        "summary": "Get the configurations for every entity type",
        "operationId": "GetConfigurations",
        "parameters": [
          {
            "name": "X-TENANT-ID",
            "in": "header",
            "description": "The UiD of the tenant representing organization",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "b11f8be3-f29b-4959-8964-956d4af7c468"
          }
        ],
        "responses": {
          "200": {
            "description": "Success. List of Entity Profile Configuration objects returned in the response body",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetConfigurationDtoIEnumerableServiceResponse"
                }
              }
            }
          },
          "400": {
            "description": "Bad request. The request object has missing or invalid values",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ValidationErrorModelListServiceResponse"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error"
          },
          "401": {
            "description": "Unauthorized. You are missing the required permissions to execute this action"
          },
          "403": {
            "description": "Access to resource is forbidden.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": { },
                  "messages": [
                    {
                      "message": "Access denied. Following permissions are required: Permission1, Permission2",
                      "type": "Forbidden",
                      "errorCode": "Error Code"
                    }
                  ]
                }
              }
            }
          },
          "410": {
            "description": "Endpoint marked as deprecated was terminated. This response will be present only if the endpoint was marked as deprecated and has reached the sunset date. During the deprecation period, the API will include additional 'sunset' and 'deprecation' headers.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/StringServiceResponse"
                },
                "example": {
                  "data": null,
                  "messages": [
                    {
                      "message": "This endpoint is obsolete and was terminated on yyyy-MM-dd",
                      "type": "Error",
                      "errorCode": "OBSOLETE_ENDPOINT"
                    }
                  ]
                }
              }
            }
          }
        }
      }
    },
    "/api/entityprofileconfiguration/{id}": {
      "get": {
        "tags": [
          "EntityProfileConfiguration"
        ],
        "summary": "Get the configuration for a specific entity type",
        "operationId": "GetConfiguration",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "description": "GUID of the requested configuration",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          },
          {
            "name": "X-TENANT-ID",
            "in": "header",
            "description": "The UiD of the tenant representing organization",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "b11f8be3-f29b-4959-8964-956d4af7c468"
          }
        ],
        "responses": {
          "200": {
            "description": "Success. Entity Profile Configuration object returned in the response body",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetConfigurationDtoServiceResponse"
                }
              }
            }
          },
          "400": {
            "description": "Bad request. The request object has missing or invalid values",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ValidationErrorModelListServiceResponse"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error"
          },
          "401": {
            "description": "Unauthorized. You are missing the required permissions to execute this action"
          },
          "403": {
            "description": "Access to resource is forbidden.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": { },
                  "messages": [
                    {
                      "message": "Access denied. Following permissions are required: Permission1, Permission2",
                      "type": "Forbidden",
                      "errorCode": "Error Code"
                    }
                  ]
                }
              }
            }
          },
          "410": {
            "description": "Endpoint marked as deprecated was terminated. This response will be present only if the endpoint was marked as deprecated and has reached the sunset date. During the deprecation period, the API will include additional 'sunset' and 'deprecation' headers.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/StringServiceResponse"
                },
                "example": {
                  "data": null,
                  "messages": [
                    {
                      "message": "This endpoint is obsolete and was terminated on yyyy-MM-dd",
                      "type": "Error",
                      "errorCode": "OBSOLETE_ENDPOINT"
                    }
                  ]
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "AgencyConfiguration": {
        "type": "object",
        "properties": {
          "underlyingPrincipalsCategory": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "BaseConfigurableColumns": {
        "type": "object",
        "properties": {
          "displayName": {
            "type": "string",
            "nullable": true
          },
          "keyName": {
            "type": "string",
            "nullable": true
          },
          "propertyType": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "CommonConfiguration": {
        "type": "object",
        "properties": {
          "documentUploadVersion": {
            "type": "integer",
            "format": "int32"
          },
          "configurableDocumentColumns": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BaseConfigurableColumns"
            },
            "nullable": true
          },
          "showInvestmentAccountAssociations": {
            "type": "boolean"
          },
          "screeningOutcomes": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "EntityGroupConfigurableColumns": {
        "allOf": [
          {
            "$ref": "#/components/schemas/BaseConfigurableColumns"
          },
          {
            "type": "object",
            "properties": {
              "jurisdiction": {
                "type": "string",
                "nullable": true
              }
            },
            "additionalProperties": false
          }
        ]
      },
      "EntityTypeDto": {
        "enum": [
          "Individual",
          "Company",
          "Other",
          "Group",
          "Managed Relationship",
          "Product"
        ],
        "type": "string"
      },
      "GetConfigurationDto": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "entityType": {
            "enum": [
              "Individual",
              "Company",
              "Other",
              "Group",
              "Managed Relationship",
              "Product"
            ],
            "type": "string",
            "allOf": [
              {
                "$ref": "#/components/schemas/EntityTypeDto"
              }
            ]
          },
          "orderAlphabetically": {
            "type": "boolean"
          },
          "overviewCategory": {
            "type": "string",
            "nullable": true
          },
          "categories": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "lastUpdated": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "hiddenStatusChips": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "entityGroupConfigurableColumns": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/EntityGroupConfigurableColumns"
            },
            "nullable": true
          },
          "commonConfiguration": {
            "allOf": [
              {
                "$ref": "#/components/schemas/CommonConfiguration"
              }
            ],
            "nullable": true
          },
          "agencyConfiguration": {
            "allOf": [
              {
                "$ref": "#/components/schemas/AgencyConfiguration"
              }
            ],
            "nullable": true
          },
          "rightHandDrawerCategory": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "GetConfigurationDtoIEnumerableServiceResponse": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/GetConfigurationDto"
            },
            "nullable": true
          },
          "messages": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ServiceResponseMessage"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "GetConfigurationDtoServiceResponse": {
        "type": "object",
        "properties": {
          "data": {
            "allOf": [
              {
                "$ref": "#/components/schemas/GetConfigurationDto"
              }
            ],
            "nullable": true
          },
          "messages": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ServiceResponseMessage"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "ObjectServiceResponse": {
        "type": "object",
        "properties": {
          "data": {
            "nullable": true
          },
          "messages": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ServiceResponseMessage"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "ServiceResponseMessage": {
        "type": "object",
        "properties": {
          "message": {
            "type": "string",
            "nullable": true
          },
          "type": {
            "type": "string",
            "nullable": true
          },
          "errorCode": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "StringServiceResponse": {
        "type": "object",
        "properties": {
          "data": {
            "type": "string",
            "nullable": true
          },
          "messages": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ServiceResponseMessage"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "ValidationErrorModel": {
        "type": "object",
        "properties": {
          "propertyName": {
            "type": "string",
            "nullable": true
          },
          "errorMessage": {
            "type": "string",
            "nullable": true
          },
          "attemptedValue": {
            "nullable": true
          },
          "errorCode": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "ValidationErrorModelListServiceResponse": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ValidationErrorModel"
            },
            "nullable": true
          },
          "messages": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ServiceResponseMessage"
            },
            "nullable": true
          }
        },
        "additionalProperties": false,
        "example": {
          "data": [
            {
              "propertyName": "data",
              "errorMessage": "Data is required",
              "attemptedValue": "",
              "errorCode": "NotNullValidator"
            }
          ],
          "messages": [
            {
              "message": "Data is required",
              "type": "Error",
              "errorCode": "Error Code"
            }
          ]
        }
      }
    },
    "securitySchemes": {
      "Bearer": {
        "type": "apiKey",
        "description": "Please insert JWT with Bearer into field",
        "name": "Authorization",
        "in": "header"
      }
    }
  },
  "security": [
    {
      "Bearer": [ ]
    }
  ]
}