# Poll Curation Job After you have started a curation job, you will receive a job id in the response. { 'id' : `` } Use this ID to poll for the status of the job using this endpoint. Once the status is FINISHED, you can download the results. Endpoint: GET /curationjobs/{id} Version: 3 Security: apiKey ## Path parameters: - `id` (string, required) ID of the Data Curation job. Example: "35f23c03-1c22-45fe-9484-3ffe769325de" ## Response 200 fields (application/json): - `id` (string) Unique identifier of a job. Example: "35f23c03-1c22-45fe-9484-3ffe769325de" - `name` (string) Name of a Job. Example: "Process vendor data" - `description` (string) Detailed description of a Job. Example: "I started this job to improve quality of our data." - `storageId` (string) Unique identifier of the Storage. Example: "72d6900fce6b326088f5d9d91049e3e6" - `dataSourceIds` (array) List of Data Source IDs. Example: ["648824a691d8d2503d65103e"] - `countryShortNames` (array) List of country short names. Example: ["CH"] - `status` (string) Curation Job execution status. Enum: "UNKNOWN", "CREATED", "PERSISTED", "SCHEDULED", "WAITING", "RUNNING", "FINISHED", "DIED", "CANCELED", "FAILED", "ARCHIVED" - `statusMessage` (string) Additional information to explain the status. Example: "The job failed because storage is empty." - `createdAt` (string) Date of creation (ISO 8601-compliant). Example: "2025-09-12T14:57:38Z" - `user` (string) ID of (human) user or API key. Example: "742429-234242-4343-232323" - `progress` (integer) Progress (%) of the job. Example: "77" - `attachments` (array) List of attachments. - `attachments.url` (string) Url of the file resource linking to s3. Example: "customer-upload/user/file.xlsx" - `attachments.tags` (array) Example: ["Reporting"] - `reportsJobId` (string) Unique identifier of a Reports Job. Example: "6be92567-4327-4463-813f-a8c990410d79" - `reportsConfiguration` (object) Configures if and how Data Curation reports are generated. - `reportsConfiguration.addressCuration` (object) Configures if and how Address Curation reports are generated. - `reportsConfiguration.addressCuration.build` (boolean) Enable to generate this report. Example: "true" - `reportsConfiguration.legalEntityCuration` (object) Configures if and how Legal Entity Curation reports are generated. - `reportsConfiguration.naturalPersonScreening` (object) Configures if and how Natural Person Screening reports are generated. - `reportsConfiguration.vatRegistrationData` (object) Configures if and how Vat Registration Data reports are generated.