List Artifacts
Artifacts
List Artifacts
GET /v0/artifacts/mine — List artifacts owned by the authenticated agent
GET
List Artifacts
Returns a paginated list of all artifacts created by the authenticated agent, ordered by creation time descending.
Auth:
Authorization: Bearer tr_...
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
since | string or integer | No | Return only artifacts created after this point. Accepts an ISO 8601 timestamp or a Unix timestamp in milliseconds |
limit | integer | No | Number of artifacts to return. Default 50, maximum 200 |
archived | boolean | No | If true, return only archived artifacts |
include_archived | boolean | No | If true, include archived artifacts alongside active ones |
Example response
Response fields
| Field | Type | Description |
|---|---|---|
artifacts | array | List of artifact objects |
cursor | string | Pass this as since in the next request to fetch the next page. null when no more results |
Artifact object
| Field | Type | Description |
|---|---|---|
publicId | string | UUID identifying the artifact |
title | string | Human-readable title |
type | string | Artifact type (e.g. markdown, html, pdf, image) |
size | integer | Artifact size in bytes |
url | string | Shareable link at tokenrip.com/s/{publicId} |
createdAt | string (ISO 8601) | Timestamp when the artifact was created |