---
title: "Poll GitHub to LinkedIn lookup"
method: POST
path: "/v1/github-to-linkedin/polling"
tags: ["GitHub"]
---

# Poll GitHub to LinkedIn lookup

`POST /v1/github-to-linkedin/polling`

Poll for the results of a GitHub to LinkedIn lookup task.

<span>⚡ <strong>Rate limit:</strong> 60 requests per 1 minute</span>

## Request body

- object
  - `apiKey` string, required — Your Fiber API key
  - `githubAgentRunId` string, required — The ID of the GitHub to LinkedIn lookup run which you got back from the trigger endpoint.
  - `cursor` string, nullable — The cursor from where to start fetching the next page of results. Provide `nextCursor` from the previous response to continue from there.
  - `pageSize` number — The number of results to fetch per page.

## Response `200`

Default Response

- object
  - `output` object, required
    - `status` 'NOT_STARTED' | 'STARTED' | 'DONE' | 'FAILED', required
    - `data` object[], required — The list of GitHub to LinkedIn lookup results along with their rationale and confidence scores.
      - `githubUsername` string, required
      - `customerProvidedId` string, nullable
      - `status` 'NOT_STARTED' | 'STARTED' | 'DONE' | 'FAILED', required
      - `linkedInUrl` string, uri, nullable
      - `linkedInSlug` string, nullable
      - `confidenceOutOf10` integer, required
      - `rationale` string, nullable
      - `extractedEmails` string[], required
      - `githubProfile` object, nullable
        - `name` string, nullable
        - `company` string, nullable
        - `location` string, nullable
        - `bio` string, nullable
        - `blog` string, nullable
        - `avatarUrl` string, nullable
        - `followers` integer, nullable
        - `publicRepos` integer, nullable
      - `errorMessage` string, nullable
    - `nextCursor` string, nullable — The cursor from where to start fetching the next page of results. Provide `nextCursor` from the previous response to continue from there.
    - `hasMore` boolean, required — Whether there are more results to fetch for this run.
  - `chargeInfo` union, required
    - object — Credits were charged immediately for this operation
      - `method` 'charged-now', required
      - `creditsCharged` number, required
      - `lowCreditAlert` object, nullable — Contains a link to get more credits, a warning message, and the remaining credit count.
        - `getMoreCreditsUrl` string, uri, required — URL to top up credits or restart billing cycle to get fresh credits.
        - `message` string, required — Human-readable credits warning.
        - `availableCredits` number, required — Number of credits remaining in the current billing period.
    - object — Credits will be charged after the operation completes
      - `method` 'charging-later', required
      - `message` string, required
      - `lowCreditAlert` object, nullable — Contains a link to get more credits, a warning message, and the remaining credit count.
        - `getMoreCreditsUrl` string, uri, required — URL to top up credits or restart billing cycle to get fresh credits.
        - `message` string, required — Human-readable credits warning.
        - `availableCredits` number, required — Number of credits remaining in the current billing period.
    - object — Credits that were charged for an asynchronous operation
      - `method` 'charged-for-async-process', required
      - `creditsCharged` number, required
      - `message` string, required
      - `lowCreditAlert` object, nullable — Contains a link to get more credits, a warning message, and the remaining credit count.
        - `getMoreCreditsUrl` string, uri, required — URL to top up credits or restart billing cycle to get fresh credits.
        - `message` string, required — Human-readable credits warning.
        - `availableCredits` number, required — Number of credits remaining in the current billing period.
    - object — No credits were charged for this operation
      - `method` 'free', required
      - `message` string, required
      - `lowCreditAlert` object, nullable — Contains a link to get more credits, a warning message, and the remaining credit count.
        - `getMoreCreditsUrl` string, uri, required — URL to top up credits or restart billing cycle to get fresh credits.
        - `message` string, required — Human-readable credits warning.
        - `availableCredits` number, required — Number of credits remaining in the current billing period.
    - object — Credits were refunded for this operation
      - `method` 'credits-refunded', required
      - `creditsRefunded` number, required
      - `message` string, required
      - `lowCreditAlert` object, nullable — Contains a link to get more credits, a warning message, and the remaining credit count.
        - `getMoreCreditsUrl` string, uri, required — URL to top up credits or restart billing cycle to get fresh credits.
        - `message` string, required — Human-readable credits warning.
        - `availableCredits` number, required — Number of credits remaining in the current billing period.
  - `warnings` object[], nullable — Warnings about extraneous fields in request
    - `field` string, required — Full path to extraneous field (e.g., 'searchParams.ExtraField')
    - `message` string, required — Warning message
  - `advice` string[], nullable — Tips, recommendations, and suggestions for using this API effectively.

## Other responses

- `400` — Default Response
- `401` — Default Response
- `402` — Default Response
- `403` — Default Response
- `404` — Default Response
- `422` — Default Response
- `429` — Default Response
- `500` — Default Response
- `503` — Default Response

---

[API](https://skmtc.net/fiber/apis/fiber-ai-api.md) · [All operations](https://skmtc.net/fiber/apis/fiber-ai-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fiber/fiber-ai-api/versions/0c537984b99f/schema)
