S&P Global · Capability

S&P Capital IQ API — Authentication

S&P Capital IQ API — Authentication. 2 operations. Lead operation: Generate Authentication Token. Self-contained Naftiko capability covering one Sandp Global business surface.

Run with Naftiko Sandp GlobalAuthentication

What You Can Do

POST
Generateauthtoken — Generate Authentication Token
/v1/authenticate/api/v1/token
POST
Refreshauthtoken — Refresh Authentication Token
/v1/authenticate/api/v1/tokenrefresh

MCP Tools

generate-authentication-token

Generate Authentication Token

refresh-authentication-token

Refresh Authentication Token

Capability Spec

capital-iq-authentication.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: S&P Capital IQ API — Authentication
  description: 'S&P Capital IQ API — Authentication. 2 operations. Lead operation: Generate Authentication Token. Self-contained
    Naftiko capability covering one Sandp Global business surface.'
  tags:
  - Sandp Global
  - Authentication
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SANDP_GLOBAL_API_KEY: SANDP_GLOBAL_API_KEY
capability:
  consumes:
  - type: http
    namespace: capital-iq-authentication
    baseUri: https://api-ciq.marketintelligence.spglobal.com/gdsapi/rest
    description: S&P Capital IQ API — Authentication business capability. Self-contained, no shared references.
    resources:
    - name: authenticate-api-v1-token
      path: /authenticate/api/v1/token
      operations:
      - name: generateauthtoken
        method: POST
        description: Generate Authentication Token
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: authenticate-api-v1-tokenRefresh
      path: /authenticate/api/v1/tokenRefresh
      operations:
      - name: refreshauthtoken
        method: POST
        description: Refresh Authentication Token
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.SANDP_GLOBAL_API_KEY}}'
  exposes:
  - type: rest
    namespace: capital-iq-authentication-rest
    port: 8080
    description: REST adapter for S&P Capital IQ API — Authentication. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/authenticate/api/v1/token
      name: authenticate-api-v1-token
      description: REST surface for authenticate-api-v1-token.
      operations:
      - method: POST
        name: generateauthtoken
        description: Generate Authentication Token
        call: capital-iq-authentication.generateauthtoken
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/authenticate/api/v1/tokenrefresh
      name: authenticate-api-v1-tokenrefresh
      description: REST surface for authenticate-api-v1-tokenRefresh.
      operations:
      - method: POST
        name: refreshauthtoken
        description: Refresh Authentication Token
        call: capital-iq-authentication.refreshauthtoken
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: capital-iq-authentication-mcp
    port: 9090
    transport: http
    description: MCP adapter for S&P Capital IQ API — Authentication. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: generate-authentication-token
      description: Generate Authentication Token
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: capital-iq-authentication.generateauthtoken
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: refresh-authentication-token
      description: Refresh Authentication Token
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: capital-iq-authentication.refreshauthtoken
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.