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

# Check Can Call

> Check if agent can make an outbound call right now.

This checks:
- Current time against calling schedules
- Daily call limits
- Concurrent call limits
- Do Not Call lists (if enabled)
- Recipient timezone (if enabled)



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /outbound/agents/{agent_id}/can-call
openapi: 3.1.0
info:
  title: Backend - Multilingual Voice Agent System
  description: FastAPI backend for multilingual voice agents with tool use
  version: 1.0.0
servers: []
security: []
paths:
  /outbound/agents/{agent_id}/can-call:
    get:
      tags:
        - outbound-config
      summary: Check Can Call
      description: |-
        Check if agent can make an outbound call right now.

        This checks:
        - Current time against calling schedules
        - Daily call limits
        - Concurrent call limits
        - Do Not Call lists (if enabled)
        - Recipient timezone (if enabled)
      operationId: check_can_call_outbound_agents__agent_id__can_call_get
      parameters:
        - name: agent_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Agent Id
        - name: to_number
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: To Number
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CallPermissionCheck'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    CallPermissionCheck:
      properties:
        can_call:
          type: boolean
          title: Can Call
        reason:
          anyOf:
            - type: string
            - type: 'null'
          title: Reason
        next_available_time:
          anyOf:
            - type: string
            - type: 'null'
          title: Next Available Time
        current_schedule:
          anyOf:
            - type: string
            - type: 'null'
          title: Current Schedule
        calls_today:
          type: integer
          title: Calls Today
        calls_remaining:
          type: integer
          title: Calls Remaining
      type: object
      required:
        - can_call
        - calls_today
        - calls_remaining
      title: CallPermissionCheck
      description: Check if agent can make a call now.
    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

````