BREAGEN Logo
Ontology Management

Graph Management

Get Vla Endpoint POST /api/v1/graph/vla

Resource URL/api/v1/graph/vla
Response FormatJSON
Requires AuthenticationYes
Rate LimitedNo
HTTPSYes

Description

Retrieve graph data based on specified filters.

Request Body

ParameterDescriptionRequiredTypeDefault Value
client_idClient identifierYesStringN/A
ontology_idOntology identifierYesIntegerN/A
cut_offCut-off valueNoInteger4
entity_typesList of entity typesNoArraynull

Example Request

curl -X 'POST' \
'https://braegen.ai/api/v1/graph/vla' \
-H 'accept: application/json' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json' \
-d '{
    "client_id": "client_123",
    "ontology_id": 1,
    "cut_off": 4,
    "entity_types": ["type1"]
}'

Example Response

{
    "description": "Successful Response"
}

HTTP Responses

HTTP CodeMessage
200Successful Response
422Validation Error

On this page