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

# Send Location

> Push physical business coordinates, pickup points, or dynamic navigation location maps using live geometric markers directly into real-time conversation flows.



## OpenAPI

````yaml POST /send-location
openapi: 3.0.3
info:
  title: Wachat Enterprise API
  description: >
    Welcome to the official Wachat API reference. Wachat provides
    developer-friendly, ultra-reliable infrastructure to scale your WhatsApp
    communications programmatically.


    Easily deploy automated messaging pipelines, orchestrate interactive
    customer engagement patterns, verify phone numbers instantly, and control
    containerized WhatsApp instances via a secure, production-grade REST
    architecture.
  version: 1.0.0
servers:
  - url: https://app.wachat.net/api/v1
    description: Live Production Gateway
security:
  - bearerAuth: []
paths:
  /send-location:
    post:
      tags:
        - Contextual Utilities
      summary: Dispatch Geographic Coordinate Location Pin
      description: >-
        Push physical business coordinates, pickup points, or dynamic navigation
        location maps using live geometric markers directly into real-time
        conversation flows.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - instanceName
                - number
                - latitude
                - longitude
              properties:
                instanceName:
                  type: string
                  description: Name of your connected WhatsApp session profile.
                number:
                  type: string
                  description: Destination client contact phone data format string.
                latitude:
                  type: number
                  description: The precise mapping geographic Latitude coordinate property.
                longitude:
                  type: number
                  description: >-
                    The precise mapping geographic Longitude coordinate
                    property.
                name:
                  type: string
                  description: >-
                    Named location title label (e.g., Head Office / Store
                    Branch).
                address:
                  type: string
                  description: >-
                    Full alphanumeric street physical address metadata
                    properties.
      responses:
        '200':
          description: Location point data successfully parsed and pushed.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Authenticate your integration payloads by injecting your premium secure
        Wachat Account API Private Secret Key inside standard Authorization
        Bearer header vectors.

````