Get all components
curl --request GET \
--url https://{hostname}.gable.ai/v0/components \
--header 'X-API-KEY: <api-key>'{
"components": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"type": "<string>",
"repoName": "<string>",
"lastUpdated": "2023-12-25",
"metrics": {
"ingressCount": 123,
"egressCount": 123,
"pathCount": 123
},
"codeInfo": {
"repoUri": "<string>",
"projectRoot": "<string>"
}
}
]
}A query string to search components with
Successful operation
Show child attributes
The unique identifier for the component.
The name of the component.
The type of the component.
The repository name or path associated with the component.
The date when the component was last updated.
curl --request GET \
--url https://{hostname}.gable.ai/v0/components \
--header 'X-API-KEY: <api-key>'{
"components": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"type": "<string>",
"repoName": "<string>",
"lastUpdated": "2023-12-25",
"metrics": {
"ingressCount": 123,
"egressCount": 123,
"pathCount": 123
},
"codeInfo": {
"repoUri": "<string>",
"projectRoot": "<string>"
}
}
]
}