# sendMsg | Single

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /sendMsg/APIKEY:
    get:
      summary: sendMsg | Single
      deprecated: false
      description: >-
        Use this method to send messages to users' WhatsApp numbers.


        **Message Size Limitation:**


        When sending outbound messages via our API service, please ensure that
        the total message size remains below the channel's maximum size limit.
        API requests containing media or multiple media files exceeding this
        limit will result in an error.  

        For WhatsApp messages, the maximum size limit is 100MB.
      tags:
        - API Reference
      parameters:
        - name: phonenumber
          in: query
          description: User Phone Number
          required: true
          example: '447400733413'
          schema:
            type: string
        - name: message
          in: query
          description: Text Message
          required: true
          example: This is a message
          schema:
            type: string
        - name: schedule
          in: query
          description: >-
            Time to send a message in the future (Timestamp format should be
            based on UTC)

            Set this field if needed. If you don't send this parameter, the
            message will be sent instantly.
          required: false
          example: '1724160037'
          schema:
            type: string
        - name: link
          in: query
          description: Media URL (image, sound, video, ...)
          required: false
          example: https://example.com/image.jpg
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: string
                  message:
                    type: string
                  messageId:
                    type: integer
                required:
                  - success
                  - message
                x-apidog-orders:
                  - success
                  - message
                  - messageId
          headers: {}
          x-apidog-name: sendMsg | Single
      security: []
      x-apidog-folder: API Reference
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/545232/apis/api-9438043-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://api.whatsiplus.com
    description: WhatsApp API - WhatsiPlus Documentation
security: []

```
