Prevedere Favorites API
The Favorites API from Prevedere — 2 operation(s) for favorites.
The Favorites API from Prevedere — 2 operation(s) for favorites.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/prevedere-favorites-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Board Foresight API - V1 Alert Favorites API
description: ''
version: v1
servers:
- url: https://api.prevedere.com
description: Base URL declared by the provider in apis.yml (roadmap#122).
security:
- api key: []
tags:
- name: Favorites
description: ''
paths:
/favorites:
get:
tags:
- Favorites
description: Retrieves all the favorites-lists for the company
responses:
'200':
description: OK
content:
text/plain:
schema:
type: array
items:
$ref: '#/components/schemas/FavoriteInfo'
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/FavoriteInfo'
text/json:
schema:
type: array
items:
$ref: '#/components/schemas/FavoriteInfo'
'429':
description: If the user has sent too many requests
/favorite/{Id}:
get:
tags:
- Favorites
description: Retrieves the specified favorite
parameters:
- name: Id
in: path
required: true
schema:
type: string
format: uuid
responses:
'200':
description: OK
content:
text/plain:
schema:
$ref: '#/components/schemas/Favorite'
application/json:
schema:
$ref: '#/components/schemas/Favorite'
text/json:
schema:
$ref: '#/components/schemas/Favorite'
'429':
description: If the user has sent too many requests
components:
schemas:
ProviderAccess:
enum:
- 0
- 1
- 2
type: integer
format: int32
Classification:
enum:
- 0
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
type: integer
format: int32
Calculation:
enum:
- 0
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
type: integer
description: 'The transformation applied to the data.
Possible options:
None 1
PeriodOverPeriod 2
YearOverYear 3
ThreePeriodYearOverYear 6'
format: int32
IndicatorType:
enum:
- 0
- 1
- 2
- 3
- 4
- 5
- 6
- 7
type: integer
format: int32
Seasonality:
enum:
- 0
- 1
- 999
type: integer
format: int32
PeriodAlignment:
enum:
- 0
- 1
- 2
type: integer
format: int32
Provider:
type: object
properties:
name:
type:
- string
- 'null'
description:
type:
- string
- 'null'
id:
type: string
format: uuid
source:
type:
- string
- 'null'
additionalProperties: false
Favorite:
type: object
properties:
info:
$ref: '#/components/schemas/FavoriteInfo'
indicators:
type:
- array
- 'null'
items:
$ref: '#/components/schemas/Indicator'
additionalProperties: false
IndicatorDataSource:
type: object
properties:
name:
type:
- string
- 'null'
url:
type:
- string
- 'null'
dataSourceType:
$ref: '#/components/schemas/IndicatorType'
additionalProperties: false
Frequency:
enum:
- 0
- 1
- 2
- 4
- 12
- 52
- 365
- 1000
type: integer
description: 'The frequency of the data.
Daily: 365
Weekly: 52
Monthly: 12
Quarterly: 4
SemiAnnual: 2
Annual: 1'
format: int32
DisplayInformation:
type: object
properties:
name:
type:
- string
- 'null'
description: The display name to be used in the application. Limited to 50 characters.
description:
type:
- string
- 'null'
description: The description to be shown in the application. Limited to 1,000 characters.
color:
type:
- string
- 'null'
description: The color to use in the application. Must be a valid hex color code.
category:
type:
- string
- 'null'
description: The category of the indicator. Limited to 1,000 characters.
additionalProperties: false
Indicator:
type: object
properties:
id:
type: string
format: uuid
name:
type:
- string
- 'null'
description:
type:
- string
- 'null'
aggregate:
$ref: '#/components/schemas/AggregationMethod'
calculation:
$ref: '#/components/schemas/Calculation'
color:
type:
- string
- 'null'
displayInformation:
$ref: '#/components/schemas/DisplayInformation'
count:
type: integer
format: int32
created:
type: string
format: date-time
startTime:
type:
- string
- 'null'
format: date-time
endTime:
type:
- string
- 'null'
format: date-time
transformedStartTime:
type:
- string
- 'null'
format: date-time
transformedEndTime:
type:
- string
- 'null'
format: date-time
frequency:
$ref: '#/components/schemas/Frequency'
deprecated:
type: boolean
deprecationReason:
type:
- string
- 'null'
lastModified:
type: string
format: date-time
provider:
$ref: '#/components/schemas/Provider'
providerId:
type:
- string
- 'null'
seasonality:
$ref: '#/components/schemas/Seasonality'
source:
type:
- string
- 'null'
classification:
$ref: '#/components/schemas/Classification'
tags:
type:
- array
- 'null'
items:
type: string
type:
type:
- string
- 'null'
units:
type:
- string
- 'null'
accessibility:
$ref: '#/components/schemas/ProviderAccess'
periodAlignment:
$ref: '#/components/schemas/PeriodAlignment'
path:
type:
- string
- 'null'
notes:
type:
- string
- 'null'
citation:
type:
- string
- 'null'
dataSources:
type:
- array
- 'null'
items:
$ref: '#/components/schemas/IndicatorDataSource'
industryCodes:
type:
- array
- 'null'
items:
$ref: '#/components/schemas/IndustryCode'
hasZeroVariance:
type:
- boolean
- 'null'
interval:
type:
- string
- 'null'
countryCode:
type:
- string
- 'null'
additionalProperties: false
IndustryCode:
type: object
properties:
type:
type:
- string
- 'null'
code:
type:
- string
- 'null'
additionalProperties: false
FavoriteInfo:
type: object
properties:
id:
type: string
format: uuid
owner:
type:
- string
- 'null'
label:
type:
- string
- 'null'
created:
type: string
format: date-time
isPublic:
type: boolean
isPrevedere:
type: boolean
count:
type: integer
format: int32
additionalProperties: false
AggregationMethod:
enum:
- 0
- 1
- 2
- 3
- 4
- 5
- 6
type: integer
format: int32
securitySchemes:
api_key:
type: apiKey
name: ApiKey
in: query