Skip to main content
POST
/
api
/
auto-apply
/
run
Run a fully automated application using a profile
curl --request POST \
  --url https://connect.jobo.world/api/auto-apply/run \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '
{
  "profile_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "apply_url": "<string>"
}
'
{
  "session_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "profile_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "apply_url": "<string>",
  "provider_id": "<string>",
  "provider_display_name": "<string>",
  "status": "<string>",
  "success": true,
  "error": "<string>",
  "steps_completed": 123,
  "fields_filled": 123,
  "duration_ms": 123,
  "step_log": [
    {
      "step": 123,
      "action": "<string>",
      "status": "<string>",
      "fields_count": 123,
      "error": "<string>",
      "timestamp": "2023-11-07T05:31:56Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://jobo.world/docs/llms.txt

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

Authorizations

X-Api-Key
string
header
required

API key provided by Jobo

Body

application/json
profile_id
string<uuid>
required
apply_url
string
required

Response

Auto-apply execution result

session_id
string<uuid>
profile_id
string<uuid>
apply_url
string
provider_id
string
provider_display_name
string
status
string
success
boolean
error
string | null
steps_completed
integer
fields_filled
integer
duration_ms
integer<int64>
step_log
object[]