Opensearch API - find savedobjects of visbuilder type

Versions (relevant - OpenSearch/Dashboard/Server OS/Browser): 2.7, API

Describe the issue: When trying to query all dashboard visualizations via API endpoint /_dashboards/api/saved_objects/_find?type=dashboard, any referenced visualizations made with visbuilder are listed as type “visualization-visbuilder”, but I can’t use /_dashboards/api/saved_objects/_find?type=visualization-visbuilder to get a list of all visbuilder visualizations and they do not show up when using type visualization. How can I query these, and is there a list of available types to query by in the API endpoint somewhere?

Configuration:

Relevant Logs or Screenshots:

@ss1100 I think the correct API should be /_dashboards/api/saved_objects/_find?type=visualization

You can also check all available types in the .kibana index.

GET .kibana_1/_search
{
  "size": 0, 
  "aggs": {
    "types": {
      "terms": {
        "field": "type",
        "size": 10
      }
    }
  }
}

If you’ve enabled multitenancy then your .kibana index may have a different name.