Rhythms chat_refresh_threads API

The chat_refresh_threads API from Rhythms — 1 operation(s) for chat_refresh_threads.

Operations 1

GET /chat/refresh_threads/{thread_uuid}/status Get the status of an on-demand refresh #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/rhythms-chat-refresh-threads-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

rhythms-chat-refresh-threads-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Rhythms (params in:body) access_requests Chat Refresh Threads API
  description: '

    <p># RhythmsAI API</p>


    <p>The RhythmsAI API provides a comprehensive platform for team productivity, goal tracking, and workflow automation. Built with multi-tenant architecture, it enables organizations to manage objectives, track progress, and integrate with popular productivity tools.</p>


    <p>## API Structure</p>

    <ul><li>

    <p>**RESTful Design**: Clean, predictable REST endpoints following industry standards</p>

    </li><li>

    <p><strong>Multi-tenant</strong>: All data is automatically scoped to your organization’s tenant</p>

    </li><li>

    <p><strong>Authentication</strong>: Secure authentication with proper authorization controls</p>

    </li><li>

    <p><strong>Pagination</strong>: Efficient data retrieval with built-in pagination support</p>

    </li><li>

    <p><strong>Filtering</strong>: Advanced filtering capabilities using Ransack query DSL</p>

    </li></ul>


    <p>## Getting Started</p>


    <p>All API endpoints require authentication. Once authenticated, your requests will be automatically scoped to your organization’s data. The API supports JSON request/response format and follows standard HTTP status codes for success and error handling.</p>


    <p>For integration support and detailed examples, refer to the specific endpoint documentation below.</p>

    '
  version: '1.0'
  x-copyright: null
servers:
- url: https://api.rhythms.ai
security: []
tags:
- name: chat_refresh_threads
paths:
  /chat/refresh_threads/{thread_uuid}/status:
    get:
      tags:
      - chat_refresh_threads
      operationId: get_chat_refresh_threads_thread_uuid_status
      summary: Get the status of an on-demand refresh
      parameters:
      - name: thread_uuid
        in: path
        required: true
        description: UUID of the refresh thread returned by POST /documents/:uuid/refresh
        schema:
          type: string
      responses:
        '400':
          description: Bad Request - Invalid parameters or malformed request
        '401':
          description: Unauthorized - Invalid or missing authentication
        '403':
          description: Forbidden - User lacks permission to access this resource
        '404':
          description: Not Found - Resource does not exist
        '422':
          description: Unprocessable Entity - Invalid request parameters or validation errors
        '429':
          description: Too Many Requests - Rate limit exceeded
        '500':
          description: Internal Server Error - Unexpected server error
      description: 'Poll the status of an on-demand refresh started by

        `POST /documents/:uuid/refresh`. Pass the `thread_uuid` returned by

        that call. Returns a coarse `state`

        (`running` | `completed` | `completed_unknown_outcome` | `failed`),

        the skill-level `skill_status` when parseable

        (`completed` | `completed_no_changes` | `completed_locked` | `failed`),

        a one-line `summary`, and `completed_at` when the run terminates.


        `completed_unknown_outcome` means the agent finished talking but no

        recognized terminal status code was present in its reply — callers

        should surface `summary` to the user verbatim rather than assume the

        refresh succeeded.


        Possession of the unguessable `thread_uuid` is the access proof —

        within a tenant, any caller with the handle can poll its status.

        Callers should poll until `state != "running"` — refreshes typically

        complete within 10-60 seconds.

        '