Skip to main content
GET
/
v1
/
sources
/
{source_id}
Get Source Status
curl --request GET \
  --url https://api.linqalpha.com/v1/sources/{source_id} \
  --header 'X-API-KEY: <api-key>'
{
"source_id": "456e7890-e89b-12d3-a456-426614174001",
"status": "processing"
}

Authorizations

X-API-KEY
string
header
required

Path Parameters

source_id
string<uuid>
required

The unique identifier (UUID) of the source returned from POST /v1/sources

Response

Source status retrieved successfully

source_id
string<uuid>
required

Source identifier

Example:

"456e7890-e89b-12d3-a456-426614174001"

status
enum<string>
required

Current processing status:

  • processing: File is being parsed and indexed
  • success: Source is ready for use in conversations
  • failed: Processing failed, source cannot be used
Available options:
processing,
success,
failed
Example:

"success"

error
string

Error message if status is 'failed' (optional)

Example:

"File format not supported"