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

# Geocode

> Convert a human-readable address into geographic coordinates (latitude and longitude)



## OpenAPI

````yaml api-reference/openapi.json get /utility/geocode
openapi: 3.1.0
info:
  title: Satsuma API
  description: API specification for Satsuma AI commerce platform
  contact:
    name: Satsuma Support
    url: https://satsuma.ai
    email: support@satsuma.ai
  version: 1.0.0
servers:
  - url: https://api.satsuma.ai
    description: Production
security:
  - apiKeyAuth: []
paths:
  /utility/geocode:
    get:
      tags:
        - Geographic Utilities
      summary: Geocode
      description: >-
        Convert a human-readable address into geographic coordinates (latitude
        and longitude)
      operationId: getPoint
      parameters:
        - name: address
          in: query
          description: >-
            Complete address string including street, city, state/province, and
            optionally country
          required: true
          schema:
            type: string
            description: api.utility.field.address.description
            example: 1600 Amphitheatre Parkway, Mountain View, CA
          example: 1600
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResponsePoint'
components:
  schemas:
    ResponsePoint:
      properties:
        data:
          $ref: '#/components/schemas/Point'
        messages:
          uniqueItems: true
          type: array
          items:
            $ref: '#/components/schemas/Message'
    Point:
      properties:
        type:
          type: string
        coordinates:
          type: array
          items:
            type: number
            format: double
    Message:
      properties:
        context:
          type: string
        level:
          type: string
          enum:
            - Information
            - Warning
            - Error
        text:
          type: string
        data:
          type: object
          additionalProperties: true
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      description: API Key authentication
      name: Authorization
      in: header

````