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

# Get Connect Status

> Return the developer's Stripe Connect onboarding status.

Scalable by default: served from the cached AgentDeveloper columns (kept
fresh by the ``account.updated`` webhook) when ``connect_status_cache_enabled``
is on. Always re-checks live when:
  - ``?refresh=true`` (e.g. right after returning from Stripe onboarding), or
  - the cache has never been synced, or
  - the account is not yet fully onboarded (incomplete / pending) — so a
    missed webhook can never strand a developer on a stale status.



## OpenAPI

````yaml /openapi.json get /api/v1/developers/connect/status
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/developers/connect/status:
    get:
      tags:
        - Stripe Connect
      summary: Get Connect Status
      description: >-
        Return the developer's Stripe Connect onboarding status.


        Scalable by default: served from the cached AgentDeveloper columns (kept

        fresh by the ``account.updated`` webhook) when
        ``connect_status_cache_enabled``

        is on. Always re-checks live when:
          - ``?refresh=true`` (e.g. right after returning from Stripe onboarding), or
          - the cache has never been synced, or
          - the account is not yet fully onboarded (incomplete / pending) — so a
            missed webhook can never strand a developer on a stale status.
      operationId: get_connect_status_api_v1_developers_connect_status_get
      parameters:
        - name: refresh
          in: query
          required: false
          schema:
            type: boolean
            description: Force a live Stripe re-check
            default: false
            title: Refresh
          description: Force a live Stripe re-check
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````