Moody's Series Search API

The SeriesSearch API from Moody's — 2 operation(s) for seriessearch.

Operations 2

POST /project/{projectId}/search/count Gets the record count for a search query. #
POST /project/{projectId}/search/results Gets the records for a search query. #

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/moodys-seriessearch-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

moodys-seriessearch-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: v2
  title: Scenario Studio Series Search API
  description: API access to Moody's Analytics Scenario Studio.
servers:
- url: https://api.economy.com/scenario-studio/v2
tags:
- name: SeriesSearch
paths:
  /project/{projectId}/search/count:
    post:
      tags:
      - SeriesSearch
      summary: Gets the record count for a search query.
      operationId: SeriesSearch_GetCountAsync
      parameters:
      - name: projectId
        in: path
        description: The Id of the project.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
            text/json:
              schema:
                type: object
      security:
      - oauth2: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SeriesSearchOptions'
          text/json:
            schema:
              $ref: '#/components/schemas/SeriesSearchOptions'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/SeriesSearchOptions'
        description: The search options.
        required: true
  /project/{projectId}/search/results:
    post:
      tags:
      - SeriesSearch
      summary: Gets the records for a search query.
      operationId: SeriesSearch_GetResultsAsync
      parameters:
      - name: projectId
        in: path
        description: The Id of the project.
        required: true
        schema:
          type: string
      - name: skip
        in: query
        description: The record count to skip.
        required: false
        schema:
          type: integer
          format: int32
      - name: take
        in: query
        description: The record cound to return.
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
            text/json:
              schema:
                type: object
      security:
      - oauth2: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SeriesSearchOptions'
          text/json:
            schema:
              $ref: '#/components/schemas/SeriesSearchOptions'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/SeriesSearchOptions'
        description: The search options.
        required: true
components:
  schemas:
    SeriesSearchOptions:
      type: object
      properties:
        query:
          type: string
        scenarioId:
          type: array
          items:
            type: string
        checkedOut:
          format: int32
          type: integer
        state:
          format: int32
          type: integer
        localState:
          format: int32
          type: integer
        variableType:
          type: array
          items:
            format: int32
            type: integer
        geographies:
          type: array
          items:
            type: string
        variableIds:
          type: array
          items:
            type: string
        sortBy:
          type: object
          additionalProperties:
            format: int32
            type: integer
        equationEdits:
          type: boolean
        historyEdits:
          type: boolean
        sharedown:
          type: boolean
        customSeries:
          type: boolean
        utcDateCreated:
          format: date-time
          type: string
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        clientCredentials:
          scopes: {}
          tokenUrl: https://api.economy.com/scenario-studio/v2/oauth2/token
      description: OAuth2 Client Credentials