Skip to content
  • Auto
  • Light
  • Dark

Retrieve Data Sources

List Data Sources for Indexing Job for a Knowledge Base
get/v2/gen-ai/indexing_jobs/{indexing_job_uuid}/data_sources

To list all datasources for an indexing job, send a GET request to /v2/gen-ai/indexing_jobs/{indexing_job_uuid}/data_sources.

Path Parameters
indexing_job_uuidstring
Returns
indexed_data_sourcesarray of completed_atstringdata_source_uuidstringerror_detailsstringerror_msgstringfailed_item_countstringindexed_file_countstringindexed_item_countstringremoved_item_countstringskipped_item_countstringstarted_atstringstatusenumtotal_bytesstringtotal_bytes_indexedstringtotal_file_countstringAPIIndexedDataSource
optional
curl https://api.digitalocean.com//v2/gen-ai/indexing_jobs/$INDEXING_JOB_UUID/data_sources \
    -H "Authorization: Bearer $GRADIENTAI_API_KEY"
200 Example
{
  "indexed_data_sources": [
    {
      "completed_at": "2023-01-01T00:00:00Z",
      "data_source_uuid": "\"123e4567-e89b-12d3-a456-426614174000\"",
      "error_details": "\"example string\"",
      "error_msg": "\"example string\"",
      "failed_item_count": "\"12345\"",
      "indexed_file_count": "\"12345\"",
      "indexed_item_count": "\"12345\"",
      "removed_item_count": "\"12345\"",
      "skipped_item_count": "\"12345\"",
      "started_at": "2023-01-01T00:00:00Z",
      "status": "DATA_SOURCE_STATUS_UNKNOWN",
      "total_bytes": "\"12345\"",
      "total_bytes_indexed": "\"12345\"",
      "total_file_count": "\"12345\""
    }
  ]
}