Ally Invest Watchlists API

Watchlist creation and symbol management

Operations 6

GET /watchlists.json Get all watchlists #
POST /watchlists.json Create a watchlist #
GET /watchlists/{id}.json Get a specific watchlist #
DELETE /watchlists/{id}.json Delete a watchlist #
POST /watchlists/{id}/symbols.json Add symbols to a watchlist #
DELETE /watchlists/{id}/symbols.json Remove symbols from a watchlist #

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/ally-invest-watchlists-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

ally-invest-watchlists-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Ally Invest Accounts Watchlists API
  description: The Ally Invest REST API (originally developed from the TradeKing acquisition) provides programmatic access to self-directed brokerage account management, order placement, real-time and delayed market data, watchlist management, and member profile information. Authentication uses OAuth 1.0 with consumer and token credentials. Responses are available in JSON and XML formats.
  version: v1
  contact:
    email: InvestAPI@ally.com
  termsOfService: https://www.ally.com/content/dam/pdf/invest/api-agreement.pdf
  x-logo:
    url: https://kinlane-images.s3.amazonaws.com/shared/apis-json/apis-json-logo.jpg
servers:
- url: https://api.ally.com/v1
  description: Ally Invest REST API
- url: https://stream.ally.com/v1
  description: Ally Invest Streaming API
tags:
- name: Watchlists
  description: Watchlist creation and symbol management
paths:
  /watchlists.json:
    get:
      operationId: getWatchlists
      summary: Get all watchlists
      description: Returns all watchlists associated with the authenticated member account.
      tags:
      - Watchlists
      responses:
        '200':
          description: Successful response with watchlists
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WatchlistsResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '429':
          $ref: '#/components/responses/RateLimited'
      security:
      - OAuth1: []
    post:
      operationId: createWatchlist
      summary: Create a watchlist
      description: Creates a new watchlist with optional initial symbols for the authenticated member.
      tags:
      - Watchlists
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateWatchlistRequest'
            example:
              id: my-watchlist
              symbols:
              - symbol: AAPL
              - symbol: MSFT
              - symbol: GOOGL
      responses:
        '200':
          description: Watchlist created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WatchlistResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '429':
          $ref: '#/components/responses/RateLimited'
      security:
      - OAuth1: []
  /watchlists/{id}.json:
    get:
      operationId: getWatchlist
      summary: Get a specific watchlist
      description: Returns details and symbols for a specific watchlist.
      tags:
      - Watchlists
      parameters:
      - $ref: '#/components/parameters/WatchlistId'
      responses:
        '200':
          description: Successful response with watchlist details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WatchlistResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/RateLimited'
      security:
      - OAuth1: []
    delete:
      operationId: deleteWatchlist
      summary: Delete a watchlist
      description: Deletes a specific watchlist by ID.
      tags:
      - Watchlists
      parameters:
      - $ref: '#/components/parameters/WatchlistId'
      responses:
        '200':
          description: Watchlist deleted successfully
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/RateLimited'
      security:
      - OAuth1: []
  /watchlists/{id}/symbols.json:
    post:
      operationId: addWatchlistSymbols
      summary: Add symbols to a watchlist
      description: Adds one or more ticker symbols to an existing watchlist.
      tags:
      - Watchlists
      parameters:
      - $ref: '#/components/parameters/WatchlistId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WatchlistSymbolsRequest'
            example:
              symbols:
              - symbol: TSLA
              - symbol: AMZN
      responses:
        '200':
          description: Symbols added successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WatchlistResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/RateLimited'
      security:
      - OAuth1: []
    delete:
      operationId: deleteWatchlistSymbols
      summary: Remove symbols from a watchlist
      description: Removes one or more ticker symbols from an existing watchlist.
      tags:
      - Watchlists
      parameters:
      - $ref: '#/components/parameters/WatchlistId'
      - name: symbols
        in: query
        required: true
        description: Comma-separated list of symbols to remove
        schema:
          type: string
      responses:
        '200':
          description: Symbols removed successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WatchlistResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/RateLimited'
      security:
      - OAuth1: []
components:
  responses:
    NotFound:
      description: Requested resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    BadRequest:
      description: Invalid request parameters
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    Unauthorized:
      description: Authentication required or credentials invalid
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    RateLimited:
      description: Rate limit exceeded
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  schemas:
    WatchlistSymbolsRequest:
      type: object
      required:
      - symbols
      properties:
        symbols:
          type: array
          items:
            type: object
            properties:
              symbol:
                type: string
    WatchlistResponse:
      type: object
      properties:
        response:
          type: object
          properties:
            watchlist:
              $ref: '#/components/schemas/Watchlist'
            elapsedtime:
              type: string
            id:
              type: string
            error:
              type: string
    ErrorResponse:
      type: object
      properties:
        response:
          type: object
          properties:
            error:
              type: string
              description: Error message
            elapsedtime:
              type: string
            id:
              type: string
    Watchlist:
      type: object
      properties:
        id:
          type: string
          description: Watchlist name/ID
        symbols:
          type: object
          properties:
            symbol:
              type: array
              items:
                type: object
                properties:
                  id:
                    type: string
                  symbol:
                    type: string
                    description: Ticker symbol
    WatchlistsResponse:
      type: object
      properties:
        response:
          type: object
          properties:
            watchlists:
              type: object
              properties:
                watchlist:
                  type: array
                  items:
                    $ref: '#/components/schemas/Watchlist'
            elapsedtime:
              type: string
            id:
              type: string
            error:
              type: string
    CreateWatchlistRequest:
      type: object
      required:
      - id
      properties:
        id:
          type: string
          description: Name/ID for the new watchlist
        symbols:
          type: array
          items:
            type: object
            properties:
              symbol:
                type: string
  parameters:
    WatchlistId:
      name: id
      in: path
      required: true
      description: The watchlist ID (name)
      schema:
        type: string
  securitySchemes:
    OAuth1:
      type: apiKey
      in: header
      name: Authorization
      description: OAuth 1.0 authentication using consumer key/secret and OAuth token/secret pairs. The Authorization header must include oauth_consumer_key, oauth_token, oauth_signature_method (HMAC-SHA1), oauth_timestamp, oauth_nonce, oauth_version, and oauth_signature.
externalDocs:
  description: Ally Invest API Documentation
  url: https://www.ally.com/api/invest/documentation/getting-started/