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

# 환율 정보 조회

> 환율정보를 조회합니다. 환율은 매일 KST기준 9시 업데이트 됩니다.



## OpenAPI

````yaml /api-reference/global-checkout-api.json GET /open-api/v1/currencies/latest
openapi: 3.0.1
info:
  title: Global Checkout Open API
  description: '-'
  version: 1.0.0
servers:
  - url: https://gw-staging.delivered.co.kr/global-checkout
    description: 테스트 환경
  - url: https://gw.delivered.co.kr/global-checkout
    description: 운영 환경
  - url: http://localhost:9220
    description: 로컬 환경
security:
  - Authorization: []
tags:
  - name: 주문
    description: 주문
  - name: 환율
    description: 환율
paths:
  /open-api/v1/currencies/latest:
    get:
      tags:
        - 환율
      summary: 환율 조회
      description: 환율정보를 조회합니다. 환율은 매일 KST기준 9시 업데이트 됩니다.
      operationId: getSellerMarkupCurrency
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/OpenApiCurrencyResponse'
components:
  schemas:
    OpenApiCurrencyResponse:
      required:
        - quotes
        - updateAt
      type: object
      properties:
        updateAt:
          type: string
          format: date
        quotes:
          $ref: '#/components/schemas/OpenApiCurrencyQuotes'
    OpenApiCurrencyQuotes:
      required:
        - krwusd
      type: object
      properties:
        krwusd:
          type: number
          example: 1238.42
  securitySchemes:
    Authorization:
      type: apiKey
      description: 발급받은 시크릿 키
      name: Authorization
      in: header

````