Fetch Rewards Receipts API

The Receipts API from Fetch Rewards — 2 operation(s) for receipts.

Operations 2

POST /receipts/process Submits a receipt for processing.
GET /receipts/{id}/points Returns the points awarded for the receipt.

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/fetch-rewards-receipts-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

fetch-rewards-receipts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Receipt Processor Receipts API
  description: A simple receipt processor
  version: 1.0.0
tags:
- name: Receipts
paths:
  /receipts/process:
    post:
      summary: Submits a receipt for processing.
      description: Submits a receipt for processing.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Receipt'
      responses:
        200:
          description: Returns the ID assigned to the receipt.
          content:
            application/json:
              schema:
                type: object
                required:
                - id
                properties:
                  id:
                    type: string
                    pattern: ^\S+$
                    example: adb6b560-0eef-42bc-9d16-df48f30e89b2
        400:
          $ref: '#/components/responses/BadRequest'
      tags:
      - Receipts
  /receipts/{id}/points:
    get:
      summary: Returns the points awarded for the receipt.
      description: Returns the points awarded for the receipt.
      parameters:
      - name: id
        in: path
        required: true
        description: The ID of the receipt.
        schema:
          type: string
          pattern: ^\S+$
      responses:
        200:
          description: The number of points awarded.
          content:
            application/json:
              schema:
                type: object
                properties:
                  points:
                    type: integer
                    format: int64
                    example: 100
        404:
          $ref: '#/components/responses/NotFound'
      tags:
      - Receipts
components:
  schemas:
    Item:
      type: object
      required:
      - shortDescription
      - price
      properties:
        shortDescription:
          description: The Short Product Description for the item.
          type: string
          pattern: ^[\w\s\-]+$
          example: Mountain Dew 12PK
        price:
          description: The total price payed for this item.
          type: string
          pattern: ^\d+\.\d{2}$
          example: '6.49'
    Receipt:
      type: object
      required:
      - retailer
      - purchaseDate
      - purchaseTime
      - items
      - total
      properties:
        retailer:
          description: The name of the retailer or store the receipt is from.
          type: string
          pattern: ^[\w\s\-&]+$
          example: M&M Corner Market
        purchaseDate:
          description: The date of the purchase printed on the receipt.
          type: string
          format: date
          example: '2022-01-01'
        purchaseTime:
          description: The time of the purchase printed on the receipt. 24-hour time expected.
          type: string
          format: time
          example: '13:01'
        items:
          type: array
          minItems: 1
          items:
            $ref: '#/components/schemas/Item'
        total:
          description: The total amount paid on the receipt.
          type: string
          pattern: ^\d+\.\d{2}$
          example: '6.49'
  responses:
    BadRequest:
      description: The receipt is invalid.
    NotFound:
      description: No receipt found for that ID.