GET
/
v3
/
jobs
/
{job_uid}
/
inputs
curl --request GET \
  --url https://api.captaindata.co/v3/jobs/{job_uid}/inputs \
  --header 'Authorization: <api-key>' \
  --header 'x-project-id: <api-key>'
{
  "inputs": [
    {
      "uid": "xxxxxxx-xxxxx-4dd6-a7f9-7d58928f5c57",
      "payload": {
        "linkedin_profile_url": "https://www.linkedin.com/in/yann-lecun/"
      },
      "success": true,
      "error": null,
      "nbr_of_items": 1,
      "status": "valid",
      "validity": {
        "linkedin_profile_url": {
          "valid": true,
          "error": ""
        }
      },
      "row_count": 1
    }
  ],
  "next_page_exist": false,
  "number_total_inputs": 1
}

Authorizations

Authorization
string
header
required

The Authorization header must include 'x-api-key' followed by your API key (e.g., 'Authorization: x-api-key YOUR_API_KEY').

x-project-id
string
header
required

Workspace UID required to identify the workspace.

Path Parameters

job_uid
string
required

Query Parameters

page

Response

200
application/json
Successful Response

The response is of type any.