FruxonDocs
IntegrationsAssets

Gets a single asset by its ID, including token budget from the RAG service.

Returns the asset together with RAG-side fields (token budget, embedding model, ingestion-derived usage) when the asset is vectorized. Safe to poll after `POST /assets` or `POST /assets/{asset}:refresh` to observe state changes, though ingestion progress is better tracked via `/operations`.

GET
/v1/tenants/{tenant}/assets/{asset}
AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.

In: header

Path Parameters

asset*string

The local asset ID.

Formatuuid
tenant*string

The tenant identifier

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/assets/497f6eca-6276-4993-bfeb-53cbbbba6f08"
{
  "id": "string",
  "displayName": "string",
  "type": "string",
  "vectorized": false,
  "config": {
    "sourceType": "string",
    "parameters": {}
  },
  "integrationId": "string",
  "assetLink": "string",
  "createdAt": 0,
  "modifiedAt": 0,
  "autoUpdate": false,
  "autoUpdateConfig": {
    "strategy": "WEBHOOK",
    "provider": "string",
    "externalContext": "string",
    "filter": "string",
    "pollFrequency": "DAILY",
    "pollDay": "string",
    "pollDayOfMonth": "_1",
    "pollHour": "string",
    "pollMinute": "string",
    "timezone": "string"
  },
  "lastPolledAt": 0,
  "embeddingLlmConfigId": "string",
  "supportsAutoUpdate": false,
  "supportsWebhookRegistration": false,
  "supportsPollSchedule": false,
  "embedding": {
    "provider": "string",
    "model": "string",
    "chunkSize": 0,
    "chunkOverlap": 0
  },
  "budget": {
    "tokenBudget": 0,
    "monthlyTokenBudget": 0,
    "dailyTokenBudget": 0,
    "totalTokenCount": 0,
    "monthlyTokensUsed": 0,
    "dailyTokensUsed": 0,
    "costBudget": 0,
    "monthlyCostBudget": 0,
    "dailyCostBudget": 0,
    "totalCost": 0,
    "monthlyCostUsed": 0,
    "dailyCostUsed": 0,
    "pricePerMillionTokens": 0
  },
  "embeddingStatus": "PENDING",
  "errorCategory": "CREDENTIALS"
}
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}