> ## 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.

# List Median MXN/USD



## OpenAPI

````yaml get /median-mxnusd-rates
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-mxnusd-rates:
    get:
      tags:
        - PriceOracle
      operationId: medianMXNUSDRates_query
      parameters:
        - name: where
          in: query
          required: false
          schema:
            $ref: '#/components/schemas/MedianMXNUSDRateFilter'
        - name: orderBy
          in: query
          required: false
          schema:
            type: string
        - name: orderDirection
          in: query
          required: false
          schema:
            type: string
        - name: before
          in: query
          required: false
          schema:
            type: string
        - name: after
          in: query
          required: false
          schema:
            type: string
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MedianMXNUSDRatePage'
components:
  schemas:
    MedianMXNUSDRateFilter:
      type: object
      properties:
        AND:
          type: array
          items:
            type: object
        OR:
          type: array
          items:
            type: object
        id:
          description: >-
            The `BigInt` scalar type represents non-fractional signed whole
            numeric values.
        id_not:
          description: >-
            The `BigInt` scalar type represents non-fractional signed whole
            numeric values.
        id_in:
          type: array
          items:
            description: >-
              The `BigInt` scalar type represents non-fractional signed whole
              numeric values.
        id_not_in:
          type: array
          items:
            description: >-
              The `BigInt` scalar type represents non-fractional signed whole
              numeric values.
        id_gt:
          description: >-
            The `BigInt` scalar type represents non-fractional signed whole
            numeric values.
        id_lt:
          description: >-
            The `BigInt` scalar type represents non-fractional signed whole
            numeric values.
        id_gte:
          description: >-
            The `BigInt` scalar type represents non-fractional signed whole
            numeric values.
        id_lte:
          description: >-
            The `BigInt` scalar type represents non-fractional signed whole
            numeric values.
        rate:
          type: number
          format: float
        rate_not:
          type: number
          format: float
        rate_in:
          type: array
          items:
            type: number
            format: float
        rate_not_in:
          type: array
          items:
            type: number
            format: float
        rate_gt:
          type: number
          format: float
        rate_lt:
          type: number
          format: float
        rate_gte:
          type: number
          format: float
        rate_lte:
          type: number
          format: float
        inverseRate:
          type: number
          format: float
        inverseRate_not:
          type: number
          format: float
        inverseRate_in:
          type: array
          items:
            type: number
            format: float
        inverseRate_not_in:
          type: array
          items:
            type: number
            format: float
        inverseRate_gt:
          type: number
          format: float
        inverseRate_lt:
          type: number
          format: float
        inverseRate_gte:
          type: number
          format: float
        inverseRate_lte:
          type: number
          format: float
        timestamp:
          type: integer
          format: int32
        timestamp_not:
          type: integer
          format: int32
        timestamp_in:
          type: array
          items:
            type: integer
            format: int32
        timestamp_not_in:
          type: array
          items:
            type: integer
            format: int32
        timestamp_gt:
          type: integer
          format: int32
        timestamp_lt:
          type: integer
          format: int32
        timestamp_gte:
          type: integer
          format: int32
        timestamp_lte:
          type: integer
          format: int32
        network:
          type: integer
          format: int32
        network_not:
          type: integer
          format: int32
        network_in:
          type: array
          items:
            type: integer
            format: int32
        network_not_in:
          type: array
          items:
            type: integer
            format: int32
        network_gt:
          type: integer
          format: int32
        network_lt:
          type: integer
          format: int32
        network_gte:
          type: integer
          format: int32
        network_lte:
          type: integer
          format: int32
    MedianMXNUSDRatePage:
      type: object
      required:
        - items
        - pageInfo
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/MedianMXNUSDRate'
        pageInfo:
          $ref: '#/components/schemas/PageInfo'
    MedianMXNUSDRate:
      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
    PageInfo:
      type: object
      required:
        - hasNextPage
        - hasPreviousPage
      properties:
        hasNextPage:
          type: boolean
        hasPreviousPage:
          type: boolean
        startCursor:
          type: string
        endCursor:
          type: string
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer

````