BrightEdge time API

Operation related to time

Operations 2

GET /5.0/objects/time/{account_id}/{time_frequency}/{day} This call returns the time value for a given time frequency and day #
GET /latest5/objects/time/{account_id}/{time_frequency}/{day} This call returns the time value for a given time frequency and day #

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/brightedge-time-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

brightedge-time-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: BrightEdge Platform Time API
  description: This API provides the ability to integrate with BrightEdge Platform
  version: 5.0.0
tags:
- name: time
  description: Operation related to time
paths:
  /5.0/objects/time/{account_id}/{time_frequency}/{day}:
    get:
      tags:
      - time
      summary: This call returns the time value for a given time frequency and day
      operationId: get_time_value_5_0_objects_time__account_id___time_frequency___day__get
      parameters:
      - required: true
        schema:
          type: integer
          title: Account Id
        name: account_id
        in: path
      - required: true
        schema:
          $ref: '#/components/schemas/TimeTimeStringType'
        name: time_frequency
        in: path
      - required: true
        schema:
          type: integer
          maximum: 99991231.0
          minimum: 19600101.0
          title: The day number in YYYYMMDD format
        name: day
        in: path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TimeFrequencyOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
  /latest5/objects/time/{account_id}/{time_frequency}/{day}:
    get:
      tags:
      - time
      summary: This call returns the time value for a given time frequency and day
      operationId: get_time_value_latest5_objects_time__account_id___time_frequency___day__get
      parameters:
      - required: true
        schema:
          type: integer
          title: Account Id
        name: account_id
        in: path
      - required: true
        schema:
          $ref: '#/components/schemas/TimeTimeStringType'
        name: time_frequency
        in: path
      - required: true
        schema:
          type: integer
          maximum: 99991231.0
          minimum: 19600101.0
          title: The day number in YYYYMMDD format
        name: day
        in: path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TimeFrequencyOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - http_basic: []
      - forwarded_http_basic: []
      - session_cookie: []
      - session_header: []
      - api_token_header: []
      - bearer_token: []
components:
  schemas:
    TimeFrequencyOut:
      properties:
        time_value:
          type: integer
          title: Time Value
        day_value:
          type: integer
          title: Day Value
        time_frequency:
          $ref: '#/components/schemas/TimeTimeStringType'
      type: object
      required:
      - time_value
      - day_value
      - time_frequency
      title: TimeFrequencyOut
    TimeTimeStringType:
      type: string
      enum:
      - daily
      - weekly
      - monthly
      - quarterly
      - yearly
      - fiscal_weekly
      - fiscal_monthly
      - fiscal_quarterly
      - fiscal_yearly
      title: TimeTimeStringType
      description: An enumeration.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
  securitySchemes:
    http_basic:
      type: http
      scheme: basic
    forwarded_http_basic:
      type: apiKey
      in: header
      name: X-Forwarded-Authorization
    session_cookie:
      type: apiKey
      in: cookie
      name: BRIGHTEDGE
    session_header:
      type: apiKey
      in: header
      name: X-BRIGHTEDGE-SESSION
    api_token_header:
      type: apiKey
      in: header
      name: X-Token
    bearer_token:
      type: apiKey
      in: header
      name: Bearer-Token