curl --request POST \
--url https://api.example.com/api/v1/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "<string>",
"query": "<string>"
}
'{
"results": [
{
"node_id": "<string>",
"name": "<string>",
"file_path": "<string>",
"content": "<string>",
"match_type": "<string>",
"relevance": 123
}
]
}curl --request POST \
--url https://api.example.com/api/v1/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "<string>",
"query": "<string>"
}
'{
"results": [
{
"node_id": "<string>",
"name": "<string>",
"file_path": "<string>",
"content": "<string>",
"match_type": "<string>",
"relevance": 123
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.