Refinitiv · Capability

Refinitiv LSEG DataScope Select REST API — Instruments

Refinitiv LSEG DataScope Select REST API — Instruments. 3 operations. Lead operation: Get Instrument List by Name. Self-contained Naftiko capability covering one Refinitiv business surface.

Run with Naftiko RefinitivInstruments

What You Can Do

GET
Getinstrumentlistbyname — Get Instrument List by Name
/v1/extractions/instrumentlistgetbyname-listname-listname
GET
Listinstrumentlists — List Instrument Lists
/v1/extractions/instrumentlists
POST
Createinstrumentlist — Create Instrument List
/v1/extractions/instrumentlists

MCP Tools

get-instrument-list-name

Get Instrument List by Name

read-only idempotent
list-instrument-lists

List Instrument Lists

read-only idempotent
create-instrument-list

Create Instrument List

Capability Spec

datascope-select-instruments.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Refinitiv LSEG DataScope Select REST API — Instruments
  description: 'Refinitiv LSEG DataScope Select REST API — Instruments. 3 operations. Lead operation: Get Instrument List
    by Name. Self-contained Naftiko capability covering one Refinitiv business surface.'
  tags:
  - Refinitiv
  - Instruments
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    REFINITIV_API_KEY: REFINITIV_API_KEY
capability:
  consumes:
  - type: http
    namespace: datascope-select-instruments
    baseUri: https://selectapi.datascope.lseg.com/RestApi/v1
    description: Refinitiv LSEG DataScope Select REST API — Instruments business capability. Self-contained, no shared references.
    resources:
    - name: Extractions-InstrumentListGetByName(ListName='{listName}')
      path: /Extractions/InstrumentListGetByName(ListName='{listName}')
      operations:
      - name: getinstrumentlistbyname
        method: GET
        description: Get Instrument List by Name
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: listName
          in: path
          type: string
          description: The name of the instrument list.
          required: true
    - name: Extractions-InstrumentLists
      path: /Extractions/InstrumentLists
      operations:
      - name: listinstrumentlists
        method: GET
        description: List Instrument Lists
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createinstrumentlist
        method: POST
        description: Create Instrument List
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.REFINITIV_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: datascope-select-instruments-rest
    port: 8080
    description: REST adapter for Refinitiv LSEG DataScope Select REST API — Instruments. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/extractions/instrumentlistgetbyname-listname-listname
      name: extractions-instrumentlistgetbyname-listname-listname
      description: REST surface for Extractions-InstrumentListGetByName(ListName='{listName}').
      operations:
      - method: GET
        name: getinstrumentlistbyname
        description: Get Instrument List by Name
        call: datascope-select-instruments.getinstrumentlistbyname
        with:
          listName: rest.listName
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/extractions/instrumentlists
      name: extractions-instrumentlists
      description: REST surface for Extractions-InstrumentLists.
      operations:
      - method: GET
        name: listinstrumentlists
        description: List Instrument Lists
        call: datascope-select-instruments.listinstrumentlists
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createinstrumentlist
        description: Create Instrument List
        call: datascope-select-instruments.createinstrumentlist
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: datascope-select-instruments-mcp
    port: 9090
    transport: http
    description: MCP adapter for Refinitiv LSEG DataScope Select REST API — Instruments. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: get-instrument-list-name
      description: Get Instrument List by Name
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: datascope-select-instruments.getinstrumentlistbyname
      with:
        listName: tools.listName
      outputParameters:
      - type: object
        mapping: $.
    - name: list-instrument-lists
      description: List Instrument Lists
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: datascope-select-instruments.listinstrumentlists
      outputParameters:
      - type: object
        mapping: $.
    - name: create-instrument-list
      description: Create Instrument List
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: datascope-select-instruments.createinstrumentlist
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.