Skip to main content
POST
/
api
/
v1
/
enrichment
/
process-file
Process File Enrichment
curl --request POST \
  --url https://api.example.com/api/v1/enrichment/process-file \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "session_id": "<string>",
  "linkedin_urls": [
    "<string>"
  ],
  "source_column": "<string>"
}
'
{
  "job_id": "<string>",
  "session_id": "<string>",
  "status": "<string>",
  "message": "<string>",
  "urls_to_process": 1,
  "estimated_duration_minutes": 123,
  "credits_required": 123,
  "priority": "normal"
}

Documentation Index

Fetch the complete documentation index at: https://bavlio.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Request model for file enrichment processing.

session_id
string
required

Processing session ID

Minimum string length: 1
linkedin_urls
string[]
required

List of LinkedIn URLs to enrich

Required array length: 1 - 1000 elements
source_column
string
required

Name of the source column

Minimum string length: 1

Response

Successful Response

Response model for file enrichment processing.

job_id
string
required

Background job ID

session_id
string
required

Processing session ID

status
string
required

Processing status

Pattern: ^(queued|processing|completed|failed)$
message
string
required

Status message

urls_to_process
integer
required

Number of URLs to process

Required range: x >= 0
estimated_duration_minutes
integer | null

Estimated processing duration in minutes

credits_required
integer | null

Credits required for this operation

priority
string | null
default:normal

Job priority level