Cardlytics Redemptions API

The Redemptions API from Cardlytics — 1 operation(s) for redemptions.

Operations 1

GET /api/v1/partner/redemptions Get daily redemptions pre-signed URL

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/cardlytics-redemptions-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 email required.

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

OpenAPI Specification

cardlytics-redemptions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: partner-api Redemptions API
  description: Partner APIs
  version: '2025-10-07'
servers:
- url: https://api-sandbox.cardlytics.com
  description: Sandbox environment - Use this for API testing and development
- url: https://api.cardlytics.com
  description: Production environment - Documentation reference only, contact support for access
security:
- oauth2:
  - openid
tags:
- name: Redemptions
paths:
  /api/v1/partner/redemptions:
    get:
      summary: Get daily redemptions pre-signed URL
      description: Returns a pre-signed URL to download all redemptions for a specific day. The day must be in the past (UTC time). The pre-signed URL is valid for 60 minutes only.
      tags:
      - Redemptions
      parameters:
      - name: date
        in: query
        description: 'The date for which to retrieve redemptions (format: YYYY-MM-DD, must be a past date and not today or in the future).'
        required: true
        schema:
          type: string
          format: date
          example: '2026-01-04'
      responses:
        '200':
          description: Pre-signed URL generated successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  url:
                    type: string
                    description: The pre-signed URL to download the redemptions file.
                required:
                - url
        '400':
          description: Bad Request - The date format is incorrect, or the date is today's date or in the future.
        '500':
          description: Internal Server Error - An unexpected error occurred.
components:
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: /v1/idp/oauth2/token
          scopes:
            openid: openid
x-readme:
  explorer-enabled: true
  proxy-enabled: true