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.
List artifacts with optional filtering by space or chat.
cURL
curl 'http://localhost:18080/api/artifacts?limit=10'
const options = {method: 'GET'}; fetch('http://localhost:18080/api/artifacts', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
import requests url = "http://localhost:18080/api/artifacts" response = requests.get(url) print(response.text)
package main import ( "fmt" "net/http" "io" ) func main() { url := "http://localhost:18080/api/artifacts" req, _ := http.NewRequest("GET", url, nil) res, _ := http.DefaultClient.Do(req) defer res.Body.Close() body, _ := io.ReadAll(res.Body) fmt.Println(string(body)) }
{ "artifacts": [ { "id": "<string>", "name": "<string>", "createdAt": "2023-11-07T05:31:56Z", "revision": 123 } ] }
Filter by space ID
Filter by chat ID
1 <= x <= 1000
true
false
List of artifacts
Show child attributes