Goody Cards API

The Cards API from Goody — 1 operation(s) for cards.

Operations 1

GET /v1/cards Retrieve cards

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/goody-cards-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

goody-cards-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Goody Brands Cards API
  version: 1.0.0
  contact:
    name: Goody Support
    email: support@ongoody.com
servers:
- url: https://api.ongoody.com
  description: Production
- url: https://api.sandbox.ongoody.com
  description: Sandbox
tags:
- name: Cards
paths:
  /v1/cards:
    get:
      summary: Retrieve cards
      tags:
      - Cards
      security:
      - bearer: []
      parameters:
      - name: page
        in: query
        schema:
          type: integer
          default: 1
          minimum: 1
        description: Page for pagination, starting at 1
        required: false
      - name: per_page
        in: query
        schema:
          type: integer
          default: 20
          minimum: 1
          maximum: 100
        description: Items per page for pagination
        required: false
      responses:
        '200':
          description: Cards retrieved
          content:
            application/json:
              examples:
                Cards retrieved:
                  value:
                    data:
                    - id: 9f6a0a5e-bbd5-4bb6-bd6d-c6eaab586522
                      image:
                        url: https://assets.ongoody.com/cards/222.png?format=png
                        width: 800
                        height: 1130
                      image_thumb:
                        url: https://assets.ongoody.com/cards/222.png?width=200&format=png
                        width: 200
                        height: 283
                      occasions:
                      - Congratulations
                      - Onboarding
                    - id: addda4f1-f501-4dfe-9b1d-fa53c8814c85
                      image:
                        url: https://assets.ongoody.com/cards/111.png?format=png
                        width: 800
                        height: 1130
                      image_thumb:
                        url: https://assets.ongoody.com/cards/111.png?width=200&format=png
                        width: 200
                        height: 283
                      occasions: []
                    list_meta:
                      total_count: 2
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Card'
                  list_meta:
                    $ref: '#/components/schemas/ListMeta'
        '401':
          description: Failed to authorize
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    ListMeta:
      type: object
      properties:
        total_count:
          type: integer
          description: The total number of items in this list.
    Card:
      type: object
      properties:
        id:
          type: string
          format: uuid
        image:
          $ref: '#/components/schemas/Image'
          description: The image URL for this card. Typically 800x1130.
        image_thumb:
          $ref: '#/components/schemas/Image'
          description: The thumbnail image URL for this card. Typically 200x283.
        occasions:
          type: array
          items:
            type: string
          description: An array of occasions that this card is relevant for.
      required:
      - id
      - image
      - image_thumb
      - occasions
    Image:
      type: object
      properties:
        url:
          type: string
        width:
          type: integer
        height:
          type: integer
      required:
      - url
    Error:
      type: object
      properties:
        error:
          type: string
      required:
      - error
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
      description: Your Goody API key.