# 付款方式

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v1/account/credits/payments:
    get:
      summary: 付款方式
      deprecated: false
      description: |+
        返回您帐户中最近 100 笔信用付款

      tags:
        - 帐户
      parameters:
        - name: X-OAI-API-KEY
          in: header
          description: ''
          required: true
          example: your-api-key
          schema:
            type: string
        - name: Content-Type
          in: header
          description: ''
          required: true
          example: application/json
          schema:
            type: string
      requestBody:
        content:
          text/plain:
            schema:
              type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  payments:
                    type: array
                    items:
                      type: object
                      properties:
                        credits:
                          type: integer
                        price:
                          type: string
                        receipt:
                          type: string
                        date:
                          type: string
                      required:
                        - credits
                        - price
                        - receipt
                        - date
                      x-apifox-orders:
                        - credits
                        - price
                        - receipt
                        - date
                required:
                  - payments
                x-apifox-orders:
                  - payments
              example:
                payments:
                  - credits: 7168
                    price: $71.68 USD
                    receipt: >-
                      https://pay.stripe.com/receipts/payment/CAcQARoXChVhY2N0Xz...
                    date: '2023-04-03T20:49:30.000000Z'
                  - credits: 2000
                    price: $20.00 USD
                    receipt: >-
                      https://pay.stripe.com/receipts/payment/CAcQARoXChVhY2N0XzFMRnhySkVPb2tzbHZoSmIo1_XroAYyBsuxjHQh1zosFpv2yaA7uHhuXDo3HgKVpY...
                    date: '2023-03-22T12:55:52.000000Z'
                  - credits: 2000
                    price: $20.00 USD
                    receipt: >-
                      https://pay.stripe.com/receipts/payment/CAcQARoXChVhY2N0XzFMRnhySkVPb2tzbHZoSmIol9HgngYyBuafybh7QTosFsBxpQNwZONtjygP_8wI_B...
                    date: '2023-01-30T20:29:11.000000Z'
                  - credits: 1000
                    price: $10.00 USD
                    receipt: >-
                      https://pay.stripe.com/receipts/payment/CAcQARoXChVhY2N0XzFMRnhySkVPb2tzbHZoSmIouOWlngYyBpb6DZSuTjosFjJ62mZJR3MCwX9SEfnnJCr...
                    date: '2023-01-19T16:41:28.000000Z'
                  - credits: 1000
                    price: $10.00 USD
                    receipt: >-
                      https://pay.stripe.com/receipts/payment/CAcQARoXChVhY2N0XzFMRnhySkVPb2tzbHZoSmIotfmbngYyBswa61x_2josFtXqoAMcr2N_BSpQhuec5XO...
                    date: '2023-01-17T19:53:25.000000Z'
                  - credits: 1000
                    price: $10.00 USD
                    receipt: >-
                      https://pay.stripe.com/receipts/payment/CAcQARoXChVhY2N0XzFMRnhySkVPb2tzbHZoSmIo6_D7nQYyBpW_enbbmjosFhoMj2n1iZZP72R6d1bOujx...
                    date: '2023-01-11T17:56:59.000000Z'
          headers: {}
          x-apifox-name: 成功
      security: []
      x-apifox-folder: 帐户
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4162615/apis/api-155617762-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: http://dev-cn.your-api-server.com
    description: 开发环境
  - url: http://test-cn.your-api-server.com
    description: 测试环境
  - url: https://api.originality.ai
    description: 正式环境
security: []

```
