curl --request GET \
--url https://api.example.com/artifacts/{artifact_type}/{id}{
"metadata": {
"metadata.name": "<string>",
"metadata.id": "<string>",
"metadata.type": "<string>"
},
"data": {
"data.url": "<string>",
"data.download_url": "<string>"
},
"response": [
{
"name": "<string>",
"id": "<string>",
"type": "<string>"
}
]
}Fetch artifact details by type and ID
curl --request GET \
--url https://api.example.com/artifacts/{artifact_type}/{id}{
"metadata": {
"metadata.name": "<string>",
"metadata.id": "<string>",
"metadata.type": "<string>"
},
"data": {
"data.url": "<string>",
"data.download_url": "<string>"
},
"response": [
{
"name": "<string>",
"id": "<string>",
"type": "<string>"
}
]
}Documentation Index
Fetch the complete documentation index at: https://mintlify.com/GingerlyData247/SOTeam4-P2/llms.txt
Use this file to discover all available pages before exploring further.
GET /artifacts/{artifact_type}/{id}
GET /artifact/byName/{name}
model - Machine learning modeldataset - Training or evaluation datasetcode - Code repository or script12345, abc-123, model-001400 - Invalid artifact type or malformed ID404 - Artifact not found500 - Internal server errorcurl https://api.example.com/artifacts/model/12345
{
"metadata": {
"name": "BERT Base Uncased",
"id": "12345",
"type": "model"
},
"data": {
"url": "https://huggingface.co/google-bert/bert-base-uncased",
"download_url": "https://s3.amazonaws.com/bucket/artifacts/model/12345.zip?signature=..."
}
}
GET /artifact/byName/{name}
google-bert/bert-base-uncased → google-bert%2Fbert-base-uncased[] if no matches foundcurl https://api.example.com/artifact/byName/my-model
[
{
"name": "google-bert/bert-base-uncased",
"id": "12345",
"type": "model"
},
{
"name": "google-bert/bert-base-uncased",
"id": "12346",
"type": "model"
}
]
[]
POST /artifact/byRegEx
{
"regex": "bert.*uncased"
}
POST /artifacts
[
{
"name": "*",
"types": ["model", "dataset"]
}
]
offset response header for next page.