Payments Canada Update Extract Resource API

Update Extract Resource

Operations 1

GET /api/v1/extracts/updated Get the Update Extract for the most recent cycle #

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/payments-canada-update-extract-resource-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

payments-canada-update-extract-resource-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: API to retrieve ccin extract data.  This is the same data previously provided by the weekly extract files from CCIN.
  version: '1.0'
  title: CCIN Output Update Extract Resource API
servers:
- url: https://api.payments.ca/
tags:
- name: update-extract-resource
  description: Update Extract Resource
paths:
  /api/v1/extracts/updated:
    get:
      tags:
      - update-extract-resource
      summary: Get the Update Extract for the most recent cycle
      operationId: getUpdateExtractUsingGET
      parameters:
      - name: allRecords
        in: query
        required: false
        schema:
          type: boolean
      - name: endDate
        in: query
        description: Setting this parameter will set the end date to retrieve data for. Format expected is yyyy-MM-dd
        required: false
        allowEmptyValue: false
        schema:
          type: string
          format: date
      - name: limit
        in: query
        description: How many records to retrieve
        required: false
        schema:
          type: integer
          format: int32
      - name: page
        in: query
        description: Start page to get the data for the dataset
        required: false
        schema:
          type: integer
          format: int32
      - name: sortField
        in: query
        description: The field to sort on
        required: false
        schema:
          type: string
      - name: sortOrder
        in: query
        description: The direction to sort on, true for ascending
        required: false
        schema:
          type: boolean
      - name: startDate
        in: query
        description: Setting this parameter will set the start date to retrieve data for. Format expected is yyyy-MM-dd
        required: false
        allowEmptyValue: false
        schema:
          type: string
          format: date
      responses:
        '200':
          description: OK
          content:
            application/vnd.ccin.api.v1+json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Update_Extract_Record'
      deprecated: false
components:
  schemas:
    Value_Changed:
      type: object
      properties:
        changed:
          type: boolean
          description: Determines if the field value was changed
        value:
          type: object
          description: The object that may have been, typically a string
      title: Value changed
    Update_Extract_Record:
      type: object
      properties:
        acceptableMediaType:
          $ref: '#/components/schemas/Value_Changed'
        action:
          type: string
          description: 'The action performed on the CCIN. The values are: A - Added, C - Changed, D- Deleted'
          enum:
          - A
          - C
          - D
        address1:
          $ref: '#/components/schemas/Value_Changed'
        address2:
          $ref: '#/components/schemas/Value_Changed'
        address3:
          $ref: '#/components/schemas/Value_Changed'
        address4:
          $ref: '#/components/schemas/Value_Changed'
        ccin:
          type: string
        countryCode:
          $ref: '#/components/schemas/Value_Changed'
        cycleDate:
          type: string
          format: date
          description: The cycle date that this data belongs to
        dateCcinIssued:
          $ref: '#/components/schemas/Value_Changed'
        leadFi:
          $ref: '#/components/schemas/Value_Changed'
        postal:
          $ref: '#/components/schemas/Value_Changed'
        provCode:
          $ref: '#/components/schemas/Value_Changed'
        returnCheckDprn:
          $ref: '#/components/schemas/Value_Changed'
        shortname:
          $ref: '#/components/schemas/Value_Changed'
        sicCode:
          $ref: '#/components/schemas/Value_Changed'
        status:
          $ref: '#/components/schemas/Value_Changed'
        statusDate:
          $ref: '#/components/schemas/Value_Changed'
      title: Update Extract Record