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

# Get Median USDC/MXN



## OpenAPI

````yaml get /median-usdcmxn-rate/{id}
openapi: 3.0.1
info:
  title: Plumaa ID API
  version: 1.0.0
  description: Generated by SOFA
servers:
  - url: https://api.plumaa.id/rest/v1
    description: Production
  - url: https://api.staging.plumaa.id/rest/v1
    description: Staging
security:
  - apiKey: []
tags:
  - name: ApiKey
    description: ApiKey related operations
  - name: Certificate
    description: Certificate related operations
  - name: Issuer
    description: Issuer related operations
  - name: Organization
    description: Organization related operations
  - name: OrganizationLink
    description: OrganizationLink related operations
  - name: OrganizationMember
    description: OrganizationMember related operations
  - name: SignatureRequestInvite
    description: SignatureRequestInvite related operations
  - name: SignatureRequest
    description: SignatureRequest related operations
  - name: Subject
    description: Subject related operations
  - name: Witness
    description: Witness related operations
  - name: Other
    description: Other operations
  - name: Timeseries
    description: Timeseries related operations
  - name: PriceOracle
    description: Aggregated indexed price data
  - name: Wallet
    description: Wallet related operations
  - name: Endorsable
    description: Endorsable related operations
  - name: EndorseEvent
    description: Endorsable transfer event related operations
paths:
  /median-usdcmxn-rate/{id}:
    get:
      tags:
        - PriceOracle
      operationId: medianUSDCMXNRate_query
      parameters:
        - name: id
          in: path
          required: true
          schema: {}
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MedianUSDCMXNRate'
components:
  schemas:
    MedianUSDCMXNRate:
      type: object
      required:
        - id
        - rate
        - inverseRate
        - timestamp
        - network
      properties:
        id:
          description: >-
            The `BigInt` scalar type represents non-fractional signed whole
            numeric values.
        rate:
          type: number
          format: float
        inverseRate:
          type: number
          format: float
        timestamp:
          type: integer
          format: int32
        network:
          type: integer
          format: int32
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer

````