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

# Get Social Copy Generation Result

> You can retrieve the result of a social copy generation job by making a `GET` request to `https://api.opus.pro/api/social-copy-jobs/{jobId}`.



## OpenAPI

````yaml GET /api/social-copy-jobs/{jobId}
openapi: 3.0.0
info:
  title: Clip API
  description: Clip API documentation
  version: '1.0'
  contact: {}
servers:
  - url: https://api.opus.pro
    description: OpusClip Open API Production Server
security: []
tags: []
paths:
  /api/social-copy-jobs/{jobId}:
    get:
      tags:
        - social-posting
        - enterprise
      description: >-
        Get the current status and generated copy for a social copy generation
        job.
      operationId: SocialCopyJobController_getSocialCopyJob
      parameters:
        - name: jobId
          required: true
          in: path
          description: Unique ID of the social copy generation job
          schema:
            type: string
      responses:
        '200':
          description: Successfully retrieved the social copy generation result
          content:
            application/json:
              example:
                data:
                  jobId: 96e3d68c-49ef-4c19-b3b6-595f9564537c
                  status: COMPLETED
                  cached: false
                  title: My Daughter's 'Gift' at 3 AM
                  description: >-
                    Thought I was losing my mind. Hear walking at 3 AM, check
                    the house - everyone's asleep. Then I see it... my
                    daughter's 'gift' moved. My wife has some explaining to do!
                  hashtags: >-
                    #ParentingFails #CreepyKids #MomLife #FunnyParenting
                    #WhatDidISignUpFor
              schema:
                type: object
                required:
                  - data
                properties:
                  data:
                    type: object
                    required:
                      - jobId
                      - status
                    properties:
                      jobId:
                        type: string
                        description: Unique ID of the social copy generation job
                      status:
                        type: string
                        enum:
                          - RUNNING
                          - COMPLETED
                          - FAILED
                        description: Status of the social copy generation job
                      cached:
                        type: boolean
                        description: Whether the result came from cache
                      title:
                        type: string
                        description: Generated title
                      description:
                        type: string
                        description: Generated description
                      hashtags:
                        type: string
                        description: Generated hashtags
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````