> ## 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 Weekly USDC/USD



## OpenAPI

````yaml get /weekly-bucket-usdcusd-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:
  /weekly-bucket-usdcusd-rate/{id}:
    get:
      tags:
        - PriceOracle
      operationId: weeklyBucketUSDCUSDRate_query
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WeeklyBucketUSDCUSDRate'
components:
  schemas:
    WeeklyBucketUSDCUSDRate:
      type: object
      required:
        - id
        - open
        - close
        - low
        - high
        - average
        - inverseOpen
        - inverseClose
        - inverseLow
        - inverseHigh
        - inverseAverage
        - count
      properties:
        id:
          type: integer
          format: int32
        open:
          type: number
          format: float
        close:
          type: number
          format: float
        low:
          type: number
          format: float
        high:
          type: number
          format: float
        average:
          type: number
          format: float
        inverseOpen:
          type: number
          format: float
        inverseClose:
          type: number
          format: float
        inverseLow:
          type: number
          format: float
        inverseHigh:
          type: number
          format: float
        inverseAverage:
          type: number
          format: float
        count:
          type: integer
          format: int32
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer

````