A&A Card Creator by For.io

Vand ID: vand-a282e50d-2bc9-4fbd-bdd7-5314d280ebe6

Learn how to easily use the A&A Card Creator by For.io tool with the OpenAI API.

Creates visually appealing social media cards from textual input.

OpenAI function calls:

{
  "name": "createCardFromList",
  "description": "Creates a social media card containing a summary list, taking a given title and a list of summary points as input.",
  "parameters": {
    "type": "object",
    "properties": {
      "title": {
        "type": "string",
        "description": "the title of the card that will be created"
      },
      "summary_points": {
        "items": {
          "type": "string"
        },
        "type": "array",
        "description": "a list of summary points for the card that will be created"
      }
    }
  }
}
{
  "name": "createCardFromTable",
  "description": "Creates a social media card containing a table, taking a given title and table data as input.",
  "parameters": {
    "type": "object",
    "properties": {
      "title": {
        "type": "string",
        "description": "the title of the card that will be created"
      },
      "column_names": {
        "items": {
          "type": "string"
        },
        "type": "array",
        "description": "a list of the names of the columns of the table for the card that will be created"
      },
      "rows_data": {
        "items": {
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        "type": "array",
        "description": "the rows of the table for the card that will be created"
      }
    }
  }
}

Auth Type

none

Servers

https://cards.for.io

OpenAPI:

{
  "openapi": "3.0.3",
  "info": {
    "title": "A\u0026A Card Creator by For.io",
    "description": "Creates visually appealing social media cards from textual input.",
    "termsOfService": "https://for.io/legal/tos",
    "contact": {
      "name": "For.io Contact",
      "url": "https://for.io/",
      "email": "contact@for.io"
    },
    "version": "1.0.1"
  },
  "paths": {
    "/cards/from-list": {
      "post": {
        "operationId": "createCardFromList",
        "description": "Creates a social media card containing a summary list, taking a given title and a list of summary points as input.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CardData"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ResultInfo"
                }
              }
            }
          }
        }
      }
    },
    "/cards/from-table": {
      "post": {
        "operationId": "createCardFromTable",
        "description": "Creates a social media card containing a table, taking a given title and table data as input.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/TableData"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ResultInfo"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "CardData": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string",
            "description": "the title of the card that will be created"
          },
          "summary_points": {
            "type": "array",
            "description": "a list of summary points for the card that will be created",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "TableData": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string",
            "description": "the title of the card that will be created"
          },
          "column_names": {
            "type": "array",
            "description": "a list of the names of the columns of the table for the card that will be created",
            "items": {
              "type": "string"
            }
          },
          "rows_data": {
            "type": "array",
            "description": "the rows of the table for the card that will be created",
            "items": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          }
        }
      },
      "ResultInfo": {
        "type": "object",
        "properties": {
          "urls": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "the URLs of the newly created social media cards"
          }
        }
      }
    }
  },
  "servers": [
    {
      "url": "https://cards.for.io"
    }
  ]
}