> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.futurejobs.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.futurejobs.ai/_mcp/server.

# Get Profiles for Session

GET https://prod.api.futurejobs.ai/api/v1/wl/sourcing-session//profiles

`GET /sourcing-session/:sessionId/profiles`

Returns paginated candidate profiles matched in the session. Call this after `profileMatchingStatus` is `done`.

## Path Parameters

| Name | Type | Description |
| --- | --- | --- |
| sessionId | string | Session ObjectId. |

## Query Parameters

| Name | Type | Default | Description |
| --- | --- | --- | --- |
| page | number | 1 | Page number. |
| limit | number | 20 | Results per page. |

## Headers

| Key | Value |
| --- | --- |
| x-fj-api-key | fjk_ |

## Response (200)

``` json
{
  "statusCode": 200,
  "data": {
    "docs": [
      {
        "_id": "<CANDIDATE_ID>",
        "finalScore": 5,
        "profileAnalysis": {
          "highlights": [
            { "Category": "SKILLS", "Highlight": "C#", "Icon": "BULB" }
          ],
          "recommendation": "Strong fit for .NET development roles."
        },
        "profile": {
          "name": "Roshni Sabhwani",
          "region": "Pune District, Maharashtra, India",
          "years_of_experience_raw": 4,
          "skills": ["C#", "ASP.NET MVC"],
          "current_employers_object": [
            { "company_name": "Infosys", "job_title": ".NET Developer" }
          ]
        },
      }
    ],
    "totalDocs": 45,
    "limit": 20,
    "page": 1,
    "totalPages": 3,
    "hasNextPage": true,
    "nextPage": 2
  },
  "status": "SUCCESS"
}

 ```

## cURL

Replace `fjk_YOUR_API_KEY_HERE` and , then paste and run:

``` bash
curl "https://prod.api.futurejobs.ai/api/v1/wl/sourcing-session/<SESSION_ID>/profiles?page=1&limit=20" \
  -H "x-fj-api-key: fjk_YOUR_API_KEY_HERE"

 ```

## Errors

- `401 Unauthorized`
    
- `404 Not Found` — session not found.

Reference: https://docs.futurejobs.ai/fj-sourcing-ap-is/sourcing-session/get-profiles-for-session

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: FJ Sourcing APIs
  version: 1.0.0
paths:
  /api/v1/wl/sourcing-session//profiles:
    get:
      operationId: get-profiles-for-session
      summary: Get Profiles for Session
      description: >-
        `GET /sourcing-session/:sessionId/profiles`


        Returns paginated candidate profiles matched in the session. Call this
        after `profileMatchingStatus` is `done`.


        ## Path Parameters


        | Name | Type | Description |

        | --- | --- | --- |

        | sessionId | string | Session ObjectId. |


        ## Query Parameters


        | Name | Type | Default | Description |

        | --- | --- | --- | --- |

        | page | number | 1 | Page number. |

        | limit | number | 20 | Results per page. |


        ## Headers


        | Key | Value |

        | --- | --- |

        | x-fj-api-key | fjk_ |


        ## Response (200)


        ``` json

        {
          "statusCode": 200,
          "data": {
            "docs": [
              {
                "_id": "<CANDIDATE_ID>",
                "finalScore": 5,
                "profileAnalysis": {
                  "highlights": [
                    { "Category": "SKILLS", "Highlight": "C#", "Icon": "BULB" }
                  ],
                  "recommendation": "Strong fit for .NET development roles."
                },
                "profile": {
                  "name": "Roshni Sabhwani",
                  "region": "Pune District, Maharashtra, India",
                  "years_of_experience_raw": 4,
                  "skills": ["C#", "ASP.NET MVC"],
                  "current_employers_object": [
                    { "company_name": "Infosys", "job_title": ".NET Developer" }
                  ]
                },
              }
            ],
            "totalDocs": 45,
            "limit": 20,
            "page": 1,
            "totalPages": 3,
            "hasNextPage": true,
            "nextPage": 2
          },
          "status": "SUCCESS"
        }

         ```

        ## cURL


        Replace `fjk_YOUR_API_KEY_HERE` and , then paste and run:


        ``` bash

        curl
        "https://prod.api.futurejobs.ai/api/v1/wl/sourcing-session/<SESSION_ID>/profiles?page=1&limit=20"
        \
          -H "x-fj-api-key: fjk_YOUR_API_KEY_HERE"

         ```

        ## Errors


        - `401 Unauthorized`
            
        - `404 Not Found` — session not found.
      tags:
        - subpackage_sourcingSession
      parameters:
        - name: page
          in: query
          required: false
          schema:
            type: integer
        - name: limit
          in: query
          required: false
          schema:
            type: integer
        - name: x-fj-api-key
          in: header
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Sourcing Session_Get Profiles for
                  Session_Response_200
servers:
  - url: https://prod.api.futurejobs.ai
    description: https://prod.api.futurejobs.ai
components:
  schemas:
    ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsProfileAnalysisAnalysisKeyStrengthsItems:
      type: object
      properties:
        observation:
          type: string
        evidence:
          type: string
      required:
        - observation
        - evidence
      title: >-
        ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsProfileAnalysisAnalysisKeyStrengthsItems
    ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsProfileAnalysisAnalysis:
      type: object
      properties:
        keyStrengths:
          type: array
          items:
            $ref: >-
              #/components/schemas/ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsProfileAnalysisAnalysisKeyStrengthsItems
        keyWeaknesses:
          type: array
          items:
            description: Any type
      required:
        - keyStrengths
        - keyWeaknesses
      title: >-
        ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsProfileAnalysisAnalysis
    ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsProfileAnalysisHighlightsItems:
      type: object
      properties:
        Category:
          type: string
        Highlight:
          type: string
        ReasonForHighlight:
          type: string
        Icon:
          type: string
      required:
        - Category
        - Highlight
        - ReasonForHighlight
        - Icon
      title: >-
        ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsProfileAnalysisHighlightsItems
    ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsProfileAnalysis:
      type: object
      properties:
        analysis:
          $ref: >-
            #/components/schemas/ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsProfileAnalysisAnalysis
        highlights:
          type: array
          items:
            $ref: >-
              #/components/schemas/ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsProfileAnalysisHighlightsItems
        recommendation:
          type: string
      required:
        - analysis
        - highlights
        - recommendation
      title: >-
        ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsProfileAnalysis
    ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsProfileCurrentEmployersObjectItems:
      type: object
      properties:
        company_name:
          type: string
        company_website_domain:
          type: string
        job_title:
          type: string
        company_linkedin_profile_url:
          type: string
          format: uri
      required:
        - company_name
        - company_website_domain
        - job_title
        - company_linkedin_profile_url
      title: >-
        ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsProfileCurrentEmployersObjectItems
    ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsProfile:
      type: object
      properties:
        _id:
          type: string
        emails:
          type: array
          items:
            description: Any type
        lastFetchedAt:
          type: string
          format: date-time
        linkedin_profile_url:
          type: string
          format: uri
        name:
          type: string
        open_to_cards:
          type: array
          items:
            description: Any type
        profile_picture_permalink:
          type: string
          format: uri
        region:
          type: string
        skills:
          type: array
          items:
            type: string
        years_of_experience_raw:
          type: integer
        current_employers_object:
          type: array
          items:
            $ref: >-
              #/components/schemas/ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsProfileCurrentEmployersObjectItems
      required:
        - _id
        - emails
        - lastFetchedAt
        - linkedin_profile_url
        - name
        - open_to_cards
        - profile_picture_permalink
        - region
        - skills
        - years_of_experience_raw
        - current_employers_object
      title: >-
        ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsProfile
    ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsRevealStatusEmail:
      type: object
      properties:
        revealed:
          type: boolean
        status:
          description: Any type
        values:
          type: array
          items:
            description: Any type
      required:
        - revealed
        - values
      title: >-
        ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsRevealStatusEmail
    ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsRevealStatusPhone:
      type: object
      properties:
        revealed:
          type: boolean
        status:
          description: Any type
        values:
          type: array
          items:
            description: Any type
      required:
        - revealed
        - values
      title: >-
        ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsRevealStatusPhone
    ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsRevealStatus:
      type: object
      properties:
        email:
          $ref: >-
            #/components/schemas/ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsRevealStatusEmail
        phone:
          $ref: >-
            #/components/schemas/ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsRevealStatusPhone
      required:
        - email
        - phone
      title: >-
        ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsRevealStatus
    ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItems:
      type: object
      properties:
        _id:
          type: string
        sourcingSessionId:
          type: string
        isSaved:
          type: boolean
        interestStatus:
          type: string
        profileAnalysis:
          $ref: >-
            #/components/schemas/ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsProfileAnalysis
        lastAnalysedAt:
          type: string
          format: date-time
        finalScore:
          type: integer
        batchKey:
          type: string
        addedFromAction:
          type: string
        reminderMetadata:
          description: Any type
        workspaceId:
          type: string
        __v:
          type: integer
        profile:
          $ref: >-
            #/components/schemas/ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsProfile
        revealStatus:
          $ref: >-
            #/components/schemas/ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItemsRevealStatus
        sequenceEnrollments:
          type: array
          items:
            description: Any type
      required:
        - _id
        - sourcingSessionId
        - isSaved
        - interestStatus
        - profileAnalysis
        - lastAnalysedAt
        - finalScore
        - batchKey
        - addedFromAction
        - workspaceId
        - __v
        - profile
        - revealStatus
        - sequenceEnrollments
      title: >-
        ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItems
    ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaData:
      type: object
      properties:
        docs:
          type: array
          items:
            $ref: >-
              #/components/schemas/ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaDataDocsItems
        totalDocs:
          type: integer
        limit:
          type: integer
        page:
          type: integer
        totalPages:
          type: integer
        serialNumberStartFrom:
          type: integer
        hasPrevPage:
          type: boolean
        hasNextPage:
          type: boolean
        prevPage:
          description: Any type
        nextPage:
          type: integer
      required:
        - docs
        - totalDocs
        - limit
        - page
        - totalPages
        - serialNumberStartFrom
        - hasPrevPage
        - hasNextPage
        - nextPage
      title: >-
        ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaData
    Sourcing Session_Get Profiles for Session_Response_200:
      type: object
      properties:
        statusCode:
          type: integer
        data:
          $ref: >-
            #/components/schemas/ApiV1WlSourcingSessionProfilesGetResponsesContentApplicationJsonSchemaData
        message:
          type: string
        status:
          type: string
      required:
        - statusCode
        - data
        - message
        - status
      title: Sourcing Session_Get Profiles for Session_Response_200
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-fj-api-key

```

## Examples



**Response**

```json
{
  "statusCode": 200,
  "data": {
    "docs": [
      {
        "_id": "69f4519dc8bbf1ce65b5bcef",
        "sourcingSessionId": "69f45196c8bbf1ce65b5bcd6",
        "isSaved": false,
        "interestStatus": "none",
        "profileAnalysis": {
          "analysis": {
            "keyStrengths": [
              {
                "observation": "Apoorv has solid experience as a .NET Developer, showcasing his ability to work on diverse projects.",
                "evidence": "He has worked at Keyideas Infotech as a .NET Developer and at Capgemini as an Analyst, contributing to significant projects."
              },
              {
                "observation": "Apoorv holds a Master's degree in Computer Applications, providing a strong foundation in software development.",
                "evidence": "He earned his MCA from Kalinga Institute of Industrial Technology, enhancing his technical skills."
              },
              {
                "observation": "Proficient in C#, Apoorv demonstrates strong backend development capabilities.",
                "evidence": "His experience includes backend development using C# and .NET Core at Bowne Global Solutions."
              },
              {
                "observation": "Apoorv is skilled in ASP.NET MVC, which is crucial for modern web application development.",
                "evidence": "He has hands-on experience with ASP.NET MVC during his tenure at Keyideas Infotech."
              },
              {
                "observation": "Apoorv has worked in the Information Technology & Services industry, gaining relevant domain experience.",
                "evidence": "His roles at Keyideas Infotech and Capgemini have provided him with insights into IT services."
              }
            ],
            "keyWeaknesses": []
          },
          "highlights": [
            {
              "Category": "SKILLS",
              "Highlight": "C#",
              "ReasonForHighlight": "Apoorv has demonstrated proficiency in C# through his work on various projects, including backend development at Bowne Global Solutions.",
              "Icon": "BULB"
            },
            {
              "Category": "SKILLS",
              "Highlight": "ASP.NET MVC",
              "ReasonForHighlight": "He has hands-on experience with ASP.NET MVC, particularly during his role at Keyideas Infotech, enhancing his web development skills.",
              "Icon": "BULB"
            },
            {
              "Category": "JOB_TITLE",
              "Highlight": ".NET Developer",
              "ReasonForHighlight": "Currently serving as a Software Engineer, Apoorv has previously held the title of .NET Developer, showcasing relevant experience.",
              "Icon": "BAG"
            },
            {
              "Category": "EXPERIENCE",
              "Highlight": "3 Years",
              "ReasonForHighlight": "Apoorv has accumulated 3 years of experience in software development, working with notable companies like Capgemini and Keyideas Infotech.",
              "Icon": "BAG"
            },
            {
              "Category": "INDUSTRY",
              "Highlight": "Information Technology & Services",
              "ReasonForHighlight": "Apoorv has relevant experience in the Information Technology & Services industry, contributing to various projects in this domain.",
              "Icon": "BAG"
            },
            {
              "Category": "EDUCATION",
              "Highlight": "MCA",
              "ReasonForHighlight": "Apoorv holds a Master's degree in Computer Applications, equipping him with essential skills for software development.",
              "Icon": "BULB"
            }
          ],
          "recommendation": "Apoorv is a strong fit for .NET development roles, showcasing solid experience and skills in C# and ASP.NET MVC. His educational background and industry experience further enhance his profile. I highly recommend him for opportunities in this field. 5/5"
        },
        "lastAnalysedAt": "2026-05-01T07:09:41.385Z",
        "finalScore": 5,
        "batchKey": "CREATED_BATCH",
        "addedFromAction": "created",
        "workspaceId": "69f0dd1da08d760844569ba4",
        "__v": 0,
        "profile": {
          "_id": "69f0ac066a65ab2b14d0bb1f",
          "emails": [],
          "lastFetchedAt": "2026-05-01T07:09:14.163Z",
          "linkedin_profile_url": "https://www.linkedin.com/in/ACoAADaHNx4BPCislnEueXs6Nq_HkSwDLFxyguI",
          "name": "Apoorv  Pratik",
          "open_to_cards": [],
          "profile_picture_permalink": "https://staging.api.futurejobs.ai/api/v1/static/4845bbccce43cdbe4074b1c9517caffe63f217d89dec721ad10f8748f45b2205.jpg",
          "region": "Pune District, Maharashtra, India",
          "skills": [
            "Order Management",
            "Data Quality",
            "Data Modeling",
            "Critical Thinking",
            "Business Process Management",
            "REST APIs",
            ".NET Core",
            "Troubleshooting",
            "Programming",
            "ASP.NET Web API",
            "Model-View-Controller (MVC)",
            "ASP.NET MVC",
            "ASP.NET",
            ".NET Framework",
            "Test Scripts",
            "User Acceptance Testing",
            "ServiceNow",
            "Process Architecture",
            "Functional Specifications",
            "Customer Satisfaction"
          ],
          "years_of_experience_raw": 3,
          "current_employers_object": [
            {
              "company_name": "Bowne Global Solutions",
              "company_website_domain": "lionbridge.com",
              "job_title": "Software Engineer",
              "company_linkedin_profile_url": "https://www.linkedin.com/company/lionbridge"
            }
          ]
        },
        "revealStatus": {
          "email": {
            "revealed": false,
            "values": []
          },
          "phone": {
            "revealed": false,
            "values": []
          }
        },
        "sequenceEnrollments": []
      },
      {
        "_id": "69f4519dc8bbf1ce65b5bcf6",
        "sourcingSessionId": "69f45196c8bbf1ce65b5bcd6",
        "isSaved": false,
        "interestStatus": "none",
        "profileAnalysis": {
          "analysis": {
            "keyStrengths": [
              {
                "observation": "Akanksha has a solid background as a .NET Developer, showcasing her expertise in software development.",
                "evidence": "Currently a Senior Associate .NET Developer at Medline India, she has 5 years of experience in the field."
              },
              {
                "observation": "Her experience at Cognizant highlights her ability to work in diverse roles within a leading IT company.",
                "evidence": "Worked as a Software Engineer and Programming Analyst at Cognizant for a total of 3 years."
              },
              {
                "observation": "Akanksha holds a degree in Information Technology, providing her with a strong educational foundation.",
                "evidence": "Graduated with a Bachelor of Engineering in Information Technology from Sanjivani College of Engineering in 2020."
              },
              {
                "observation": "She possesses essential skills in C#, which is critical for .NET development.",
                "evidence": "C# is listed among her skills, demonstrating her proficiency in this mandatory technology."
              },
              {
                "observation": "Her knowledge of ASP.NET MVC enhances her capabilities in building robust web applications.",
                "evidence": "ASP.NET MVC is included in her skill set, indicating her expertise in this core technology."
              },
              {
                "observation": "Akanksha is located in Pune, which aligns perfectly with the job's regional requirements.",
                "evidence": "She resides in Pune, Maharashtra, India, making her a suitable candidate for local opportunities."
              }
            ],
            "keyWeaknesses": []
          },
          "highlights": [
            {
              "Category": "SKILLS",
              "Highlight": "C#",
              "ReasonForHighlight": "Proficient in C#, a critical skill for .NET development, as evidenced by her current role and past experiences.",
              "Icon": "BULB"
            },
            {
              "Category": "SKILLS",
              "Highlight": "ASP.NET MVC",
              "ReasonForHighlight": "Expertise in ASP.NET MVC, which is essential for developing dynamic web applications, as shown in her skill set.",
              "Icon": "BULB"
            },
            {
              "Category": "JOB_TITLE",
              "Highlight": ".NET Developer",
              "ReasonForHighlight": "Currently serving as a Senior Associate .NET Developer at Medline India, showcasing her expertise in .NET technologies.",
              "Icon": "BAG"
            },
            {
              "Category": "EXPERIENCE",
              "Highlight": "5 Years",
              "ReasonForHighlight": "With 5 years of experience in software development, including roles at Cognizant, Akanksha brings valuable industry knowledge.",
              "Icon": "BAG"
            },
            {
              "Category": "LOCATION",
              "Highlight": "Pune, Maharashtra, India",
              "ReasonForHighlight": "Residing in Pune, she is well-positioned for local opportunities in the tech industry.",
              "Icon": "MISC"
            },
            {
              "Category": "EDUCATION",
              "Highlight": "Information Technology",
              "ReasonForHighlight": "Graduated with a Bachelor of Engineering in Information Technology from Sanjivani College of Engineering in 2020.",
              "Icon": "BULB"
            }
          ],
          "recommendation": "Akanksha is a strong fit for .NET development roles, bringing 5 years of experience and a solid educational background in Information Technology. Her current position as a Senior Associate .NET Developer at Medline India and proficiency in C# and ASP.NET MVC make her an excellent candidate. I highly recommend her for relevant opportunities. 5/5"
        },
        "lastAnalysedAt": "2026-05-01T07:09:39.283Z",
        "finalScore": 5,
        "batchKey": "CREATED_BATCH",
        "addedFromAction": "created",
        "workspaceId": "69f0dd1da08d760844569ba4",
        "__v": 0,
        "profile": {
          "_id": "69f0df836a65ab2b14d0be58",
          "emails": [],
          "lastFetchedAt": "2026-05-01T07:09:14.165Z",
          "linkedin_profile_url": "https://www.linkedin.com/in/ACoAACa5_O4BFPaaoHAYt-t7ofXCvYe6dRoQdwQ",
          "name": "Akanksha Hon",
          "open_to_cards": [],
          "profile_picture_permalink": "https://staging.api.futurejobs.ai/api/v1/static/cab0aea5d754892cd05380d722448cc746954eab67ddfdbe6d6589c99a24c82a.jpg",
          "region": "Pune, Maharashtra, India",
          "skills": [
            "microservices",
            "Microservices",
            "SQL",
            ".NET Core",
            "ASP.NET Core",
            "C#",
            "ASP.NET",
            "ASP.NET MVC",
            "ASP.NET Web API",
            ".NET Framework",
            "Python (Programming Language)",
            "C (Programming Language)",
            "C++",
            "HTML",
            "MySQL",
            "SAP ABAP",
            "Artificial Intelligence (AI)",
            "Machine Learning",
            "Deep Learning",
            "Convolutional Neural Networks (CNN)"
          ],
          "years_of_experience_raw": 5,
          "current_employers_object": [
            {
              "company_name": "Medline India",
              "company_website_domain": "medlineasia.com",
              "job_title": "Senior Associate .NET Developer",
              "company_linkedin_profile_url": "https://www.linkedin.com/company/medline-india"
            }
          ]
        },
        "revealStatus": {
          "email": {
            "revealed": false,
            "values": []
          },
          "phone": {
            "revealed": false,
            "values": []
          }
        },
        "sequenceEnrollments": []
      },
      {
        "_id": "69f4519dc8bbf1ce65b5bcec",
        "sourcingSessionId": "69f45196c8bbf1ce65b5bcd6",
        "isSaved": false,
        "interestStatus": "none",
        "profileAnalysis": {
          "analysis": {
            "keyStrengths": [
              {
                "observation": "Ravi has a solid background as a .NET Developer with relevant experience in software engineering roles.",
                "evidence": "Currently a Senior Software Engineer at Infosys, he has 2 years of experience there and previously worked as a Software Engineer."
              },
              {
                "observation": "He possesses strong technical skills in C# and ASP.NET MVC, essential for .NET development.",
                "evidence": "Ravi's skills include C# and ASP.NET MVC, which he has utilized in his roles at Infosys and Vagaro Technologies."
              },
              {
                "observation": "Ravi holds a Master's degree in Computer Applications, providing him with a strong theoretical foundation.",
                "evidence": "He earned his MCA from Sardar Patel University, completing it in January 2020."
              },
              {
                "observation": "His experience spans over 5 years, showcasing his commitment and growth in the IT industry.",
                "evidence": "Ravi has accumulated 5 years of experience, including roles at Infosys and Vagaro Technologies."
              },
              {
                "observation": "Ravi has worked in reputable IT companies, enhancing his professional exposure.",
                "evidence": "He has been employed at Infosys, a major player in IT Services and IT Consulting, and previously at Vagaro Technologies."
              }
            ],
            "keyWeaknesses": []
          },
          "highlights": [
            {
              "Category": "SKILLS",
              "Highlight": "C#",
              "ReasonForHighlight": "Ravi has demonstrated proficiency in C#, a critical skill for his role as a Senior Software Engineer at Infosys.",
              "Icon": "BULB"
            },
            {
              "Category": "SKILLS",
              "Highlight": "ASP.NET MVC",
              "ReasonForHighlight": "He has extensive experience with ASP.NET MVC, which he has applied in various projects during his tenure at Infosys.",
              "Icon": "BULB"
            },
            {
              "Category": "JOB_TITLE",
              "Highlight": ".NET Developer",
              "ReasonForHighlight": "Currently serving as a Senior Software Engineer, Ravi's role aligns perfectly with the .NET Developer position.",
              "Icon": "BAG"
            },
            {
              "Category": "EXPERIENCE",
              "Highlight": "5 Years",
              "ReasonForHighlight": "Ravi has 5 years of experience in software development, including significant roles at Infosys and Vagaro Technologies.",
              "Icon": "BAG"
            },
            {
              "Category": "INDUSTRY",
              "Highlight": "IT Services and IT Consulting",
              "ReasonForHighlight": "He has worked in the IT Services and IT Consulting industry, gaining valuable insights and experience.",
              "Icon": "BAG"
            },
            {
              "Category": "EDUCATION",
              "Highlight": "Master of Computer Applications",
              "ReasonForHighlight": "Ravi holds an MCA from Sardar Patel University, equipping him with advanced knowledge in computer applications.",
              "Icon": "BULB"
            }
          ],
          "recommendation": "Ravi is a strong fit for the .NET Developer role, showcasing solid experience and expertise in C# and ASP.NET MVC. His 5 years in the IT industry, particularly at Infosys, highlight his capability and readiness for this position. I highly recommend him for consideration. ★★★★☆"
        },
        "lastAnalysedAt": "2026-05-01T07:09:39.232Z",
        "finalScore": 5,
        "batchKey": "CREATED_BATCH",
        "addedFromAction": "created",
        "workspaceId": "69f0dd1da08d760844569ba4",
        "__v": 0,
        "profile": {
          "_id": "69f0df836a65ab2b14d0be55",
          "emails": [],
          "lastFetchedAt": "2026-05-01T07:09:14.163Z",
          "linkedin_profile_url": "https://www.linkedin.com/in/ACoAAB1LSKcBXNuGK1inJwelP2ySwc57ZOFGpOo",
          "name": "Ravi Shah",
          "open_to_cards": [],
          "profile_picture_permalink": "https://staging.api.futurejobs.ai/api/v1/static/e903f4563c2d49e42ed5b7db823dc327223139d43ae4aac5e665fead30f7c221.jpg",
          "region": "Pune, Maharashtra, India",
          "skills": [
            ".NET Core",
            "Web Services",
            "Windows Services",
            "Node.js",
            "Azure DevOps Server",
            "MongoDB",
            "Microservices",
            "ASP.NET MVC",
            "ASP.NET Web API",
            "Microsoft SQL Server",
            "Business Analysis",
            "Web Development",
            "Information Technology",
            "Analytical Skills",
            "Data Structures",
            "Architecture",
            "Algorithms",
            "Web Applications",
            "ASP.NET",
            ".NET Framework",
            "JavaScript",
            "jQuery",
            "c",
            "C++",
            "C#",
            "Java",
            "Communication",
            "Team Leadership",
            "Team Management",
            "Teamwork",
            "Management",
            "Leadership",
            "Management Systems"
          ],
          "years_of_experience_raw": 5,
          "current_employers_object": [
            {
              "company_name": "Infosys",
              "company_website_domain": "infosys.com",
              "job_title": "Senior Software Engineer",
              "company_linkedin_profile_url": "https://www.linkedin.com/company/infosys"
            }
          ]
        },
        "revealStatus": {
          "email": {
            "revealed": false,
            "values": []
          },
          "phone": {
            "revealed": false,
            "values": []
          }
        },
        "sequenceEnrollments": []
      },
      {
        "_id": "69f4519dc8bbf1ce65b5bcf3",
        "sourcingSessionId": "69f45196c8bbf1ce65b5bcd6",
        "isSaved": false,
        "interestStatus": "none",
        "profileAnalysis": {
          "analysis": {
            "keyStrengths": [
              {
                "observation": "Nitin has a solid background as a .NET Developer, showcasing his expertise in developing enterprise-level applications.",
                "evidence": "He has 4.5 years of experience at Tata Consultancy Services and Cognizant, focusing on .NET Core, ASP.NET MVC, and RESTful APIs."
              },
              {
                "observation": "His educational background in Electronics and Telecommunications provides a strong foundation for his technical skills.",
                "evidence": "Nitin holds a Bachelor of Engineering from Sinhgad Institute of Technology, completed in 2017."
              },
              {
                "observation": "Nitin possesses essential skills in C#, which is critical for .NET development roles.",
                "evidence": "He has hands-on experience with C# in both his current and past roles, developing robust applications."
              },
              {
                "observation": "He is proficient in ASP.NET MVC, a core technology for building dynamic web applications.",
                "evidence": "Nitin has utilized ASP.NET MVC extensively in his projects at both Tata Consultancy Services and Cognizant."
              },
              {
                "observation": "Nitin has worked in the IT Services and IT Consulting industry, gaining relevant experience.",
                "evidence": "His roles at Tata Consultancy Services and Cognizant Technology Solutions are within this industry."
              }
            ],
            "keyWeaknesses": []
          },
          "highlights": [
            {
              "Category": "SKILLS",
              "Highlight": "C#",
              "ReasonForHighlight": "Nitin has extensive experience with C#, developing enterprise-level applications at Tata Consultancy Services and Cognizant.",
              "Icon": "BULB"
            },
            {
              "Category": "SKILLS",
              "Highlight": "ASP.NET MVC",
              "ReasonForHighlight": "He has utilized ASP.NET MVC in multiple projects, showcasing his ability to build dynamic web applications.",
              "Icon": "BULB"
            },
            {
              "Category": "JOB_TITLE",
              "Highlight": ".NET Developer",
              "ReasonForHighlight": "Currently working as a .NET Developer at Cognizant, Nitin has a strong focus on backend development.",
              "Icon": "BAG"
            },
            {
              "Category": "EXPERIENCE",
              "Highlight": "4.5 Years",
              "ReasonForHighlight": "Nitin has 4.5 years of experience in software development, primarily in .NET technologies.",
              "Icon": "BAG"
            },
            {
              "Category": "INDUSTRY",
              "Highlight": "IT Services and IT Consulting",
              "ReasonForHighlight": "His experience in the IT Services and IT Consulting industry aligns well with current market demands.",
              "Icon": "BAG"
            },
            {
              "Category": "EDUCATION",
              "Highlight": "BE in Electronics and Telecommunications",
              "ReasonForHighlight": "Nitin holds a Bachelor of Engineering degree, providing a solid technical foundation for his career.",
              "Icon": "BULB"
            }
          ],
          "recommendation": "Nitin is a strong fit for .NET development roles, bringing 4.5 years of experience and expertise in C# and ASP.NET MVC. His background in IT Services and solid educational foundation make him a valuable asset. I highly recommend him for opportunities in this field. 5/5"
        },
        "lastAnalysedAt": "2026-05-01T07:09:39.211Z",
        "finalScore": 5,
        "batchKey": "CREATED_BATCH",
        "addedFromAction": "created",
        "workspaceId": "69f0dd1da08d760844569ba4",
        "__v": 0,
        "profile": {
          "_id": "69e1e8a9ffdef2003c8892c5",
          "emails": [],
          "lastFetchedAt": "2026-05-01T07:09:14.165Z",
          "linkedin_profile_url": "https://www.linkedin.com/in/ACoAACO5ps4BbDPE5wQhDLh6mUyCdeptDSZeU3w",
          "name": "Nitin Nagargoje",
          "open_to_cards": [
            "CAREER_INTEREST"
          ],
          "profile_picture_permalink": "https://staging.api.futurejobs.ai/api/v1/static/bb94087a7f4240a581404e951df632cd852955ba124fd69bf41aca3b70f53cd7.jpg",
          "region": "Pune City, Maharashtra, India",
          "skills": [
            "Entity Framework (EF) Core",
            "Entity Framework",
            "Web Services API",
            "Web api",
            "REST APIs",
            "CI/CD",
            "NUnit",
            "Moq",
            "JSON Web Token (JWT)",
            "DevOps",
            "RESTful WebServices",
            "Continuous Integration and Continuous Delivery (CI/CD)",
            "Azure DevOps Services",
            "ASP.NET Core",
            "ASP.Net Core MVC",
            "Rest Web API",
            ".NET Core",
            "ASP.NET Web API",
            ".net",
            "Requirements Analysis"
          ],
          "years_of_experience_raw": 4,
          "current_employers_object": [
            {
              "company_name": "Cognizant Technology Solutions",
              "company_website_domain": "cognizant.com",
              "job_title": ".NET Developer",
              "company_linkedin_profile_url": "https://www.linkedin.com/company/cognizant"
            }
          ]
        },
        "revealStatus": {
          "email": {
            "revealed": false,
            "values": []
          },
          "phone": {
            "revealed": false,
            "values": []
          }
        },
        "sequenceEnrollments": []
      },
      {
        "_id": "69f4519dc8bbf1ce65b5bceb",
        "sourcingSessionId": "69f45196c8bbf1ce65b5bcd6",
        "isSaved": false,
        "interestStatus": "none",
        "profileAnalysis": {
          "analysis": {
            "keyStrengths": [
              {
                "observation": "Roshni has solid experience as a .NET Developer, showcasing her ability to deliver effective software solutions.",
                "evidence": "Currently working at Infosys for 3 years, she has developed skills in .NET Core, C#, and ASP.NET MVC."
              },
              {
                "observation": "Her internship experiences have provided her with a strong foundation in software development.",
                "evidence": "Roshni interned at Info Origin Inc. and Bright Network, gaining practical skills in engineering and infrastructure."
              },
              {
                "observation": "Roshni holds a Bachelor of Engineering degree, equipping her with essential technical knowledge.",
                "evidence": "She graduated from G.H. Raisoni College of Engineering in 2022, specializing in Electronics and Telecommunications."
              },
              {
                "observation": "She possesses mandatory skills in C#, which are crucial for her role.",
                "evidence": "C# is prominently featured in her skill set, demonstrating her proficiency in this essential programming language."
              },
              {
                "observation": "Roshni is well-versed in ASP.NET MVC, a core technology for web application development.",
                "evidence": "Her expertise in ASP.NET MVC is highlighted in her summary, showcasing her capability in building robust applications."
              },
              {
                "observation": "She has experience in the IT Services and IT Consulting industry, aligning with her career focus.",
                "evidence": "Her current role at Infosys places her in a leading IT services company, enhancing her industry knowledge."
              }
            ],
            "keyWeaknesses": []
          },
          "highlights": [
            {
              "Category": "SKILLS",
              "Highlight": "C#",
              "ReasonForHighlight": "Roshni has demonstrated proficiency in C# through her work at Infosys, where she has developed various software solutions.",
              "Icon": "BULB"
            },
            {
              "Category": "SKILLS",
              "Highlight": "ASP.NET MVC",
              "ReasonForHighlight": "Her expertise in ASP.NET MVC is evident from her role as a .NET Developer, where she has successfully implemented web applications.",
              "Icon": "BULB"
            },
            {
              "Category": "JOB_TITLE",
              "Highlight": ".NET Developer",
              "ReasonForHighlight": "Currently serving as a .NET Developer at Infosys, Roshni has honed her skills in software development over the past three years.",
              "Icon": "BAG"
            },
            {
              "Category": "EXPERIENCE",
              "Highlight": "4 Years",
              "ReasonForHighlight": "With 4 years of experience in software development, Roshni has a solid background in delivering effective solutions.",
              "Icon": "BAG"
            },
            {
              "Category": "INDUSTRY",
              "Highlight": "IT Services and IT Consulting",
              "ReasonForHighlight": "Roshni's current role at Infosys places her in the IT Services and IT Consulting industry, enhancing her relevant experience.",
              "Icon": "BAG"
            },
            {
              "Category": "EDUCATION",
              "Highlight": "Bachelor of Engineering",
              "ReasonForHighlight": "Roshni holds a Bachelor of Engineering degree from G.H. Raisoni College of Engineering, providing her with a strong technical foundation.",
              "Icon": "BULB"
            }
          ],
          "recommendation": "Roshni is a strong fit for roles requiring .NET development expertise, with 4 years of experience and a solid educational background. Her proficiency in C# and ASP.NET MVC, along with her current role at Infosys, makes her a valuable asset. I highly recommend her for opportunities in software development. 5/5"
        },
        "lastAnalysedAt": "2026-05-01T07:09:38.693Z",
        "finalScore": 5,
        "batchKey": "CREATED_BATCH",
        "addedFromAction": "created",
        "workspaceId": "69f0dd1da08d760844569ba4",
        "__v": 0,
        "profile": {
          "_id": "69e8c06dffdef2003c891ee8",
          "emails": [],
          "lastFetchedAt": "2026-05-01T07:09:14.162Z",
          "linkedin_profile_url": "https://www.linkedin.com/in/ACoAAC8cSIYBSXQCmIL26WJi8jVzmNHkQewg8Pg",
          "name": "Roshni Sabhwani",
          "open_to_cards": [],
          "profile_picture_permalink": "https://staging.api.futurejobs.ai/api/v1/static/24d876cd4ac87a37d40e0557125d030acb0f35a730bf6c56c005acfc39a181ce.jpg",
          "region": "Pune District, Maharashtra, India",
          "skills": [
            ".NET Framework",
            "REST APIs",
            "AngularJS",
            "Microsoft SQL Server",
            "ASP.NET Web API",
            "C#",
            "ASP.NET MVC",
            "Azure fundamentals",
            "Java",
            "C (Programming Language)",
            "Web Development",
            "Cascading Style Sheets (CSS)",
            "HTML",
            "Bootstrap",
            "Microsoft Word",
            "Microsoft PowerPoint"
          ],
          "years_of_experience_raw": 4,
          "current_employers_object": [
            {
              "company_name": "Infosys",
              "company_website_domain": "infosys.com",
              "job_title": ".NET Developer",
              "company_linkedin_profile_url": "https://www.linkedin.com/company/infosys"
            }
          ]
        },
        "revealStatus": {
          "email": {
            "revealed": false,
            "values": []
          },
          "phone": {
            "revealed": false,
            "values": []
          }
        },
        "sequenceEnrollments": []
      },
      {
        "_id": "69f4519dc8bbf1ce65b5bce4",
        "sourcingSessionId": "69f45196c8bbf1ce65b5bcd6",
        "isSaved": false,
        "interestStatus": "none",
        "profileAnalysis": {
          "analysis": {
            "keyStrengths": [
              {
                "observation": "Sushmita has a solid background as a .NET Developer with extensive experience in various technologies.",
                "evidence": "Currently a Lead Software Developer at Persistent Systems, she has worked with ASP.NET, MVC, and APIs, showcasing her technical expertise."
              },
              {
                "observation": "Her experience at Globant as a .NET Developer demonstrates her ability to contribute effectively in a team environment.",
                "evidence": "Sushmita held two roles at Globant, including Jr. Adv .Net Developer, where she honed her skills in .NET technologies."
              },
              {
                "observation": "Sushmita's educational background in Computer Engineering provides her with a strong foundation in software development.",
                "evidence": "She graduated with a BE in Computer Engineering from Savitribai Phule Pune University, equipping her with essential technical knowledge."
              },
              {
                "observation": "Her proficiency in C# is a key asset for .NET development roles.",
                "evidence": "Sushmita lists C# among her skills, which is critical for her current and past roles in .NET development."
              },
              {
                "observation": "Sushmita is well-versed in ASP.NET MVC, a core technology for web application development.",
                "evidence": "She has practical experience with ASP.NET MVC, which she utilized in her projects at Persistent Systems."
              },
              {
                "observation": "Her experience in the IT Services and Consulting industry aligns well with the demands of software development roles.",
                "evidence": "Sushmita has worked in IT Services at Globant and Persistent Systems, gaining relevant industry experience."
              }
            ],
            "keyWeaknesses": []
          },
          "highlights": [
            {
              "Category": "SKILLS",
              "Highlight": "C#",
              "ReasonForHighlight": "Sushmita has demonstrated her proficiency in C# through her work as a Lead Software Developer at Persistent Systems, where she utilized this skill extensively.",
              "Icon": "BULB"
            },
            {
              "Category": "SKILLS",
              "Highlight": "ASP.NET MVC",
              "ReasonForHighlight": "Her hands-on experience with ASP.NET MVC at Persistent Systems showcases her capability in developing robust web applications.",
              "Icon": "BULB"
            },
            {
              "Category": "JOB_TITLE",
              "Highlight": ".NET Developer",
              "ReasonForHighlight": "Currently serving as a Lead Software Developer, Sushmita has a strong focus on .NET technologies, making her a suitable fit for .NET Developer roles.",
              "Icon": "BAG"
            },
            {
              "Category": "EXPERIENCE",
              "Highlight": "4 Years",
              "ReasonForHighlight": "With 4 years of experience in software development, including roles at Globant and Persistent Systems, Sushmita brings valuable expertise to her projects.",
              "Icon": "BAG"
            },
            {
              "Category": "INDUSTRY",
              "Highlight": "IT Services and IT Consulting",
              "ReasonForHighlight": "Sushmita has worked in the IT Services and Consulting industry, gaining relevant experience that enhances her understanding of client needs.",
              "Icon": "BAG"
            },
            {
              "Category": "EDUCATION",
              "Highlight": "Computer Engineering",
              "ReasonForHighlight": "Sushmita holds a BE in Computer Engineering from Savitribai Phule Pune University, providing her with a solid technical foundation.",
              "Icon": "BULB"
            }
          ],
          "recommendation": "Sushmita is a strong fit for .NET Developer roles, showcasing her expertise in C# and ASP.NET MVC, along with 4 years of relevant experience. Her current position as a Lead Software Developer at Persistent Systems further highlights her capabilities. I highly recommend her for opportunities in this field. 5/5"
        },
        "lastAnalysedAt": "2026-05-01T07:09:30.229Z",
        "finalScore": 5,
        "batchKey": "CREATED_BATCH",
        "addedFromAction": "created",
        "workspaceId": "69f0dd1da08d760844569ba4",
        "__v": 0,
        "profile": {
          "_id": "69f0df836a65ab2b14d0be51",
          "emails": [],
          "lastFetchedAt": "2026-05-01T07:09:14.162Z",
          "linkedin_profile_url": "https://www.linkedin.com/in/ACoAADDCd2ABxFHXyUxbHtWBsMhskL_iszLdV2E",
          "name": "Sushmita Gade",
          "open_to_cards": [],
          "profile_picture_permalink": "https://staging.api.futurejobs.ai/api/v1/static/493be492f04977c967930ede976b0140046e429dde2fd7ec47ae6cd258a3fe9f.jpg",
          "region": "Pune Division, Maharashtra, India",
          "skills": [
            "Entity Framework (EF) Core",
            "SQL",
            ".NET Core",
            "React.js",
            "Angular Material",
            "Angular",
            "REST APIs",
            ".NET Framework",
            "ASP.NET",
            "ASP.NET MVC",
            "ASP.NET Web API",
            "ASP.NET Core",
            "content writing",
            "C (Programming Language)",
            "C++",
            "java intermediate",
            "HTML5",
            "Cascading Style Sheets (CSS)",
            "DevOps",
            "Azure DevOps"
          ],
          "years_of_experience_raw": 4,
          "current_employers_object": [
            {
              "company_name": "Persistent Systems",
              "company_website_domain": "persistent.com",
              "job_title": "Lead Software Developer",
              "company_linkedin_profile_url": "https://www.linkedin.com/company/persistent-systems"
            }
          ]
        },
        "revealStatus": {
          "email": {
            "revealed": false,
            "values": []
          },
          "phone": {
            "revealed": false,
            "values": []
          }
        },
        "sequenceEnrollments": []
      },
      {
        "_id": "69f4519dc8bbf1ce65b5bce3",
        "sourcingSessionId": "69f45196c8bbf1ce65b5bcd6",
        "isSaved": false,
        "interestStatus": "none",
        "profileAnalysis": {
          "analysis": {
            "keyStrengths": [
              {
                "observation": "Nitish has a solid foundation in .NET development, showcasing his ability to work on various projects effectively.",
                "evidence": "He has over 6 years of experience as a Senior .NET Developer at Orient Technologies, focusing on enterprise-grade applications."
              },
              {
                "observation": "His experience as a Full-stack Developer demonstrates versatility in both front-end and back-end technologies.",
                "evidence": "Nitish worked at Medimaze Solutions, where he contributed to full-stack development for 2 years."
              },
              {
                "observation": "Nitish holds a degree in Mechanical Engineering, which adds a unique perspective to his technical skills.",
                "evidence": "He earned his B. TECH in Mechanical Engineering from Maharshi Dayanand University in 2017."
              },
              {
                "observation": "He possesses strong skills in C#, a critical requirement for .NET development roles.",
                "evidence": "C# is prominently featured in his headline and summary, highlighting his expertise."
              },
              {
                "observation": "His knowledge of ASP.NET MVC enhances his capability to develop robust web applications.",
                "evidence": "Nitish's skills include ASP.NET MVC, which he has utilized in various projects."
              },
              {
                "observation": "Nitish has experience in the Information Technology & Services industry, aligning well with the sector's demands.",
                "evidence": "He has worked in IT roles at companies like Reliance Jio and Medimaze Solutions."
              }
            ],
            "keyWeaknesses": []
          },
          "highlights": [
            {
              "Category": "SKILLS",
              "Highlight": "C#",
              "ReasonForHighlight": "Nitish has demonstrated strong proficiency in C# during his tenure as a Senior .NET Developer at Orient Technologies, contributing to various enterprise applications.",
              "Icon": "BULB"
            },
            {
              "Category": "SKILLS",
              "Highlight": "ASP.NET MVC",
              "ReasonForHighlight": "His expertise in ASP.NET MVC has been pivotal in developing scalable web applications, as seen in his projects at Medimaze Solutions.",
              "Icon": "BULB"
            },
            {
              "Category": "JOB_TITLE",
              "Highlight": ".NET Developer",
              "ReasonForHighlight": "Currently serving as a .NET Developer at Orient Technologies, Nitish is actively engaged in developing enterprise-grade applications.",
              "Icon": "BAG"
            },
            {
              "Category": "EXPERIENCE",
              "Highlight": "6+ Years",
              "ReasonForHighlight": "With over 6 years of experience in .NET development, Nitish has honed his skills in various technologies and project environments.",
              "Icon": "BAG"
            },
            {
              "Category": "INDUSTRY",
              "Highlight": "Information Technology & Services",
              "ReasonForHighlight": "Nitish has substantial experience in the Information Technology & Services sector, working with notable companies like Reliance Jio.",
              "Icon": "BAG"
            },
            {
              "Category": "EDUCATION",
              "Highlight": "B. TECH in Mechanical Engineering",
              "ReasonForHighlight": "Nitish holds a B. TECH in Mechanical Engineering from Maharshi Dayanand University, providing him with a strong analytical foundation.",
              "Icon": "BULB"
            }
          ],
          "recommendation": "Nitish is a strong fit for .NET development roles, showcasing over 6 years of experience and expertise in C# and ASP.NET MVC. His background in the IT sector and solid educational foundation further enhance his candidacy. I highly recommend him for opportunities in this field. 5/5"
        },
        "lastAnalysedAt": "2026-05-01T07:09:29.614Z",
        "finalScore": 5,
        "batchKey": "CREATED_BATCH",
        "addedFromAction": "created",
        "workspaceId": "69f0dd1da08d760844569ba4",
        "__v": 0,
        "profile": {
          "_id": "69f0df836a65ab2b14d0be50",
          "emails": [],
          "lastFetchedAt": "2026-05-01T07:09:14.162Z",
          "linkedin_profile_url": "https://www.linkedin.com/in/ACoAABHCo_QBpVGwA2m1RkGQy6dNsqsmqOjdJEc",
          "name": "Nitish kumar",
          "open_to_cards": [
            "CAREER_INTEREST"
          ],
          "profile_picture_permalink": "https://staging.api.futurejobs.ai/api/v1/static/774c14c7b77a42a6581cf6b870f67395b2c32021c129b4f1bc0bc926c2391824.jpg",
          "region": "Pune City, Maharashtra, India",
          "skills": [
            ".Net Core mvc",
            "Web Services",
            "Purchase Orders",
            "Manpower Handling",
            "Project Planning",
            "Entity Framework (EF) Core",
            "Core FTP",
            "TypeScript",
            "React",
            "Telerik Reporting",
            "SQL Store Procedure",
            "Excel Dashboards",
            "Crystal Reports",
            ".NET Core",
            "SQL Server Management Studio",
            "Model-View-Controller (MVC)",
            "HTML",
            "CSS",
            "Restful API",
            "SQL"
          ],
          "years_of_experience_raw": 5,
          "current_employers_object": [
            {
              "company_name": "Orient Technologies Pvt. Ltd.",
              "company_website_domain": "orientindia.in",
              "job_title": "Dotnet Developer",
              "company_linkedin_profile_url": "https://www.linkedin.com/company/orienttechnologies"
            }
          ]
        },
        "revealStatus": {
          "email": {
            "revealed": false,
            "values": []
          },
          "phone": {
            "revealed": false,
            "values": []
          }
        },
        "sequenceEnrollments": []
      },
      {
        "_id": "69f4519dc8bbf1ce65b5bce1",
        "sourcingSessionId": "69f45196c8bbf1ce65b5bcd6",
        "isSaved": false,
        "interestStatus": "none",
        "profileAnalysis": {
          "analysis": {
            "keyStrengths": [
              {
                "observation": "Hrithik has a solid foundation in software development with a focus on .NET technologies.",
                "evidence": "Currently working as a .NET Developer at Montcrest Software Pvt. Ltd. for over a year, applying skills in C# and ASP.NET MVC."
              },
              {
                "observation": "Hrithik's educational background in Computer Science enhances his technical capabilities.",
                "evidence": "Pursuing a Master of Science in Computer Science at Vishwakarma College, expected to graduate in January 2024."
              },
              {
                "observation": "Proficient in essential programming languages and frameworks, showcasing versatility in development.",
                "evidence": "Skilled in C#, ASP.NET MVC, and other technologies like React.js and Angular, contributing to diverse projects."
              },
              {
                "observation": "Strong analytical skills complement his programming expertise, aiding in problem-solving.",
                "evidence": "Demonstrated through academic projects and coursework in Data Structures and Back-End Web Development."
              },
              {
                "observation": "Hrithik is dedicated to continuous learning and skill improvement.",
                "evidence": "Expressed commitment to gaining new skills and enhancing performance in the IT field."
              }
            ],
            "keyWeaknesses": []
          },
          "highlights": [
            {
              "Category": "SKILLS",
              "Highlight": "C#",
              "ReasonForHighlight": "Demonstrated proficiency in C# while working as a .NET Developer at Montcrest Software Pvt. Ltd.",
              "Icon": "BULB"
            },
            {
              "Category": "SKILLS",
              "Highlight": "ASP.NET MVC",
              "ReasonForHighlight": "Utilized ASP.NET MVC in projects at Montcrest Software, showcasing strong web development capabilities.",
              "Icon": "BULB"
            },
            {
              "Category": "JOB_TITLE",
              "Highlight": ".NET Developer",
              "ReasonForHighlight": "Currently serving as a .NET Developer, gaining hands-on experience in software development.",
              "Icon": "BAG"
            },
            {
              "Category": "INDUSTRY",
              "Highlight": "IT Services and IT Consulting",
              "ReasonForHighlight": "Experience in the IT Services and Consulting industry through current role at Montcrest Software.",
              "Icon": "BAG"
            },
            {
              "Category": "EDUCATION",
              "Highlight": "Master of Science in Computer Science",
              "ReasonForHighlight": "Pursuing a Master's degree, providing a strong theoretical foundation in IT and software development.",
              "Icon": "BULB"
            }
          ],
          "recommendation": "Hrithik is a promising .NET Developer with a solid foundation in C# and ASP.NET MVC, currently gaining valuable experience at Montcrest Software. His ongoing education in Computer Science further enhances his capabilities, making him a strong fit for roles in software development. I would rate him 4.5/5."
        },
        "lastAnalysedAt": "2026-05-01T07:09:27.258Z",
        "finalScore": 5,
        "batchKey": "CREATED_BATCH",
        "addedFromAction": "created",
        "workspaceId": "69f0dd1da08d760844569ba4",
        "__v": 0,
        "profile": {
          "_id": "69f0ac066a65ab2b14d0bb14",
          "emails": [],
          "lastFetchedAt": "2026-05-01T07:09:14.161Z",
          "linkedin_profile_url": "https://www.linkedin.com/in/ACoAAEHN_2cBYaoaCCTCby_zYy040dPJg56-XQ0",
          "name": "Hrithik  Gopale",
          "open_to_cards": [
            "CAREER_INTEREST"
          ],
          "profile_picture_permalink": "https://staging.api.futurejobs.ai/api/v1/static/f34b6946bc2727346475b6f394570718d98cb0f2dd2ee308a71d10d711c770ff.jpg",
          "region": "Pune District, Maharashtra, India",
          "skills": [
            "C#",
            "sql server",
            "ASP.NET",
            "ASP.NET MVC",
            "ASP.NET Web API",
            "React.js",
            "Bootstrap (Framework)",
            "HTML",
            "Computer Science",
            "Back-End Web Development",
            "Data Structures",
            "Analytical Skills",
            "Web Development",
            "Core Java",
            "Spring Framework",
            "Hibernate",
            "Spring Boot",
            "css3",
            "TypeScript",
            "Angular"
          ],
          "years_of_experience_raw": 1,
          "current_employers_object": [
            {
              "company_name": "Montcrest Software Pvt. Ltd.",
              "company_website_domain": "montcrestsoftware.com",
              "job_title": ".NET Developer",
              "company_linkedin_profile_url": "https://www.linkedin.com/company/montcrest-software-pvt-ltd"
            }
          ]
        },
        "revealStatus": {
          "email": {
            "revealed": false,
            "values": []
          },
          "phone": {
            "revealed": false,
            "values": []
          }
        },
        "sequenceEnrollments": []
      },
      {
        "_id": "69f4519dc8bbf1ce65b5bced",
        "sourcingSessionId": "69f45196c8bbf1ce65b5bcd6",
        "isSaved": false,
        "interestStatus": "none",
        "profileAnalysis": {
          "analysis": {
            "keyStrengths": [
              {
                "observation": "Chaitanya has solid experience as a .NET Developer, showcasing expertise in key technologies.",
                "evidence": "Currently working at Capgemini for over 4 years, focusing on .NET development and related technologies."
              },
              {
                "observation": "Chaitanya's educational background in Mechanical Engineering provides a strong analytical foundation.",
                "evidence": "Graduated with a Bachelor of Engineering from Imperial College Of Engineering and Research in 2020."
              },
              {
                "observation": "Proficient in C#, a critical skill for .NET development, enhancing his technical capabilities.",
                "evidence": "C# is prominently featured in his skills and current role at Capgemini."
              },
              {
                "observation": "Experienced in ASP.NET MVC, which is essential for modern web application development.",
                "evidence": "ASP.NET MVC is listed among his skills and utilized in his current projects."
              },
              {
                "observation": "Chaitanya has a strong background in the IT Services and Consulting industry.",
                "evidence": "All his roles have been at Capgemini, a leading company in IT Services."
              }
            ],
            "keyWeaknesses": [
              {
                "observation": "Refinement identified in Past Similar Roles based on the role requirements",
                "evidence": "Profile did not explicitly confirm all requirements for this category."
              }
            ]
          },
          "highlights": [
            {
              "Category": "SKILLS",
              "Highlight": "C#",
              "ReasonForHighlight": "Chaitanya has extensive experience with C#, demonstrated through his role as a .NET Developer at Capgemini, where he has applied this skill in various projects.",
              "Icon": "BULB"
            },
            {
              "Category": "SKILLS",
              "Highlight": "ASP.NET MVC",
              "ReasonForHighlight": "He is proficient in ASP.NET MVC, which he has utilized in his current position to develop robust web applications.",
              "Icon": "BULB"
            },
            {
              "Category": "JOB_TITLE",
              "Highlight": ".NET Developer",
              "ReasonForHighlight": "Currently serving as a .NET Developer at Capgemini, Chaitanya has honed his skills in software development over the past 4 years.",
              "Icon": "BAG"
            },
            {
              "Category": "INDUSTRY",
              "Highlight": "IT Services and IT Consulting",
              "ReasonForHighlight": "Chaitanya has built his career in the IT Services and Consulting industry, gaining valuable experience at Capgemini.",
              "Icon": "BAG"
            },
            {
              "Category": "EDUCATION",
              "Highlight": "Mechanical Engineering",
              "ReasonForHighlight": "Chaitanya holds a Bachelor of Engineering in Mechanical Engineering from Imperial College Of Engineering and Research, providing a strong technical foundation.",
              "Icon": "BULB"
            }
          ],
          "recommendation": "Chaitanya is a strong fit for .NET development roles, showcasing 4 years of experience as a .NET Developer at Capgemini, along with solid skills in C# and ASP.NET MVC. I highly recommend him for opportunities in this field. 5/5"
        },
        "lastAnalysedAt": "2026-05-01T07:09:38.813Z",
        "finalScore": 1,
        "batchKey": "CREATED_BATCH",
        "addedFromAction": "created",
        "workspaceId": "69f0dd1da08d760844569ba4",
        "__v": 0,
        "profile": {
          "_id": "69f0ac066a65ab2b14d0bb1c",
          "emails": [],
          "lastFetchedAt": "2026-05-01T07:09:14.163Z",
          "linkedin_profile_url": "https://www.linkedin.com/in/ACoAADNym60BKEialLtoPpEenz7LnCVl4vE-JqA",
          "name": "Chaitanya Naikwadi",
          "open_to_cards": [],
          "profile_picture_permalink": "https://staging.api.futurejobs.ai/api/v1/static/f6277990a99f17e2aedc37ae08ade8758f7176aa16f12e6ff40f802e1b6072f3.jpg",
          "region": "Pune Division, Maharashtra, India",
          "skills": [
            "ASP.NET Web API",
            ".Net Core MVC",
            "Entity Framework (EF) Core",
            "Microsoft SQL Server",
            "Entity Framework",
            "ADO.NET",
            "HTML5",
            "Cascading Style Sheets (CSS)",
            "ASP.NET MVC",
            "C#"
          ],
          "years_of_experience_raw": 4,
          "current_employers_object": [
            {
              "company_name": "Capgemini",
              "company_website_domain": "capgemini.com",
              "job_title": ".NET Developer",
              "company_linkedin_profile_url": "https://www.linkedin.com/company/capgemini"
            },
            {
              "company_name": "Capgemini",
              "company_website_domain": "capgemini.com",
              "job_title": "Associate Consultant",
              "company_linkedin_profile_url": "https://www.linkedin.com/company/capgemini"
            }
          ]
        },
        "revealStatus": {
          "email": {
            "revealed": false,
            "values": []
          },
          "phone": {
            "revealed": false,
            "values": []
          }
        },
        "sequenceEnrollments": []
      },
      {
        "_id": "69f4519dc8bbf1ce65b5bce9",
        "sourcingSessionId": "69f45196c8bbf1ce65b5bcd6",
        "isSaved": false,
        "interestStatus": "none",
        "profileAnalysis": {
          "analysis": {
            "keyStrengths": [
              {
                "observation": "SNEHIL has solid experience as a .NET Developer, showcasing expertise in both development and problem-solving.",
                "evidence": "Currently working as a .NET Core Developer at Infosys, with a total of 3 years of experience in software development."
              },
              {
                "observation": "SNEHIL has a strong foundation in Computer Science, which enhances their technical capabilities.",
                "evidence": "Graduated with a Bachelor of Technology in Computer Science from Chitkara University in 2022."
              },
              {
                "observation": "Proficient in C#, a critical skill for .NET development, ensuring effective software solutions.",
                "evidence": "C# is listed among SNEHIL's key skills, demonstrating their technical proficiency."
              },
              {
                "observation": "Experienced in ASP.NET MVC, a core technology for web application development.",
                "evidence": "ASP.NET MVC is highlighted in SNEHIL's skills, indicating hands-on experience in this framework."
              },
              {
                "observation": "SNEHIL has worked in the IT Services and IT Consulting industry, gaining relevant experience.",
                "evidence": "Previously employed at Walter P Moore, contributing to engineering services in a professional setting."
              }
            ],
            "keyWeaknesses": [
              {
                "observation": "Refinement identified in Past Similar Roles based on the role requirements",
                "evidence": "Profile did not explicitly confirm all requirements for this category."
              }
            ]
          },
          "highlights": [
            {
              "Category": "SKILLS",
              "Highlight": "C#",
              "ReasonForHighlight": "Demonstrated proficiency in C# while working as a .NET Core Developer at Infosys, contributing to various software projects.",
              "Icon": "BULB"
            },
            {
              "Category": "SKILLS",
              "Highlight": "ASP.NET MVC",
              "ReasonForHighlight": "Hands-on experience with ASP.NET MVC, utilized in developing web applications during tenure at Infosys.",
              "Icon": "BULB"
            },
            {
              "Category": "JOB_TITLE",
              "Highlight": ".NET Developer",
              "ReasonForHighlight": "Currently serving as a .NET Core Developer at Infosys, showcasing relevant experience in the field.",
              "Icon": "BAG"
            },
            {
              "Category": "EXPERIENCE",
              "Highlight": "3 Years",
              "ReasonForHighlight": "Accumulated 3 years of experience in software development, including a role at Walter P Moore.",
              "Icon": "BAG"
            },
            {
              "Category": "INDUSTRY",
              "Highlight": "IT Services and IT Consulting",
              "ReasonForHighlight": "Experience in the IT Services and IT Consulting industry, enhancing SNEHIL's understanding of client needs.",
              "Icon": "BAG"
            },
            {
              "Category": "EDUCATION",
              "Highlight": "Computer Science",
              "ReasonForHighlight": "Bachelor of Technology in Computer Science from Chitkara University, providing a strong technical foundation.",
              "Icon": "BULB"
            }
          ],
          "recommendation": "SNEHIL is a strong fit for .NET Developer roles, showcasing solid experience in C# and ASP.NET MVC, along with a relevant educational background. With 3 years of experience in the IT industry, SNEHIL is well-prepared to contribute effectively. 4.5/5"
        },
        "lastAnalysedAt": "2026-05-01T07:09:38.092Z",
        "finalScore": 1,
        "batchKey": "CREATED_BATCH",
        "addedFromAction": "created",
        "workspaceId": "69f0dd1da08d760844569ba4",
        "__v": 0,
        "profile": {
          "_id": "69f0df836a65ab2b14d0be54",
          "emails": [],
          "lastFetchedAt": "2026-05-01T07:09:14.162Z",
          "linkedin_profile_url": "https://www.linkedin.com/in/ACoAADOs6C4BSB7dXd572DtXM-Iqj_oNoXDn2Tw",
          "name": "SNEHIL SHARMA",
          "open_to_cards": [],
          "profile_picture_permalink": "https://staging.api.futurejobs.ai/api/v1/static/ce0caadc61b4c8830d476e28e9095735f0ebd472be0a7225bfe7d2bc8692de45.jpg",
          "region": "Pune, Maharashtra, India",
          "skills": [
            ".NET Core",
            "Microservices",
            "REST APIs",
            "Windows Presentation Foundation (WPF)",
            "ASP.NET MVC",
            ".NET Framework",
            "C#",
            "Software Development",
            "Web Application Development",
            "MERN Stack",
            "Core Java",
            "MySQL",
            "Communication",
            "Teamwork",
            "Operating Systems",
            "HTML5",
            "React.js",
            "Application Development",
            "Java",
            "Web Applications",
            "Software",
            "Computer Science",
            "Problem Solving",
            "Critical Thinking",
            "System Dynamics",
            "HTML",
            "Cascading Style Sheets (CSS)",
            "JavaScript",
            "SQL",
            "jQuery"
          ],
          "years_of_experience_raw": 3,
          "current_employers_object": [
            {
              "company_name": "Infosys",
              "company_website_domain": "infosys.com",
              "job_title": ".NET Core Developer",
              "company_linkedin_profile_url": "https://www.linkedin.com/company/infosys"
            }
          ]
        },
        "revealStatus": {
          "email": {
            "revealed": false,
            "values": []
          },
          "phone": {
            "revealed": false,
            "values": []
          }
        },
        "sequenceEnrollments": []
      },
      {
        "_id": "69f4519dc8bbf1ce65b5bcdf",
        "sourcingSessionId": "69f45196c8bbf1ce65b5bcd6",
        "isSaved": false,
        "interestStatus": "none",
        "profileAnalysis": {
          "analysis": {
            "keyStrengths": [
              {
                "observation": "Hareshwar has a solid foundation in .NET development, showcasing his ability to build web applications effectively.",
                "evidence": "Currently working as a Full-stack Developer at DASP Digital, focusing on .NET Core MVC and Web API applications."
              },
              {
                "observation": "His experience as a Technical Support Engineer has equipped him with strong problem-solving skills and technical knowledge.",
                "evidence": "Worked at Valisha Technologies, where he provided technical support and solutions for software issues."
              },
              {
                "observation": "Hareshwar holds a Bachelor of Technology in Computer Engineering, providing him with a strong educational background.",
                "evidence": "Graduated from Dr. Babasaheb Ambedkar Technological University, specializing in Computer Engineering."
              },
              {
                "observation": "He is proficient in C#, a critical skill for .NET development, enhancing his programming capabilities.",
                "evidence": "C# is listed among his skills, demonstrating his readiness for .NET development roles."
              },
              {
                "observation": "His knowledge of ASP.NET MVC allows him to create dynamic web applications and services.",
                "evidence": "ASP.NET MVC is highlighted in his skills, indicating his expertise in this framework."
              }
            ],
            "keyWeaknesses": [
              {
                "observation": "Refinement identified in Past Similar Roles based on the role requirements",
                "evidence": "Profile did not explicitly confirm all requirements for this category."
              }
            ]
          },
          "highlights": [
            {
              "Category": "SKILLS",
              "Highlight": "C#",
              "ReasonForHighlight": "Proficient in C#, essential for developing robust .NET applications, as demonstrated in his current role.",
              "Icon": "BULB"
            },
            {
              "Category": "SKILLS",
              "Highlight": "ASP.NET MVC",
              "ReasonForHighlight": "Expertise in ASP.NET MVC enables him to build dynamic web applications, showcased in his work at DASP Digital.",
              "Icon": "BULB"
            },
            {
              "Category": "JOB_TITLE",
              "Highlight": ".NET Developer",
              "ReasonForHighlight": "Currently serving as a Full-stack Developer specializing in .NET Core, aligning with the .NET Developer role.",
              "Icon": "BAG"
            },
            {
              "Category": "EXPERIENCE",
              "Highlight": "2 Years",
              "ReasonForHighlight": "Brings 2 years of experience in software development, including technical support and full-stack development.",
              "Icon": "BAG"
            },
            {
              "Category": "EDUCATION",
              "Highlight": "Bachelor of Technology - BTech",
              "ReasonForHighlight": "Holds a BTech in Computer Engineering, providing a strong technical foundation for software development.",
              "Icon": "BULB"
            }
          ],
          "recommendation": "Hareshwar is a strong fit for .NET development roles, showcasing solid skills in C# and ASP.NET MVC, along with relevant experience. His educational background further supports his technical capabilities. I highly recommend him for opportunities in this field. 4.5/5"
        },
        "lastAnalysedAt": "2026-05-01T07:09:28.658Z",
        "finalScore": 1,
        "batchKey": "CREATED_BATCH",
        "addedFromAction": "created",
        "workspaceId": "69f0dd1da08d760844569ba4",
        "__v": 0,
        "profile": {
          "_id": "69f0df836a65ab2b14d0be4e",
          "emails": [],
          "lastFetchedAt": "2026-05-01T07:09:14.161Z",
          "linkedin_profile_url": "https://www.linkedin.com/in/ACoAADK-70QB3GVinyS3zOA61di0hOhq-D32kPA",
          "name": "Hareshwar Patil",
          "open_to_cards": [],
          "profile_picture_permalink": "https://staging.api.futurejobs.ai/api/v1/static/0f46c3ee157cde1e6a1352e98eedc236160dfdd7c4bffde95b04355c8d9cc032.jpg",
          "region": "Pune Division, Maharashtra, India",
          "skills": [
            "ASP.NET Core",
            "Technical Support",
            "Microsoft SQL Server",
            "ASP.NET",
            "ASP.NET MVC",
            "AngularJS",
            "JavaScript",
            "Java",
            "Cascading Style Sheets (CSS)",
            "HTML5",
            "C (Programming Language)",
            "Data Management",
            "Web Design",
            "Full-Stack Development",
            "Android Development",
            "Cloud Computing",
            "Problem Solving",
            "Career Management",
            "Graphic Design",
            "Microsoft PowerPoint",
            "Microsoft Word",
            "Programming",
            "Python (Programming Language)",
            "SQL",
            "Database Administration",
            "Database Design",
            "Database Development",
            "Front-end Development",
            "HTML"
          ],
          "years_of_experience_raw": 2,
          "current_employers_object": [
            {
              "company_name": "DASP Digital",
              "company_website_domain": "",
              "job_title": "Full-stack Developer(.Net Core)",
              "company_linkedin_profile_url": ""
            },
            {
              "company_name": "Self-employed",
              "company_website_domain": "",
              "job_title": "Freelance Software Engineer",
              "company_linkedin_profile_url": ""
            }
          ]
        },
        "revealStatus": {
          "email": {
            "revealed": false,
            "values": []
          },
          "phone": {
            "revealed": false,
            "values": []
          }
        },
        "sequenceEnrollments": []
      },
      {
        "_id": "69f4519dc8bbf1ce65b5bcde",
        "sourcingSessionId": "69f45196c8bbf1ce65b5bcd6",
        "isSaved": false,
        "interestStatus": "none",
        "profileAnalysis": {
          "analysis": {
            "keyStrengths": [
              {
                "observation": "Gaurika has solid experience as a .NET Developer, showcasing her ability to build scalable applications.",
                "evidence": "Currently working as a Full Stack Developer at cloud9technologies, she has hands-on experience in C# and the .NET ecosystem."
              },
              {
                "observation": "Her background includes a relevant past role in a reputable company, enhancing her practical knowledge.",
                "evidence": "Worked as an Assistant Executive at KF Bioplants Pvt Ltd for 2 years, gaining valuable experience in a professional setting."
              },
              {
                "observation": "Gaurika holds a degree in Biotechnology, which adds a unique perspective to her technical skills.",
                "evidence": "Graduated with a degree in Biotechnology from K K WAGH COLLEGE, providing her with a strong analytical foundation."
              },
              {
                "observation": "She possesses essential skills in C#, a critical requirement for her current role.",
                "evidence": "C# is prominently featured in her skill set, demonstrating her proficiency in this mandatory technology."
              },
              {
                "observation": "Gaurika is well-versed in ASP.NET MVC, a core technology for web development.",
                "evidence": "Her summary highlights experience with ASP.NET MVC, showcasing her capability in this area."
              },
              {
                "observation": "Her experience in the Information Technology sector aligns well with her current role.",
                "evidence": "Currently employed in the Information Technology & Services industry at cloud9technologies."
              }
            ],
            "keyWeaknesses": [
              {
                "observation": "Refinement identified in Past Similar Roles based on the role requirements",
                "evidence": "Profile did not explicitly confirm all requirements for this category."
              }
            ]
          },
          "highlights": [
            {
              "Category": "SKILLS",
              "Highlight": "C#",
              "ReasonForHighlight": "Gaurika has strong proficiency in C#, demonstrated through her current role as a Full Stack Developer at cloud9technologies.",
              "Icon": "BULB"
            },
            {
              "Category": "SKILLS",
              "Highlight": "ASP.NET MVC",
              "ReasonForHighlight": "Her experience with ASP.NET MVC is evident from her work as a Full Stack Developer, where she utilizes this technology extensively.",
              "Icon": "BULB"
            },
            {
              "Category": "JOB_TITLE",
              "Highlight": ".NET Developer",
              "ReasonForHighlight": "Gaurika's current title as a Full Stack Developer directly reflects her expertise in .NET technologies.",
              "Icon": "BAG"
            },
            {
              "Category": "EXPERIENCE",
              "Highlight": "2 Years",
              "ReasonForHighlight": "She has 2 years of relevant experience as an Assistant Executive at KF Bioplants Pvt Ltd, contributing to her skill development.",
              "Icon": "BAG"
            },
            {
              "Category": "INDUSTRY",
              "Highlight": "Information Technology & Services",
              "ReasonForHighlight": "Currently working in the Information Technology & Services sector, Gaurika is well-positioned in her field.",
              "Icon": "BAG"
            },
            {
              "Category": "EDUCATION",
              "Highlight": "Biotechnology",
              "ReasonForHighlight": "Gaurika holds a degree in Biotechnology, which enhances her analytical skills and technical knowledge.",
              "Icon": "BULB"
            }
          ],
          "recommendation": "Gaurika is a strong match for .NET Developer roles, showcasing her solid experience in C# and ASP.NET MVC. With 2 years of relevant experience and a degree in Biotechnology, she brings a unique perspective to her work. I highly recommend her for opportunities in this field. 5/5"
        },
        "lastAnalysedAt": "2026-05-01T07:09:27.670Z",
        "finalScore": 1,
        "batchKey": "CREATED_BATCH",
        "addedFromAction": "created",
        "workspaceId": "69f0dd1da08d760844569ba4",
        "__v": 0,
        "profile": {
          "_id": "69f09ddb6a65ab2b14d0ba0c",
          "emails": [],
          "lastFetchedAt": "2026-05-01T07:09:14.161Z",
          "linkedin_profile_url": "https://www.linkedin.com/in/ACoAADFuBJoB_qJ04RCSF5I98ipvwykpO3wCgnk",
          "name": "Gaurika Patare 💎",
          "open_to_cards": [],
          "profile_picture_permalink": "https://staging.api.futurejobs.ai/api/v1/static/03980251f67a2762b652723dbd6b378da2ac38eb0916f402b4a47374c3677226.jpg",
          "region": "Pune District, Maharashtra, India",
          "skills": [
            "ML.NET",
            "Amazon VPC",
            "ASP.NET AJAX",
            "Stripe in ASP.NET - C# | Payment Gateway Integration",
            "Basics of AI",
            "Basics of ML",
            "Basics of Deep learning",
            "Data Analysis",
            "Business Analysis",
            "Analytics",
            "C#",
            ".NET Framework",
            "Enterprise Resource Planning (ERP)",
            "Cascading Style Sheets (CSS)",
            "HTML Scripting",
            "MongoDB",
            "MySQL",
            "React.js",
            "JavaScript",
            "Core Java"
          ],
          "years_of_experience_raw": 3,
          "current_employers_object": [
            {
              "company_name": "cloud9technologies",
              "company_website_domain": "pmtrackerp.in",
              "job_title": "Full Stack Developer (C#.Net)",
              "company_linkedin_profile_url": "https://www.linkedin.com/company/cloud9technologies"
            }
          ]
        },
        "revealStatus": {
          "email": {
            "revealed": false,
            "values": []
          },
          "phone": {
            "revealed": false,
            "values": []
          }
        },
        "sequenceEnrollments": []
      },
      {
        "_id": "69f4519dc8bbf1ce65b5bce6",
        "sourcingSessionId": "69f45196c8bbf1ce65b5bcd6",
        "isSaved": false,
        "interestStatus": "none",
        "profileAnalysis": {
          "analysis": {
            "keyStrengths": [
              {
                "observation": "smt has solid experience as a .NET Developer, showcasing proficiency in essential technologies.",
                "evidence": "Worked for 3 years at Accenture as a .NET Developer, contributing to various software projects."
              },
              {
                "observation": "Proficient in C#, a critical skill for .NET development, enhancing software functionality.",
                "evidence": "C# is listed among smt's skills, demonstrating capability in this essential programming language."
              },
              {
                "observation": "Experienced in ASP.NET MVC, a key framework for building dynamic web applications.",
                "evidence": "ASP.NET MVC is highlighted in smt's skills, indicating hands-on experience with this framework."
              },
              {
                "observation": "smt is located in Pune, aligning perfectly with the job's regional requirements.",
                "evidence": "Currently resides in Pune, Maharashtra, India, matching the specified location."
              },
              {
                "observation": "smt has a strong background in software development, particularly in a reputable company.",
                "evidence": "Employed at Amazon and Accenture, both leaders in the technology and consulting sectors."
              }
            ],
            "keyWeaknesses": [
              {
                "observation": "Refinement identified in Past Similar Roles based on the role requirements",
                "evidence": "Profile did not explicitly confirm all requirements for this category."
              }
            ]
          },
          "highlights": [
            {
              "Category": "SKILLS",
              "Highlight": "C#",
              "ReasonForHighlight": "Demonstrated proficiency in C# while working as a .NET Developer at Accenture, contributing to various software projects.",
              "Icon": "BULB"
            },
            {
              "Category": "SKILLS",
              "Highlight": "ASP.NET MVC",
              "ReasonForHighlight": "Hands-on experience with ASP.NET MVC, essential for developing dynamic web applications during tenure at Accenture.",
              "Icon": "BULB"
            },
            {
              "Category": "JOB_TITLE",
              "Highlight": ".NET Developer",
              "ReasonForHighlight": "Served as a .NET Developer at Accenture, gaining valuable experience in software development.",
              "Icon": "BAG"
            },
            {
              "Category": "LOCATION",
              "Highlight": "Pune, Maharashtra, India",
              "ReasonForHighlight": "Currently based in Pune, aligning with the job's location requirements.",
              "Icon": "BAG"
            },
            {
              "Category": "INDUSTRY",
              "Highlight": "Software Development",
              "ReasonForHighlight": "Experience in the software development industry through roles at Amazon and Accenture, both leaders in technology.",
              "Icon": "BAG"
            }
          ],
          "recommendation": "smt is a strong fit for the .NET Developer role, showcasing solid experience and proficiency in C# and ASP.NET MVC. With a background at reputable companies like Accenture, smt brings valuable skills to the table. Rating: 4.5/5."
        },
        "lastAnalysedAt": "2026-05-01T07:09:27.358Z",
        "finalScore": 1,
        "batchKey": "CREATED_BATCH",
        "addedFromAction": "created",
        "workspaceId": "69f0dd1da08d760844569ba4",
        "__v": 0,
        "profile": {
          "_id": "69ecad086a65ab2b14d08092",
          "emails": [],
          "lastFetchedAt": "2026-05-01T07:09:14.162Z",
          "linkedin_profile_url": "https://www.linkedin.com/in/ACoAADhViwEBh87b1CEceE4Qy-lfH1EW9yVXxLo",
          "name": "smt Kiran Gaikwad",
          "open_to_cards": [],
          "profile_picture_permalink": "https://staging.api.futurejobs.ai/api/v1/static/7ae3d20c898c6f50bc3a7805e3ca8353519ba2ddb0dd324ec86efa74df582651.jpg",
          "region": "Pune, Maharashtra, India",
          "skills": [
            "Microsoft SQL Server",
            "SQL",
            ".NET Framework",
            "ASP.NET",
            "AngularJS",
            "Model-View-Controller (MVC)",
            "C#",
            "Cascading Style Sheets (CSS)",
            "JavaScript",
            "jQuery",
            "HTML",
            "ASP.NET MVC",
            "Angular"
          ],
          "years_of_experience_raw": 3,
          "current_employers_object": [
            {
              "company_name": "Amazon",
              "company_website_domain": "aboutamazon.com",
              "job_title": "Employer",
              "company_linkedin_profile_url": "https://www.linkedin.com/company/amazon"
            },
            {
              "company_name": "Accenture",
              "company_website_domain": "accenture.com",
              "job_title": ".NET Developer",
              "company_linkedin_profile_url": "https://www.linkedin.com/company/accenture"
            }
          ]
        },
        "revealStatus": {
          "email": {
            "revealed": false,
            "values": []
          },
          "phone": {
            "revealed": false,
            "values": []
          }
        },
        "sequenceEnrollments": []
      },
      {
        "_id": "69f4519dc8bbf1ce65b5bcf4",
        "sourcingSessionId": "69f45196c8bbf1ce65b5bcd6",
        "isSaved": false,
        "interestStatus": "none",
        "profileAnalysis": {
          "analysis": {
            "keyStrengths": [
              {
                "observation": "Sagar has solid experience as a .NET Developer, showcasing his ability to work with key technologies.",
                "evidence": "He has worked as a Programmer Analyst and RPA .NET Developer at Cognizant Technology Solutions, gaining valuable skills in C# and ASP.NET MVC."
              },
              {
                "observation": "With two relevant roles at Cognizant, Sagar demonstrates a strong foundation in software development.",
                "evidence": "His roles as Programmer Analyst Trainee and RPA .NET Developer have equipped him with practical experience in the IT industry."
              },
              {
                "observation": "Sagar holds a Bachelor of Technology in Electronics and Telecommunication, providing a strong technical background.",
                "evidence": "He graduated from Vishwakarma Institute Of Technology in January 2023, enhancing his engineering skills."
              },
              {
                "observation": "Proficient in C#, Sagar brings essential programming skills to the table.",
                "evidence": "C# is prominently featured in his skill set, reflecting his capability in .NET development."
              },
              {
                "observation": "Sagar is well-versed in ASP.NET MVC, a critical framework for web applications.",
                "evidence": "His experience includes working with ASP.NET MVC during his tenure at Cognizant."
              },
              {
                "observation": "Sagar is located in Pune, Maharashtra, making him a suitable candidate for local opportunities.",
                "evidence": "He currently resides in Pune, aligning with the job's regional requirements."
              }
            ],
            "keyWeaknesses": [
              {
                "observation": "Refinement identified in Job Title Match based on the role requirements",
                "evidence": "Profile did not explicitly confirm all requirements for this category."
              }
            ]
          },
          "highlights": [
            {
              "Category": "SKILLS",
              "Highlight": "C#",
              "ReasonForHighlight": "Sagar has demonstrated proficiency in C# through his roles at Cognizant Technology Solutions, essential for .NET development.",
              "Icon": "BULB"
            },
            {
              "Category": "SKILLS",
              "Highlight": "ASP.NET MVC",
              "ReasonForHighlight": "His experience with ASP.NET MVC during his tenure at Cognizant showcases his capability in building web applications.",
              "Icon": "BULB"
            },
            {
              "Category": "EXPERIENCE",
              "Highlight": "2 Years",
              "ReasonForHighlight": "Sagar has accumulated 2 years of relevant experience at Cognizant Technology Solutions, working in software development roles.",
              "Icon": "BAG"
            },
            {
              "Category": "LOCATION",
              "Highlight": "Pune, Maharashtra",
              "ReasonForHighlight": "Sagar is based in Pune, aligning perfectly with local job opportunities in the region.",
              "Icon": "MISC"
            },
            {
              "Category": "INDUSTRY",
              "Highlight": "IT Services",
              "ReasonForHighlight": "His experience in IT Services and IT Consulting at Cognizant Technology Solutions positions him well for similar roles.",
              "Icon": "BAG"
            },
            {
              "Category": "EDUCATION",
              "Highlight": "BTech in Electronics",
              "ReasonForHighlight": "He holds a Bachelor of Technology in Electronics and Telecommunication from Vishwakarma Institute Of Technology, enhancing his technical foundation.",
              "Icon": "BULB"
            }
          ],
          "recommendation": "Sagar is a strong fit for .NET Developer roles, showcasing solid experience in C# and ASP.NET MVC through his work at Cognizant. With a BTech in Electronics and 2 years of relevant experience, he is well-prepared for new challenges. Rating: 4.5/5."
        },
        "lastAnalysedAt": "2026-05-01T07:09:39.168Z",
        "finalScore": 1,
        "batchKey": "CREATED_BATCH",
        "addedFromAction": "created",
        "workspaceId": "69f0dd1da08d760844569ba4",
        "__v": 0,
        "profile": {
          "_id": "69f0df836a65ab2b14d0be57",
          "emails": [],
          "lastFetchedAt": "2026-05-01T07:09:14.165Z",
          "linkedin_profile_url": "https://www.linkedin.com/in/ACoAADRyvSAB6aeW0El0ZGWdiBseaIvR-dAHx-w",
          "name": "Sagar Nilgar",
          "open_to_cards": [],
          "profile_picture_permalink": "https://staging.api.futurejobs.ai/api/v1/static/cad745b02161e681cdb1c83edc82ad61f06d7d819b3724456f11ab622c6ed163.jpg",
          "region": "Pune, Maharashtra, India",
          "skills": [
            "Automation",
            "Technical Research",
            "Azure DevOps Services",
            "Artificial Intelligence (AI)",
            "SOLID Design Principles",
            "Unit Testing",
            "Relational Databases",
            "HTML5",
            "Entity Framework",
            "Microsoft Power Apps",
            "ASP.NET",
            "ASP.NET MVC",
            "Robotic Process Automation (RPA)",
            "Automation Anywhere",
            "Microsoft Power Platform",
            "C#",
            "SQL",
            "Arduino",
            "JavaScript",
            "C++",
            "Python (Programming Language)",
            "HTML",
            "Cascading Style Sheets (CSS)",
            "C (Programming Language)",
            "Database Management System (DBMS)",
            "Public Speaking",
            "Object-Oriented Programming (OOP)",
            "Front-End Development",
            "Node.js",
            "Internet of Things (IoT)",
            "React.js"
          ],
          "years_of_experience_raw": 3,
          "current_employers_object": [
            {
              "company_name": "Cognizant Technology Solutions",
              "company_website_domain": "cognizant.com",
              "job_title": "Programmer Analyst",
              "company_linkedin_profile_url": "https://www.linkedin.com/company/cognizant"
            }
          ]
        },
        "revealStatus": {
          "email": {
            "revealed": false,
            "values": []
          },
          "phone": {
            "revealed": false,
            "values": []
          }
        },
        "sequenceEnrollments": []
      },
      {
        "_id": "69f4519dc8bbf1ce65b5bcee",
        "sourcingSessionId": "69f45196c8bbf1ce65b5bcd6",
        "isSaved": false,
        "interestStatus": "none",
        "profileAnalysis": {
          "analysis": {
            "keyStrengths": [
              {
                "observation": "Diksha has a solid background as a .NET Developer, showcasing her expertise in both development and analysis.",
                "evidence": "She worked as a Senior Analyst and .NET Developer at Capgemini, contributing to various projects over two years."
              },
              {
                "observation": "Her proficiency in C# and ASP.NET MVC highlights her technical capabilities in web application development.",
                "evidence": "Diksha's skills include C#, ASP.NET MVC, and Sitecore, which she utilized in her roles at Capgemini."
              },
              {
                "observation": "Diksha has experience in the IT Services and Consulting industry, which is crucial for understanding client needs.",
                "evidence": "She has worked at Capgemini, a leading company in IT Services, enhancing her industry knowledge."
              }
            ],
            "keyWeaknesses": [
              {
                "observation": "Refinement identified in Job Title Match based on the role requirements",
                "evidence": "Profile did not explicitly confirm all requirements for this category."
              }
            ]
          },
          "highlights": [
            {
              "Category": "SKILLS",
              "Highlight": "C#",
              "ReasonForHighlight": "Diksha has demonstrated her expertise in C# through her work as a .NET Developer at Capgemini, where she developed scalable applications.",
              "Icon": "BULB"
            },
            {
              "Category": "SKILLS",
              "Highlight": "ASP.NET MVC",
              "ReasonForHighlight": "Her experience with ASP.NET MVC at Capgemini allowed her to create high-quality web solutions, enhancing user experience.",
              "Icon": "BULB"
            },
            {
              "Category": "JOB_TITLE",
              "Highlight": ".NET Developer",
              "ReasonForHighlight": "Diksha has held the role of .NET Developer at Capgemini, where she focused on developing dynamic web applications.",
              "Icon": "BAG"
            },
            {
              "Category": "EXPERIENCE",
              "Highlight": "2 Years",
              "ReasonForHighlight": "With two years of experience at Capgemini, Diksha has honed her skills in software development and analysis.",
              "Icon": "BAG"
            },
            {
              "Category": "LOCATION",
              "Highlight": "Pune, Maharashtra, India",
              "ReasonForHighlight": "Diksha is based in Pune, aligning with the regional requirements for roles in the area.",
              "Icon": "BAG"
            },
            {
              "Category": "INDUSTRY",
              "Highlight": "IT Services and IT Consulting",
              "ReasonForHighlight": "Diksha's background in IT Services and Consulting at Capgemini equips her with valuable insights into client requirements.",
              "Icon": "BAG"
            }
          ],
          "recommendation": "Diksha is a strong fit for .NET Developer roles, showcasing her expertise in C# and ASP.NET MVC through her impactful work at Capgemini. With two years of relevant experience, she is well-prepared to contribute effectively. I would rate her a solid 4.5/5."
        },
        "lastAnalysedAt": "2026-05-01T07:09:40.704Z",
        "finalScore": 1,
        "batchKey": "CREATED_BATCH",
        "addedFromAction": "created",
        "workspaceId": "69f0dd1da08d760844569ba4",
        "__v": 0,
        "profile": {
          "_id": "69f0ac066a65ab2b14d0bb1d",
          "emails": [],
          "lastFetchedAt": "2026-05-01T07:09:14.163Z",
          "linkedin_profile_url": "https://www.linkedin.com/in/ACoAADF18ysBqwVWsv6EvRsEUOkqZhvaQVsxlro",
          "name": "Diksha Lale",
          "open_to_cards": [],
          "profile_picture_permalink": "https://staging.api.futurejobs.ai/api/v1/static/fea2dff083a88dd64115ce939a5e71de598fc46d07bfa0649e24aa7c8f8e933c.jpg",
          "region": "Pune, Maharashtra, India",
          "skills": [
            "Database Management System (DBMS)",
            "Microsoft SQL Server",
            ".NET Framework",
            "ASP.NET MVC",
            "Sitecore",
            "React.js",
            "C#",
            "C (Programming Language)",
            "Object-Oriented Programming (OOP)",
            "HTML",
            "Cascading Style Sheets (CSS)",
            "Bootstrap"
          ],
          "years_of_experience_raw": 3,
          "current_employers_object": [
            {
              "company_name": "Perficient",
              "company_website_domain": "perficient.com",
              "job_title": "Sitecore developer",
              "company_linkedin_profile_url": "https://www.linkedin.com/company/perficient"
            }
          ]
        },
        "revealStatus": {
          "email": {
            "revealed": false,
            "values": []
          },
          "phone": {
            "revealed": false,
            "values": []
          }
        },
        "sequenceEnrollments": []
      },
      {
        "_id": "69f4519dc8bbf1ce65b5bce8",
        "sourcingSessionId": "69f45196c8bbf1ce65b5bcd6",
        "isSaved": false,
        "interestStatus": "none",
        "profileAnalysis": {
          "analysis": {
            "keyStrengths": [
              {
                "observation": "Kuldeep has solid experience as a .NET Full Stack Developer, showcasing his ability to work on diverse projects.",
                "evidence": "He worked at Infosys for over a year, developing applications using C# and ASP.NET MVC."
              },
              {
                "observation": "His background includes a strong foundation in Electrical Engineering, enhancing his analytical skills.",
                "evidence": "Kuldeep earned a Bachelor of Engineering in Electrical Engineering from Savitribai Phule Pune University."
              },
              {
                "observation": "Kuldeep is proficient in C#, a critical skill for .NET development, ensuring he can deliver high-quality software solutions.",
                "evidence": "He lists C# prominently in his skills and has applied it in his role at Infosys."
              },
              {
                "observation": "He has experience with ASP.NET MVC, which is essential for building dynamic web applications.",
                "evidence": "Kuldeep's headline highlights his expertise in ASP.NET MVC, indicating his capability in this area."
              },
              {
                "observation": "Kuldeep has worked in the IT Services and IT Consulting industry, providing him with relevant domain knowledge.",
                "evidence": "His roles at Infosys were within this industry, allowing him to understand client needs effectively."
              }
            ],
            "keyWeaknesses": [
              {
                "observation": "Refinement identified in Job Title Match based on the role requirements",
                "evidence": "Profile did not explicitly confirm all requirements for this category."
              }
            ]
          },
          "highlights": [
            {
              "Category": "SKILLS",
              "Highlight": "C#",
              "ReasonForHighlight": "Kuldeep has utilized C# extensively in his role as a .NET Full Stack Developer at Infosys, ensuring robust application development.",
              "Icon": "BULB"
            },
            {
              "Category": "SKILLS",
              "Highlight": "ASP.NET MVC",
              "ReasonForHighlight": "He has hands-on experience with ASP.NET MVC, which he applied in developing web applications at Infosys.",
              "Icon": "BULB"
            },
            {
              "Category": "JOB_TITLE",
              "Highlight": ".NET Developer",
              "ReasonForHighlight": "Kuldeep's role as a .NET Full Stack Developer at Infosys aligns perfectly with the requirements for a .NET Developer.",
              "Icon": "BAG"
            },
            {
              "Category": "EXPERIENCE",
              "Highlight": "5 Years",
              "ReasonForHighlight": "With 5 years of experience, including significant time at Infosys, Kuldeep brings valuable expertise to the table.",
              "Icon": "BAG"
            },
            {
              "Category": "INDUSTRY",
              "Highlight": "IT Services and IT Consulting",
              "ReasonForHighlight": "His experience in the IT Services and IT Consulting industry equips him with relevant insights and skills for the role.",
              "Icon": "BAG"
            },
            {
              "Category": "EDUCATION",
              "Highlight": "Bachelor of Engineering - Electrical Engineering",
              "ReasonForHighlight": "Kuldeep holds a Bachelor of Engineering in Electrical Engineering, providing him with a strong technical foundation.",
              "Icon": "BULB"
            }
          ],
          "recommendation": "Kuldeep is a strong fit for the .NET Developer role, bringing over a year of relevant experience at Infosys, proficiency in C#, and a solid educational background in Electrical Engineering. I highly recommend him for this position. 5/5"
        },
        "lastAnalysedAt": "2026-05-01T07:09:38.561Z",
        "finalScore": 1,
        "batchKey": "CREATED_BATCH",
        "addedFromAction": "created",
        "workspaceId": "69f0dd1da08d760844569ba4",
        "__v": 0,
        "profile": {
          "_id": "69f0df836a65ab2b14d0be53",
          "emails": [],
          "lastFetchedAt": "2026-05-01T07:09:14.162Z",
          "linkedin_profile_url": "https://www.linkedin.com/in/ACoAADJQxGABUkcv2CqTbxY0gxVds8ltPB1BulY",
          "name": "Kuldeep S Gaikwad",
          "open_to_cards": [],
          "profile_picture_permalink": "https://staging.api.futurejobs.ai/api/v1/static/d5ef2d207c661dbe1732c26f668ade9d8f1268016ce86c8f0a3e69436c35fee8.jpg",
          "region": "Pune District, Maharashtra, India",
          "skills": [
            "Model-View-Controller (MVC)",
            "Windows Communication Foundation (WCF)",
            "Angular",
            "Visual Studio",
            "Databases",
            ".NET Framework",
            "Programming",
            "Internal & External Clients",
            "Interpersonal Skills",
            "Creative Problem Solving",
            "Internet Information Services (IIS)",
            "Warehouse Management Systems",
            "BOM creation",
            "Statutory Accounting Principles (SAP)",
            "JSON",
            "Stored Procedures",
            "Language Integrated Query (LINQ)",
            "Debugging",
            "Earthing",
            "Web Application Development"
          ],
          "years_of_experience_raw": 5,
          "current_employers_object": []
        },
        "revealStatus": {
          "email": {
            "revealed": false,
            "values": []
          },
          "phone": {
            "revealed": false,
            "values": []
          }
        },
        "sequenceEnrollments": []
      },
      {
        "_id": "69f4519dc8bbf1ce65b5bcea",
        "sourcingSessionId": "69f45196c8bbf1ce65b5bcd6",
        "isSaved": false,
        "interestStatus": "none",
        "profileAnalysis": {
          "analysis": {
            "keyStrengths": [
              {
                "observation": "Nikita has solid experience as a .NET Developer, showcasing expertise in both front-end and back-end technologies.",
                "evidence": "Worked as a Senior Software Engineer at Infosys and a .NET Developer at i-TEK RFID, accumulating 4 years of experience."
              },
              {
                "observation": "Nikita possesses a strong educational background in Computer Science, which supports her technical skills.",
                "evidence": "Earned a Bachelor of Engineering in Computer Science from Jspm's Imperial College, enhancing her foundational knowledge."
              },
              {
                "observation": "Proficient in C#, a critical skill for .NET development, demonstrating her capability in software engineering.",
                "evidence": "C# is listed among her skills, essential for her roles at both Infosys and i-TEK RFID."
              },
              {
                "observation": "Nikita is well-versed in ASP.NET MVC, a core technology for web application development.",
                "evidence": "ASP.NET MVC is highlighted in her skills, indicating her ability to build robust web applications."
              },
              {
                "observation": "Experience in the IT Services and IT Consulting industry, which aligns with her career trajectory.",
                "evidence": "Worked at Infosys and i-TEK RFID, both prominent companies in the IT Services sector."
              }
            ],
            "keyWeaknesses": [
              {
                "observation": "Refinement identified in Job Title Match based on the role requirements",
                "evidence": "Profile did not explicitly confirm all requirements for this category."
              }
            ]
          },
          "highlights": [
            {
              "Category": "SKILLS",
              "Highlight": "C#",
              "ReasonForHighlight": "Proficient in C#, a key skill utilized in her roles at both Infosys and i-TEK RFID.",
              "Icon": "BULB"
            },
            {
              "Category": "SKILLS",
              "Highlight": "ASP.NET MVC",
              "ReasonForHighlight": "Expertise in ASP.NET MVC, essential for her development work in various projects.",
              "Icon": "BULB"
            },
            {
              "Category": "JOB_TITLE",
              "Highlight": ".NET Developer",
              "ReasonForHighlight": "Nikita has worked as a .NET Developer at i-TEK RFID, gaining valuable experience in software development.",
              "Icon": "BAG"
            },
            {
              "Category": "EXPERIENCE",
              "Highlight": "4 Years",
              "ReasonForHighlight": "Accumulated 4 years of experience in software engineering, including roles at Infosys and i-TEK RFID.",
              "Icon": "BAG"
            },
            {
              "Category": "INDUSTRY",
              "Highlight": "IT Services",
              "ReasonForHighlight": "Experience in the IT Services and IT Consulting industry, working with major companies like Infosys.",
              "Icon": "BAG"
            },
            {
              "Category": "EDUCATION",
              "Highlight": "Bachelor of Engineering",
              "ReasonForHighlight": "Graduated with a Bachelor of Engineering in Computer Science, providing a strong technical foundation.",
              "Icon": "BULB"
            }
          ],
          "recommendation": "Nikita is a strong fit for .NET development roles, bringing 4 years of experience and expertise in C# and ASP.NET MVC. Her background at reputable companies like Infosys showcases her capabilities. I highly recommend her for opportunities in this field. 5/5"
        },
        "lastAnalysedAt": "2026-05-01T07:09:38.313Z",
        "finalScore": 1,
        "batchKey": "CREATED_BATCH",
        "addedFromAction": "created",
        "workspaceId": "69f0dd1da08d760844569ba4",
        "__v": 0,
        "profile": {
          "_id": "69ecaf876a65ab2b14d08133",
          "emails": [],
          "lastFetchedAt": "2026-05-01T07:09:14.162Z",
          "linkedin_profile_url": "https://www.linkedin.com/in/ACoAAC7cCpkBmEfh-grjVmZCvpu3lCuseSMpUf0",
          "name": "Nikita Deulkar",
          "open_to_cards": [],
          "profile_picture_permalink": "https://staging.api.futurejobs.ai/api/v1/static/8c65011d0282fb9af3d52ad57ec26ba63e122c082acfa6c69518cadaac360665.jpg",
          "region": "Pune Division, Maharashtra, India",
          "skills": [
            "AngularJS",
            "Postman API",
            "Programming",
            "Visual Basic",
            "JavaScript",
            "HTML",
            "ADO.NET",
            "ASP.NET Core",
            "API Development",
            "Cascading Style Sheets (CSS)",
            "Visual Studio",
            ".NET Core",
            "Bootstrap (Framework)",
            "Problem Solving",
            "SQL",
            "REST APIs",
            "C#",
            "Microsoft SQL Server",
            ".NET Framework",
            "ASP.NET",
            "ASP.NET MVC",
            "Visual Basic .NET (VB.NET)",
            "English"
          ],
          "years_of_experience_raw": 4,
          "current_employers_object": [
            {
              "company_name": "Capgemini",
              "company_website_domain": "capgemini.com",
              "job_title": "Senior Software Engineer",
              "company_linkedin_profile_url": "https://www.linkedin.com/company/capgemini"
            }
          ]
        },
        "revealStatus": {
          "email": {
            "revealed": false,
            "values": []
          },
          "phone": {
            "revealed": false,
            "values": []
          }
        },
        "sequenceEnrollments": []
      },
      {
        "_id": "69f4519dc8bbf1ce65b5bcf2",
        "sourcingSessionId": "69f45196c8bbf1ce65b5bcd6",
        "isSaved": false,
        "interestStatus": "none",
        "profileAnalysis": {
          "analysis": {
            "keyStrengths": [
              {
                "observation": "Soham has a solid background in .NET development, showcasing relevant experience in both junior and analyst roles.",
                "evidence": "He worked as a Junior .NET Developer at Plansquare Procon and as a Programmer Analyst at Cognizant, focusing on web applications."
              },
              {
                "observation": "With a degree in Computer Engineering, Soham has a strong educational foundation that supports his technical skills.",
                "evidence": "He earned his BE in Computer Engineering from Marathwada Mitra Mandal's College of Engineering, Pune."
              },
              {
                "observation": "Soham is proficient in C#, a critical skill for .NET development, which he has applied in his previous roles.",
                "evidence": "His experience includes developing applications using C# during his time at Cognizant and Plansquare Procon."
              },
              {
                "observation": "He has hands-on experience with ASP.NET MVC, enhancing his capability to build robust web applications.",
                "evidence": "Soham developed web applications using ASP.NET MVC at Plansquare Procon, contributing to his practical knowledge."
              }
            ],
            "keyWeaknesses": [
              {
                "observation": "Refinement identified in Job Title Match based on the role requirements",
                "evidence": "Profile did not explicitly confirm all requirements for this category."
              }
            ]
          },
          "highlights": [
            {
              "Category": "SKILLS",
              "Highlight": "C#",
              "ReasonForHighlight": "Soham has demonstrated proficiency in C# through his roles at Cognizant and Plansquare Procon, where he developed web applications.",
              "Icon": "BULB"
            },
            {
              "Category": "SKILLS",
              "Highlight": "ASP.NET MVC",
              "ReasonForHighlight": "He has practical experience with ASP.NET MVC, having built applications during his tenure as a Junior .NET Developer.",
              "Icon": "BULB"
            },
            {
              "Category": "EXPERIENCE",
              "Highlight": "2+ Years",
              "ReasonForHighlight": "Soham has over 2 years of experience in .NET development, including significant roles at Cognizant and Plansquare Procon.",
              "Icon": "BAG"
            },
            {
              "Category": "EDUCATION",
              "Highlight": "BE in Computer Engineering",
              "ReasonForHighlight": "He holds a Bachelor's degree in Computer Engineering from a reputable institution, providing a strong technical foundation.",
              "Icon": "BULB"
            }
          ],
          "recommendation": "Soham is a strong fit for .NET development roles, showcasing over 2 years of relevant experience and solid skills in C# and ASP.NET MVC. His educational background further supports his technical capabilities. I would rate him 4.5/5."
        },
        "lastAnalysedAt": "2026-05-01T07:09:29.371Z",
        "finalScore": 1,
        "batchKey": "CREATED_BATCH",
        "addedFromAction": "created",
        "workspaceId": "69f0dd1da08d760844569ba4",
        "__v": 0,
        "profile": {
          "_id": "69f0df836a65ab2b14d0be56",
          "emails": [],
          "lastFetchedAt": "2026-05-01T07:09:14.165Z",
          "linkedin_profile_url": "https://www.linkedin.com/in/ACoAAC9ZJUMBagM0-XqjxU4JK3E_l8fSGxk4Ygo",
          "name": "Soham Sakhare",
          "open_to_cards": [],
          "profile_picture_permalink": "https://staging.api.futurejobs.ai/api/v1/static/0c2febc1a50799709ad839f80580d5dadc1aed19dc40a3e43776fa57ee82e07a.jpg",
          "region": "Pune Division, Maharashtra, India",
          "skills": [
            "User Interface Design",
            "Creative Ideation",
            "Design Flow",
            "Fonts",
            "Brand Identity",
            "User Experience Testing",
            "Adobe XD",
            "User Research",
            "Prototype Framework",
            "Critical Thinking",
            "Attention to Detail",
            "Mockups",
            "Observation",
            "Research Skills",
            "Usability",
            "Usability Testing",
            "Presentation Skills",
            "Public Speaking",
            "User Stories",
            "Wireframing",
            "Prototyping",
            "Information Architecture",
            "Empathize",
            "Ideas Development",
            "Figma (Software)",
            "Figma",
            "User Experience (UX)",
            "User Experience Design (UED)",
            "Coding Standards",
            "Client Requirements",
            "Business Requirements",
            "Soft Skills",
            "Relational Databases",
            "Java Virtual Machine (JVM)",
            "Software Deployment",
            "PL/SQL",
            "ASP.NET",
            "Model-View-Controller (MVC)",
            "Application Development",
            "Object-Oriented Programming (OOP)",
            "Microsoft SQL Server",
            "C#",
            ".NET Core",
            "MySQL",
            "HTML",
            "JavaScript",
            "SQL Server Management Studio",
            "NoSQL",
            "HTML5",
            "Cascading Style Sheets (CSS)",
            "Transact-SQL (T-SQL)",
            "Communication",
            "Problem Solving",
            "Presentations",
            "Written Communication",
            "IELTS",
            ".NET",
            "Bootstrap"
          ],
          "years_of_experience_raw": 5,
          "current_employers_object": [
            {
              "company_name": "ZS Associates",
              "company_website_domain": "zs.com",
              "job_title": "Associate",
              "company_linkedin_profile_url": "https://www.linkedin.com/company/zs-associates"
            }
          ]
        },
        "revealStatus": {
          "email": {
            "revealed": false,
            "values": []
          },
          "phone": {
            "revealed": false,
            "values": []
          }
        },
        "sequenceEnrollments": []
      },
      {
        "_id": "69f4519dc8bbf1ce65b5bcf1",
        "sourcingSessionId": "69f45196c8bbf1ce65b5bcd6",
        "isSaved": false,
        "interestStatus": "none",
        "profileAnalysis": {
          "analysis": {
            "keyStrengths": [
              {
                "observation": "Anuj has solid experience as a .NET Developer, showcasing his ability to work on complex projects.",
                "evidence": "He worked at Capgemini for 3 years, focusing on .NET backend development for Warehouse Logistics Solutions."
              },
              {
                "observation": "His educational background in Electrical Engineering provides a strong technical foundation.",
                "evidence": "Anuj earned a Bachelor of Technology from IIIT-Naya Raipur, graduating in 2020."
              },
              {
                "observation": "Anuj possesses essential skills in C# and ASP.NET MVC, crucial for .NET development roles.",
                "evidence": "He lists C# and ASP.NET MVC among his extensive skill set, demonstrating his technical proficiency."
              },
              {
                "observation": "He has a strong understanding of the IT Services and Consulting industry.",
                "evidence": "Anuj's experience at Capgemini and Deloitte places him in the heart of the IT consulting sector."
              },
              {
                "observation": "Anuj is currently based in Pune, which aligns perfectly with local job opportunities.",
                "evidence": "He resides in Pune, Maharashtra, India, making him well-positioned for regional roles."
              }
            ],
            "keyWeaknesses": [
              {
                "observation": "Refinement identified in Job Title Match based on the role requirements",
                "evidence": "Profile did not explicitly confirm all requirements for this category."
              },
              {
                "observation": "Refinement identified in Past Similar Roles based on the role requirements",
                "evidence": "Profile did not explicitly confirm all requirements for this category."
              }
            ]
          },
          "highlights": [
            {
              "Category": "SKILLS",
              "Highlight": "C#",
              "ReasonForHighlight": "Anuj lists C# as a key skill, which he has applied extensively in his roles at Capgemini and Deloitte.",
              "Icon": "BULB"
            },
            {
              "Category": "SKILLS",
              "Highlight": "ASP.NET MVC",
              "ReasonForHighlight": "He has practical experience with ASP.NET MVC, a core technology in his current and past roles.",
              "Icon": "BULB"
            },
            {
              "Category": "JOB_TITLE",
              "Highlight": ".NET Developer",
              "ReasonForHighlight": "Anuj has worked as a .NET Developer at Capgemini, where he focused on backend development for logistics solutions.",
              "Icon": "BAG"
            },
            {
              "Category": "LOCATION",
              "Highlight": "Pune, Maharashtra, India",
              "ReasonForHighlight": "Anuj is located in Pune, making him an ideal candidate for local opportunities in the tech industry.",
              "Icon": "MISC"
            },
            {
              "Category": "INDUSTRY",
              "Highlight": "IT Services and IT Consulting",
              "ReasonForHighlight": "Anuj has significant experience in the IT Services and Consulting industry, working with major firms like Capgemini and Deloitte.",
              "Icon": "BAG"
            },
            {
              "Category": "EDUCATION",
              "Highlight": "BTech in Electrical Engineering",
              "ReasonForHighlight": "He holds a Bachelor of Technology from IIIT-Naya Raipur, providing a solid technical foundation for his career.",
              "Icon": "BULB"
            }
          ],
          "recommendation": "Anuj is a strong fit for .NET development roles, bringing 3 years of relevant experience and a solid educational background. His skills in C# and ASP.NET MVC, combined with his industry knowledge, make him a valuable asset. I highly recommend him for opportunities in this field. 4.5/5"
        },
        "lastAnalysedAt": "2026-05-01T07:09:42.595Z",
        "finalScore": 1,
        "batchKey": "CREATED_BATCH",
        "addedFromAction": "created",
        "workspaceId": "69f0dd1da08d760844569ba4",
        "__v": 0,
        "profile": {
          "_id": "69e1e8a9ffdef2003c8892bc",
          "emails": [],
          "lastFetchedAt": "2026-05-01T07:09:14.165Z",
          "linkedin_profile_url": "https://www.linkedin.com/in/ACoAADk6uDUBNfrYR57Hrzy1RBoAGSI_bg7yYFA",
          "name": "Anuj Sharma",
          "open_to_cards": [
            "CAREER_INTEREST"
          ],
          "profile_picture_permalink": "https://staging.api.futurejobs.ai/api/v1/static/346e202caff1a7fb8c9b5f464372d9148db82a072f5365ce37b403b8fafe17f0.jpg",
          "region": "Pune, Maharashtra, India",
          "skills": [
            ".net",
            "Apache Kafka",
            "Microservices",
            ".LINQ",
            "PostgreSQL",
            "Amazon Web Services (AWS)",
            "Business Engineering",
            "Visual Basic",
            "SQL Server Management Studio",
            "Language Integrated Query (LINQ)",
            "Continuous Integration and Continuous Delivery (CI/CD)",
            "Microsoft Azure",
            "Warehouse Operations",
            "Azure DevOps Services",
            "Octopus",
            "C#",
            "Entity Framework",
            "Web Services API",
            "ASP.NET MVC",
            "ASP.NET Core",
            "Azure DevOps Server",
            ".NET Core",
            "Dapper ORM",
            "Backend",
            "React.js",
            "ASP.NET",
            "WPF Development",
            "Microsoft SQL Server",
            "Transact-SQL (T-SQL)",
            "Model-view-viewmodel (MVVM)",
            "Windows Presentation Foundation (WPF)",
            ".NET Framework",
            "ADO.NET",
            "ASP.NET Web API",
            "Robotic Process Automation (RPA)",
            "UiPath",
            "Blue Prism",
            "Automation Anywhere"
          ],
          "years_of_experience_raw": 5,
          "current_employers_object": [
            {
              "company_name": "Deloitte",
              "company_website_domain": "deloitte.com",
              "job_title": ".NET Full Stack Engineer",
              "company_linkedin_profile_url": "https://www.linkedin.com/company/deloitte"
            }
          ]
        },
        "revealStatus": {
          "email": {
            "revealed": false,
            "values": []
          },
          "phone": {
            "revealed": false,
            "values": []
          }
        },
        "sequenceEnrollments": []
      },
      {
        "_id": "69f4519dc8bbf1ce65b5bcf5",
        "sourcingSessionId": "69f45196c8bbf1ce65b5bcd6",
        "isSaved": false,
        "interestStatus": "none",
        "profileAnalysis": {
          "analysis": {
            "keyStrengths": [
              {
                "observation": "Parimal has solid experience as a .NET Developer, showcasing expertise in developing web applications.",
                "evidence": "At Ceinsys Tech Limited, Parimal worked as a .NET Developer for 2 years, focusing on MVC and C# technologies."
              },
              {
                "observation": "Parimal holds a relevant degree in Computer Applications, providing a strong foundation in software development.",
                "evidence": "He earned a Bachelor of Computer Applications from Nagpur University, enhancing his skills in computer and information sciences."
              },
              {
                "observation": "Proficient in C#, Parimal brings essential programming skills to the table.",
                "evidence": "C# is prominently featured in his skill set, demonstrating his capability in .NET development."
              },
              {
                "observation": "Parimal is skilled in ASP.NET MVC, a critical framework for web application development.",
                "evidence": "His experience includes working with ASP.NET MVC, which is highlighted in his headline and skills."
              },
              {
                "observation": "Parimal has experience in the IT Services and IT Consulting industry, aligning with relevant sector needs.",
                "evidence": "He worked at Ceinsys Tech Limited, a company in the IT Services and IT Consulting sector."
              },
              {
                "observation": "Based in Pune, Parimal is well-positioned for opportunities in the local tech market.",
                "evidence": "He resides in Pune District, Maharashtra, India, making him a suitable candidate for regional roles."
              }
            ],
            "keyWeaknesses": [
              {
                "observation": "Refinement identified in Job Title Match based on the role requirements",
                "evidence": "Profile did not explicitly confirm all requirements for this category."
              },
              {
                "observation": "Refinement identified in Past Similar Roles based on the role requirements",
                "evidence": "Profile did not explicitly confirm all requirements for this category."
              }
            ]
          },
          "highlights": [
            {
              "Category": "SKILLS",
              "Highlight": "C#",
              "ReasonForHighlight": "Parimal has a strong command of C#, which he utilized extensively during his tenure at Ceinsys Tech Limited.",
              "Icon": "BULB"
            },
            {
              "Category": "SKILLS",
              "Highlight": "ASP.NET MVC",
              "ReasonForHighlight": "He has hands-on experience with ASP.NET MVC, crucial for developing robust web applications.",
              "Icon": "BULB"
            },
            {
              "Category": "EXPERIENCE",
              "Highlight": "2 Years as .NET Developer",
              "ReasonForHighlight": "Parimal contributed to various projects at Ceinsys Tech Limited, enhancing his skills in web development.",
              "Icon": "BAG"
            },
            {
              "Category": "LOCATION",
              "Highlight": "Pune, Maharashtra, India",
              "ReasonForHighlight": "Parimal is based in Pune, making him an ideal fit for local opportunities in the tech industry.",
              "Icon": "MISC"
            },
            {
              "Category": "INDUSTRY",
              "Highlight": "IT Services and IT Consulting",
              "ReasonForHighlight": "His experience in the IT Services and IT Consulting sector aligns well with industry demands.",
              "Icon": "BAG"
            },
            {
              "Category": "EDUCATION",
              "Highlight": "Bachelor of Computer Applications",
              "ReasonForHighlight": "He graduated from Nagpur University, where he developed a solid foundation in computer science principles.",
              "Icon": "BULB"
            }
          ],
          "recommendation": "Parimal is a strong fit for .NET Developer roles, showcasing 2 years of relevant experience and a solid educational background. His proficiency in C# and ASP.NET MVC, combined with his local presence in Pune, positions him well for opportunities in the region. I would rate him 4.5/5."
        },
        "lastAnalysedAt": "2026-05-01T07:09:40.913Z",
        "finalScore": 1,
        "batchKey": "CREATED_BATCH",
        "addedFromAction": "created",
        "workspaceId": "69f0dd1da08d760844569ba4",
        "__v": 0,
        "profile": {
          "_id": "69e1e8a9ffdef2003c8892cc",
          "emails": [],
          "lastFetchedAt": "2026-05-01T07:09:14.165Z",
          "linkedin_profile_url": "https://www.linkedin.com/in/ACoAACOppy8BNMMVikScN5Xw9a2mboWQasspBXY",
          "name": "Parimal Jain",
          "open_to_cards": [],
          "profile_picture_permalink": "https://staging.api.futurejobs.ai/api/v1/static/49606fb664300113816a90df39a48acc34995f07ac1f4bffea002c1302f3098d.jpg",
          "region": "Pune District, Maharashtra, India",
          "skills": [
            "jQuery",
            "RESTful WebServices",
            "Software Development",
            "Git",
            "SQL",
            "REST APIs",
            "PostgreSQL",
            "Back-End Web Development",
            "Entity Framework (EF) Core",
            ".NET Core",
            "Language Integrated Query (LINQ)",
            "Model-View-Controller (MVC)",
            "Microsoft SQL Server",
            "Entity Framework",
            "ASP.NET Web API",
            "ASP.NET Core",
            "SQL Server Management Studio",
            "PL/SQL",
            "C#",
            "Core Java",
            "ASP.NET",
            "ASP.NET MVC",
            "Photography",
            "Java",
            "JavaScript",
            "C++",
            "C (Programming Language)",
            ".NET Framework",
            "Spring Framework",
            "MySQL",
            "HTML5",
            "Cascading Style Sheets (CSS)",
            "Spring Boot"
          ],
          "years_of_experience_raw": 4,
          "current_employers_object": [
            {
              "company_name": "Accenture",
              "company_website_domain": "accenture.com",
              "job_title": "Software Engineer",
              "company_linkedin_profile_url": "https://www.linkedin.com/company/accenture"
            }
          ]
        },
        "revealStatus": {
          "email": {
            "revealed": false,
            "values": []
          },
          "phone": {
            "revealed": false,
            "values": []
          }
        },
        "sequenceEnrollments": []
      }
    ],
    "totalDocs": 25,
    "limit": 20,
    "page": 1,
    "totalPages": 2,
    "serialNumberStartFrom": 1,
    "hasPrevPage": false,
    "hasNextPage": true,
    "nextPage": 2
  },
  "message": "Profiles fetched successfully",
  "status": "SUCCESS"
}
```

**SDK Code**

```python Sourcing Session_Get Profiles for Session_example
import requests

url = "https://prod.api.futurejobs.ai/api/v1/wl/sourcing-session//profiles"

querystring = {"page":"1","limit":"20"}

headers = {"x-fj-api-key": "<apiKey>"}

response = requests.get(url, headers=headers, params=querystring)

print(response.json())
```

```javascript Sourcing Session_Get Profiles for Session_example
const url = 'https://prod.api.futurejobs.ai/api/v1/wl/sourcing-session//profiles?page=1&limit=20';
const options = {method: 'GET', headers: {'x-fj-api-key': '<apiKey>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go Sourcing Session_Get Profiles for Session_example
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://prod.api.futurejobs.ai/api/v1/wl/sourcing-session//profiles?page=1&limit=20"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("x-fj-api-key", "<apiKey>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby Sourcing Session_Get Profiles for Session_example
require 'uri'
require 'net/http'

url = URI("https://prod.api.futurejobs.ai/api/v1/wl/sourcing-session//profiles?page=1&limit=20")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["x-fj-api-key"] = '<apiKey>'

response = http.request(request)
puts response.read_body
```

```java Sourcing Session_Get Profiles for Session_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://prod.api.futurejobs.ai/api/v1/wl/sourcing-session//profiles?page=1&limit=20")
  .header("x-fj-api-key", "<apiKey>")
  .asString();
```

```php Sourcing Session_Get Profiles for Session_example
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://prod.api.futurejobs.ai/api/v1/wl/sourcing-session//profiles?page=1&limit=20', [
  'headers' => [
    'x-fj-api-key' => '<apiKey>',
  ],
]);

echo $response->getBody();
```

```csharp Sourcing Session_Get Profiles for Session_example
using RestSharp;

var client = new RestClient("https://prod.api.futurejobs.ai/api/v1/wl/sourcing-session//profiles?page=1&limit=20");
var request = new RestRequest(Method.GET);
request.AddHeader("x-fj-api-key", "<apiKey>");
IRestResponse response = client.Execute(request);
```

```swift Sourcing Session_Get Profiles for Session_example
import Foundation

let headers = ["x-fj-api-key": "<apiKey>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://prod.api.futurejobs.ai/api/v1/wl/sourcing-session//profiles?page=1&limit=20")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```