Manage models within a collection
List, read, create and update ShareAI Creator model tags while preserving their collection ownership and effective serving policy.
On this page
https://api.shareai.now/api/v1/console/creator/model-collections/{collection_uuid}/modelsList models in an owned collection.
- Base URL
https://api.shareai.now- Authentication
- HTTP Basic: creator UUID and creator access token
- Required scope
creator_models:read


https://api.shareai.now/api/v1/console/creator/model-collections/{collection_uuid}/models/{model_uuid}Read an exact model tag.
- Base URL
https://api.shareai.now- Authentication
- HTTP Basic: creator UUID and creator access token
- Required scope
creator_models:read
Create a tag#
https://api.shareai.now/api/v1/console/creator/model-collections/{collection_uuid}/modelsCreate a model in the selected collection.
- Base URL
https://api.shareai.now- Authentication
- HTTP Basic: creator UUID and creator access token
- Required scope
creator_models:write
JSON
{
"tag": "7b",
"description_html": "<p>Describe the exact weights, intended tasks, context and limitations of this variant.</p>",
"share_types": [
"private"
]
}
Update a model#
https://api.shareai.now/api/v1/console/creator/model-collections/{collection_uuid}/models/{model_uuid}Update the selected model’s supported fields.
- Base URL
https://api.shareai.now- Authentication
- HTTP Basic: creator UUID and creator access token
- Required scope
creator_models:write
Start with a read, change only the fields intended for this tag and verify the effective result afterward. A tag’s override and the collection default can differ; do not assume a change to one tag changes all other tags.
Use the returned identifiers#
Keep collection UUID, model UUID and full model identifier as separate values. The UUIDs address catalog resources. The model identifier is used where the inference or provider contract asks for it.
Handle access and review#
A model in another Creator’s collection is outside this token’s authority. Availability changes still follow program permissions and review. If a response indicates pending changes, check the Console review state before publishing an integration announcement.
Last updated September 15, 2026