Upward Financial rewards API

The rewards API from Upward Financial — 4 operation(s) for rewards.

Operations 4

GET /v2/payment-cards/{payment_card_id}/rewards/ List Rewards Configurations #
GET /v2/payment-cards/{payment_card_id}/rewards/enrollments/ List Rewards Enrollments #
POST /v2/payment-cards/{payment_card_id}/rewards/{rewards_configuration_id}/enrollments/ Create Rewards Enrollment #
GET /v2/payment-cards/{payment_card_id}/rewards/{program_id}/offers/ List Rewards Offers #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/upward-financial-rewards-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

upward-financial-rewards-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reference accounts Rewards API
  version: 1.0.0
servers:
- url: https://host.com
  description: Default
tags:
- name: rewards
paths:
  /v2/payment-cards/{payment_card_id}/rewards/:
    get:
      operationId: list-rewards-configurations
      summary: List Rewards Configurations
      description: Returns the cashback rewards configurations available for the given payment card. Each configuration whose `is_active` is `true` can be enrolled in. Use `is_enrolled` to tell whether the cardholder is already enrolled in that configuration.
      tags:
      - rewards
      parameters:
      - name: payment_card_id
        in: path
        description: External ID of the payment card.
        required: true
        schema:
          type: string
      - name: page
        in: query
        description: A page number within the paginated result set.
        required: false
        schema:
          type: integer
      - name: page_size
        in: query
        description: Number of results to return per page.
        required: false
        schema:
          type: integer
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Rewards_listRewardsConfigurations_Response_200'
  /v2/payment-cards/{payment_card_id}/rewards/enrollments/:
    get:
      operationId: list-rewards-enrollments
      summary: List Rewards Enrollments
      description: 'Returns the cashback rewards enrollments for the given payment card. An enrollment with `is_active: true` means the cardholder is currently earning rewards; use its `program_id` to fetch the available offers.'
      tags:
      - rewards
      parameters:
      - name: payment_card_id
        in: path
        description: External ID of the payment card.
        required: true
        schema:
          type: string
      - name: page
        in: query
        description: A page number within the paginated result set.
        required: false
        schema:
          type: integer
      - name: page_size
        in: query
        description: Number of results to return per page.
        required: false
        schema:
          type: integer
      - name: search
        in: query
        description: A search term.
        required: false
        schema:
          type: string
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Rewards_listRewardsEnrollments_Response_200'
  /v2/payment-cards/{payment_card_id}/rewards/{rewards_configuration_id}/enrollments/:
    post:
      operationId: create-rewards-enrollment
      summary: Create Rewards Enrollment
      description: Enrolls the payment card in the given rewards configuration. The configuration must be active (see List Rewards Configurations). No request body is required. Returns the created enrollment.
      tags:
      - rewards
      parameters:
      - name: payment_card_id
        in: path
        description: External ID of the payment card.
        required: true
        schema:
          type: string
      - name: rewards_configuration_id
        in: path
        description: ID of the rewards configuration to enroll in.
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaymentCardRewardsEnrollment'
  /v2/payment-cards/{payment_card_id}/rewards/{program_id}/offers/:
    get:
      operationId: list-rewards-offers
      summary: List Rewards Offers
      description: Returns the cashback offers available to an enrolled payment card for the given rewards program. Pass the `program_id` from the card's active enrollment. Optionally provide `latitude`/`longitude` (and `radius`) to surface location-based in-store offers.
      tags:
      - rewards
      parameters:
      - name: payment_card_id
        in: path
        description: External ID of the payment card.
        required: true
        schema:
          type: string
      - name: program_id
        in: path
        description: Rewards program ID from the card's active enrollment.
        required: true
        schema:
          type: string
      - name: latitude
        in: query
        description: Latitude used to surface nearby in-store offers.
        required: false
        schema:
          type: number
          format: double
      - name: longitude
        in: query
        description: Longitude used to surface nearby in-store offers.
        required: false
        schema:
          type: number
          format: double
      - name: radius
        in: query
        description: Search radius, in miles, around the provided coordinates.
        required: false
        schema:
          type: number
          format: double
      - name: search
        in: query
        description: A search term.
        required: false
        schema:
          type: string
      - name: limit
        in: query
        description: Number of results to return per page.
        required: false
        schema:
          type: integer
      - name: offset
        in: query
        description: The initial index from which to return the results.
        required: false
        schema:
          type: integer
      - name: page
        in: query
        description: A page number within the paginated result set.
        required: false
        schema:
          type: integer
      - name: page_size
        in: query
        description: Number of results to return per page.
        required: false
        schema:
          type: integer
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Rewards_listRewardsOffers_Response_200'
components:
  schemas:
    KardOfferAttributesUserReward:
      type: object
      properties:
        type:
          type: string
        value:
          type: number
          format: double
      title: KardOfferAttributesUserReward
    RewardsConfigurationV2:
      type: object
      properties:
        id:
          type: string
          format: uuid
        configuration_name:
          type: string
        is_active:
          type: boolean
        provider:
          $ref: '#/components/schemas/RewardsConfigurationV2Provider'
        created_at:
          type: string
          format: date-time
        is_enrolled:
          type: boolean
          default: false
      required:
      - id
      - configuration_name
      - is_active
      - provider
      - created_at
      title: RewardsConfigurationV2
    KardOfferRelationships:
      type: object
      properties:
        category:
          $ref: '#/components/schemas/KardOfferRelationshipsCategory'
      title: KardOfferRelationships
    PaymentCardRewardsEnrollment:
      type: object
      properties:
        id:
          type: string
          format: uuid
        program_id:
          type: string
          format: uuid
        configuration_name:
          type: string
        is_active:
          type: boolean
        created_at:
          type: string
          format: date-time
      required:
      - id
      - program_id
      - configuration_name
      - is_active
      - created_at
      title: PaymentCardRewardsEnrollment
    KardOfferRelationshipsCategoryDataItems:
      type: object
      properties:
        id:
          type: string
        type:
          type: string
      required:
      - id
      - type
      title: KardOfferRelationshipsCategoryDataItems
    KardOffer:
      type: object
      properties:
        type:
          type: string
        id:
          type: string
        relationships:
          $ref: '#/components/schemas/KardOfferRelationships'
        attributes:
          $ref: '#/components/schemas/KardOfferAttributes'
        address:
          oneOf:
          - $ref: '#/components/schemas/KardOfferAddress'
          - type: 'null'
        coordinates:
          oneOf:
          - $ref: '#/components/schemas/KardOfferCoordinates'
          - type: 'null'
      title: KardOffer
    KardOfferAttributesMinTransactionAmount:
      type: object
      properties:
        type:
          type: string
        value:
          type: integer
      title: KardOfferAttributesMinTransactionAmount
    RewardsConfigurationV2Provider:
      type: string
      enum:
      - kard
      title: RewardsConfigurationV2Provider
    Rewards_listRewardsEnrollments_Response_200:
      type: object
      properties:
        count:
          type: integer
        next:
          type:
          - string
          - 'null'
          format: uri
        previous:
          type:
          - string
          - 'null'
          format: uri
        results:
          type: array
          items:
            $ref: '#/components/schemas/PaymentCardRewardsEnrollment'
      required:
      - count
      - results
      title: Rewards_listRewardsEnrollments_Response_200
    KardOfferCoordinates:
      type: object
      properties:
        latitude:
          type:
          - number
          - 'null'
          format: double
        longitude:
          type:
          - number
          - 'null'
          format: double
      title: KardOfferCoordinates
    Rewards_listRewardsOffers_Response_200:
      type: object
      properties:
        count:
          type: integer
        next:
          type:
          - string
          - 'null'
          format: uri
        previous:
          type:
          - string
          - 'null'
          format: uri
        results:
          type: array
          items:
            $ref: '#/components/schemas/KardOffer'
      required:
      - count
      - results
      title: Rewards_listRewardsOffers_Response_200
    KardOfferRelationshipsCategory:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/KardOfferRelationshipsCategoryDataItems'
      title: KardOfferRelationshipsCategory
    KardOfferAttributesAssetsItems:
      type: object
      properties:
        url:
          type: string
        alt:
          type: string
        type:
          type: string
      title: KardOfferAttributesAssetsItems
    KardOfferAttributes:
      type: object
      properties:
        terms:
          type: string
        name:
          type: string
        purchaseChannel:
          type: array
          items:
            type: string
        userReward:
          $ref: '#/components/schemas/KardOfferAttributesUserReward'
        assets:
          type: array
          items:
            $ref: '#/components/schemas/KardOfferAttributesAssetsItems'
        startDate:
          type: string
        expirationDate:
          type: string
        minTransactionAmount:
          $ref: '#/components/schemas/KardOfferAttributesMinTransactionAmount'
        maxRewardAmount:
          $ref: '#/components/schemas/KardOfferAttributesMaxRewardAmount'
        websiteUrl:
          type: string
        isTargeted:
          type: boolean
        description:
          type: string
      title: KardOfferAttributes
    Rewards_listRewardsConfigurations_Response_200:
      type: object
      properties:
        count:
          type: integer
        next:
          type:
          - string
          - 'null'
          format: uri
        previous:
          type:
          - string
          - 'null'
          format: uri
        results:
          type: array
          items:
            $ref: '#/components/schemas/RewardsConfigurationV2'
      required:
      - count
      - results
      title: Rewards_listRewardsConfigurations_Response_200
    KardOfferAttributesMaxRewardAmount:
      type: object
      properties:
        type:
          type: string
        value:
          type: integer
      title: KardOfferAttributesMaxRewardAmount
    KardOfferAddress:
      type: object
      properties:
        street:
          type:
          - string
          - 'null'
        city:
          type:
          - string
          - 'null'
        state:
          type:
          - string
          - 'null'
        zipCode:
          type:
          - string
          - 'null'
      title: KardOfferAddress
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer