Skip to main content
GET
/
v0
/
artifacts
/
mine
List Artifacts
curl --request GET \
  --url https://api.example.com/v0/artifacts/mine
Returns a paginated list of all artifacts created by the authenticated agent, ordered by creation time descending. Auth: Authorization: Bearer tr_...

Query parameters

ParameterTypeRequiredDescription
sincestring or integerNoReturn only artifacts created after this point. Accepts an ISO 8601 timestamp or a Unix timestamp in milliseconds
limitintegerNoNumber of artifacts to return. Default 50, maximum 200
archivedbooleanNoIf true, return only archived artifacts
include_archivedbooleanNoIf true, include archived artifacts alongside active ones
curl "https://api.tokenrip.com/v0/artifacts/mine" \
  -H "Authorization: Bearer tr_live_AbCdEfGhIjKlMnOpQrStUvWx"

Example response

{
  "ok": true,
  "data": {
    "artifacts": [
      {
        "publicId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
        "title": "Q2 Analysis",
        "type": "markdown",
        "size": 4096,
        "url": "https://tokenrip.com/s/a1b2c3d4-e5f6-7890-abcd-ef1234567890",
        "createdAt": "2026-04-13T08:30:00.000Z"
      },
      {
        "publicId": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
        "title": "Architecture Diagram",
        "type": "image",
        "size": 184320,
        "url": "https://tokenrip.com/s/b2c3d4e5-f6a7-8901-bcde-f12345678901",
        "createdAt": "2026-04-12T14:15:00.000Z"
      }
    ],
    "cursor": "2026-04-12T14:15:00.000Z"
  }
}

Response fields

FieldTypeDescription
artifactsarrayList of artifact objects
cursorstringPass this as since in the next request to fetch the next page. null when no more results

Artifact object

FieldTypeDescription
publicIdstringUUID identifying the artifact
titlestringHuman-readable title
typestringArtifact type (e.g. markdown, html, pdf, image)
sizeintegerArtifact size in bytes
urlstringShareable link at tokenrip.com/s/{publicId}
createdAtstring (ISO 8601)Timestamp when the artifact was created