> ## Documentation Index
> Fetch the complete documentation index at: https://developers.explorium.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Business challenges (10-K) (async)

<Note>
  **Asynchronous variant.** This submits a job through the [async job infrastructure](/v2/async-jobs) — poll [job status](/v2/jobs/get_job_status) for progress and results. Input comes from an uploaded dataset (`list_id`); limits are 10,000 rows and a 24-hour run time.

  For the full output signal reference, see [the synchronous endpoint](/v2/businesses/enrichments/pc_business_challenges_10k_enrich).
</Note>

<AccordionGroup>
  <Accordion title="How It Works">
    * **Input:** Provide a `list_id` from the [dataset upload endpoint](/v2/jobs/upload_entity_id_dataset). Async endpoints do not accept inline IDs.
    * **Processing:** The system retrieves business challenge data for all submitted businesses in a **single request**.
    * **Output:** A structured response with corporate risks and operational challenges.
  </Accordion>

  <Accordion title="Example Request (cURL)">
    ```shell Bash theme={null}
    curl --request POST \
         --url https://api.explorium.ai/v2/businesses/pc_business_challenges_10k/job \
         --header 'accept: application/json' \
         --header 'api_key: your_api_key_here' \
         --header 'content-type: application/json' \
         --data '{
      "business_ids": [
        "8adce3ca1cef0c986b22310e369a0793",
        "a34bacf839b923770b2c360eefa26748"
      ]
    }'
    ```
  </Accordion>

  <Accordion title="Best Practices">
    * **Monitor regulatory and operational risks** for public companies.
    * **Assess business challenges** to understand corporate weaknesses.
    * **Use challenge data** to evaluate investment risks.
  </Accordion>
</AccordionGroup>

<Icon icon="thumbtack" iconType="solid" color="red" /> **For additional enrichment options, explore related API endpoints below.**

## Body Params - Try Me Example

```
business_ids: ["8adce3ca1cef0c986b22310e369a0793",
               "a34bacf839b923770b2c360eefa26748"]
```


## OpenAPI

````yaml post /v2/businesses/pc_business_challenges_10k/job
openapi: 3.1.0
info:
  title: Partner Service
  version: 0.3.18
servers:
  - url: https://api.explorium.ai
    description: AgentSource Server
security: []
paths:
  /v2/businesses/pc_business_challenges_10k/job:
    post:
      tags:
        - AsyncEnrichmentJobs
      summary: Businesses Pc Business Challenges 10K Job
      operationId: v2_businesses_pc_business_challenges_10k_job
      requestBody:
        content:
          application/json:
            schema:
              $ref: >-
                #/components/schemas/AsyncBusinessesPcBusinessChallenges10KJobSubmitRequest
        required: true
      responses:
        '202':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/V2AsyncEnrichmentJobSubmitResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
        - APIKeyHeader: []
components:
  schemas:
    AsyncBusinessesPcBusinessChallenges10KJobSubmitRequest:
      properties:
        list_id:
          type: string
          title: List Id
          description: Entity ID list identifier returned by the upload endpoint
      type: object
      required:
        - list_id
      title: AsyncBusinessesPcBusinessChallenges10KJobSubmitRequest
    V2AsyncEnrichmentJobSubmitResponse:
      properties:
        job_id:
          type: string
          title: Job Id
        status:
          type: string
          title: Status
        status_url:
          type: string
          title: Status Url
      type: object
      required:
        - job_id
        - status
        - status_url
      title: V2AsyncEnrichmentJobSubmitResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: api_key

````