---
title: "Get saved search run status"
method: POST
path: "/v1/saved-search/run/status"
tags: ["Saved search"]
---

# Get saved search run status

`POST /v1/saved-search/run/status`

Returns the execution status and metadata for a saved search run, including start time, completion time (if finished), and current status (NOT_STARTED, PROCESSING, COMPLETED, or FAILED)

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

<span>💰 <strong>Cost:</strong> FREE! No credits are charged for this API.&nbsp;<span title="Pricing shown is default pricing. Actual pricing may vary.">ⓘ</span></span>

## Request body

- object
  - `apiKey` string, required — Your Fiber API key
  - `savedSearchRunId` string, required — The ID of the saved search run

## Response `200`

Default Response

- object
  - `output` object, required
    - `run` object, required — The saved search run details
      - `id` string, required — The ID of the saved search run
      - `startedAt` string, nullable — The date and time the run started (if started)
      - `completedAt` string, nullable — The date and time the run completed (if completed)
      - `status` 'NOT_STARTED' | 'PROCESSING' | 'COMPLETED' | 'FAILED' | 'REJECTED_NO_FUNDS', required — The status of the saved search run
      - `companiesStats` object, required — The companies stats. This includes the number of companies joined, departed, stayed, and returned so far.
        - `numCompaniesJoined` number, required — The number of companies joined which means companies who appeared in the search results for the first time
        - `numCompaniesDeparted` number, required — The number of companies departed which means companies who appeared in the search results previously and then disappeared in the latest search results
        - `numCompaniesStayed` number, required — The number of companies stayed which means companies who appeared in the search results previously and then stayed in the latest search results
        - `numCompaniesReturned` number, required — The number of companies returned which means companies who appeared in the search results previously but departed and then appeared again in the latest search results
      - `peopleStats` object, required — The people stats. This includes the number of people joined, departed, stayed, and returned so far.
        - `numPeopleJoined` number, required — The number of people joined which means people who appeared in the search results for the first time
        - `numPeopleDeparted` number, required — The number of people departed which means people who appeared in the search results previously and then disappeared in the latest search results
        - `numPeopleReturned` number, required — The number of people returned which means people who appeared in the search results previously but departed and then appeared again in the latest search results
        - `numPeopleStayed` number, required — The number of people stayed which means people who appeared in the search results previously and then stayed in the latest search results
  - `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)
