Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl -X POST https://api.artaios.ai/api/v1/collections/coll_123/files/ \ -H "x-api-key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "file_ids": ["file_123", "file_456", "file_789"] }'
import requests data = { "file_ids": ["file_123", "file_456", "file_789"] } response = requests.post( "https://api.artaios.ai/api/v1/collections/coll_123/files/", headers={"x-api-key": "YOUR_API_KEY"}, json=data ) result = response.json()
{ "success": true, "added": 3, "failed": 0, "results": [ { "file_id": "file_123", "status": "added" }, { "file_id": "file_456", "status": "added" }, { "file_id": "file_789", "status": "added" } ] }