Infusionsoft (Keap) Date Expression API

The DateExpression API from Infusionsoft (Keap) — 1 operation(s) for dateexpression.

Operations 1

GET /v2/dateExpressions #

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/infusionsoft-dateexpression-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

infusionsoft-dateexpression-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Infusionsoft Date Expression API
  version: v1
  contact:
    name: Gryffindor
    email: gryffindor@keap.com
  description: 'Operations tagged DateExpression across 2 of this provider''s published API definitions: infusionsoft-pipelines-openapi-original.yml, infusionsoft-pipelines-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.infusionsoft.com
tags:
- name: DateExpression
paths:
  /v2/dateExpressions:
    get:
      tags:
      - DateExpression
      operationId: queryDateExpressions
      parameters:
      - name: time_zone
        in: query
        schema:
          type:
          - string
          - 'null'
      - name: query
        in: query
        schema:
          type:
          - string
          - 'null'
      responses:
        '200':
          description: queryDateExpressions 200 response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DateExpressionResponse'
      security:
      - BearerAuth: []
    servers:
    - url: https://api.infusionsoft.com
components:
  schemas:
    DateExpressionResponse:
      type: object
      properties:
        results:
          type: array
          items:
            $ref: '#/components/schemas/DateExpression'
    DateExpression:
      required:
      - date_inferred
      - parse_end
      - parse_start
      - query
      - recurring
      - recurse_until
      - result
      - time_inferred
      type: object
      properties:
        query:
          type: string
        parse_start:
          type: integer
          description: Where in the expression this date exists (start)
          format: int32
        parse_end:
          type: integer
          description: Where in the expression this date exists
          format: int32
        date_inferred:
          type: boolean
          description: Whether the date portion of the results has been inferred (and can be ignored)
        time_inferred:
          type: boolean
          description: Whether the time portion of the results has been inferred (and can be ignored)
        result:
          allOf:
          - $ref: '#/components/schemas/LogicalDate'
          - description: ''
        recurring:
          type: boolean
          description: Whether the results are recurring
        recurse_until:
          description: If recurring, when the recurrence ends
          allOf:
          - $ref: '#/components/schemas/LogicalDate'
          - description: ''
        complete_match:
          type:
          - boolean
          - 'null'
    LogicalDate:
      type: object
      properties:
        dates:
          type: array
          items:
            type: string
            format: date-time
        chain:
          type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: jwt
    oauth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://accounts.infusionsoft.com/app/oauth/authorize
          tokenUrl: https://api.infusionsoft.com/token
          scopes:
            api: General API access
x-refined-from:
- infusionsoft-pipelines-openapi-original.yml
- infusionsoft-pipelines-openapi.yml