Dow Jones Third Party API

The Third Party API from Dow Jones — 2 operation(s) for third party.

Operations 5

POST /third-parties Creates a new third party #
GET /third-parties Retrieves all third-parties (optional filter) #
PATCH /third-parties/{id} Updates an existing third party #
DELETE /third-parties/{id} Deletes a third party #
GET /third-parties/{id} Retrieves a third party by id #

Documentation

📖
Documentation
https://developer.dowjones.com/documents/site-docs-risk_and_compliance_apis-screening_and_monitoring_api-batch_screening_api
📖
Documentation
https://developer.dowjones.com/documents/site-docs-risk_and_compliance_apis-screening_and_monitoring_api-batch_screening_api_private_list
📖
Documentation
https://developer.dowjones.com/documents/site-docs-risk_and_compliance_apis-advanced-screening-and-monitoring-api
📖
Documentation
https://developer.dowjones.com/documents/site-docs-risk_and_compliance_apis-risk_and_compliance_2_0-risk_search_api
📖
Documentation
https://developer.dowjones.com/documents/site-docs-risk_and_compliance_apis-risk_and_compliance_2_0-risk_profiles_api-risk_and_compliance_profiles
📖
Documentation
https://developer.dowjones.com/documents/site-docs-risk_and_compliance_apis-risk_and_compliance_2_0-risk_taxonomy_api
📖
Documentation
https://developer.dowjones.com/documents/site-docs-risk_and_compliance_apis-risk_and_compliance_2_0-risk_profiles_api-profile_history_api
📖
Documentation
https://developer.dowjones.com/documents/site-docs-risk_and_compliance_apis-due_diligence_reports_api-risk_reports_api
📖
Documentation
https://developer.dowjones.com/documents/site-docs-risk_and_compliance_apis-third_party_api
📖
Documentation
https://developer.dowjones.com/documents/site-docs-newswires_apis-dow_jones_newswires_real_time_api-real_time_search_api
📖
Documentation
https://developer.dowjones.com/documents/site-docs-newswires_apis-dow_jones_newswires_top_stories_api-top_stories_api
📖
Documentation
https://developer.dowjones.com/documents/site-docs-newswires_apis-dow_jones_financial_calendars_api-financial_calendars_api
📖
Documentation
https://developer.dowjones.com/documents/site-docs-newswires_apis
📖
Documentation
https://developer.dowjones.com/documents/factiva_integration-factiva_workflow_toolkit-endpoints-get_article
📖
Documentation
https://developer.dowjones.com/documents/factiva_integration-factiva_workflow_toolkit-endpoints-newsletters-newsletters
📖
Documentation
https://developer.dowjones.com/documents/site-docs-factiva_apis-factiva_workflow_apis_rest-factiva_news_search-news_radar_api-news_radar

Specifications

Other Resources

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/dow-jones-third-party-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

dow-jones-third-party-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: RiskCenter Platform API 0.2 Third Party API
  version: v0.2-beta
servers:
- url: https://api-thirdparty.riskcenter.dowjones.com/
tags:
- name: Third Party
paths:
  /third-parties:
    post:
      tags:
      - Third Party
      summary: Creates a new third party
      operationId: PostThirdParty
      requestBody:
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/RequestThirdParty'
          application/json:
            schema:
              $ref: '#/components/schemas/RequestThirdParty'
          text/json:
            schema:
              $ref: '#/components/schemas/RequestThirdParty'
          application/*+json:
            schema:
              $ref: '#/components/schemas/RequestThirdParty'
      responses:
        '200':
          description: Success
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ResponseThirdParty'
        '400':
          description: Bad Request
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '401':
          description: Unauthorized
      security:
      - oauth2: []
    get:
      tags:
      - Third Party
      summary: Retrieves all third-parties (optional filter)
      operationId: GetThirdParties
      parameters:
      - name: filter[name]
        in: query
        description: Case insensitive name filter.
        schema:
          type: string
      - name: filter[business_unit]
        in: query
        description: Business unit id filter
        schema:
          type: string
      - name: filter[is_active]
        in: query
        description: Active status filter
        schema:
          type: boolean
      - name: filter[tags]
        in: query
        description: Case sensitive tag filter.
        schema:
          type: string
      - name: filter[risk_level]
        in: query
        description: Case sensitive risk level filter.
        schema:
          type: string
      - name: filter[risk_status]
        in: query
        description: Case sensitive risk status filter
        schema:
          type: string
      - name: filter[internal_reference]
        in: query
        description: Case insensitive internal reference filter.
        schema:
          type: string
      - name: page[limit]
        in: query
        description: ''
        schema:
          type: integer
          format: int32
      - name: page[context]
        in: query
        description: ''
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ResponseThirdParties'
        '400':
          description: Bad Request
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '401':
          description: Unauthorized
      security:
      - oauth2: []
  /third-parties/{id}:
    patch:
      tags:
      - Third Party
      summary: Updates an existing third party
      operationId: PatchThirdParty
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/RequestThirdPartyPatch'
          application/json:
            schema:
              $ref: '#/components/schemas/RequestThirdPartyPatch'
          text/json:
            schema:
              $ref: '#/components/schemas/RequestThirdPartyPatch'
          application/*+json:
            schema:
              $ref: '#/components/schemas/RequestThirdPartyPatch'
      responses:
        '200':
          description: Success
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ResponseThirdParty'
        '400':
          description: Bad Request
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '404':
          description: Not Found
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '401':
          description: Unauthorized
      security:
      - oauth2: []
    delete:
      tags:
      - Third Party
      summary: Deletes a third party
      operationId: DeleteThirdParty
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success
        '400':
          description: Bad Request
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '404':
          description: Not Found
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '401':
          description: Unauthorized
      security:
      - oauth2: []
    get:
      tags:
      - Third Party
      summary: Retrieves a third party by id
      operationId: GetThirdParty
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ResponseThirdParty'
        '400':
          description: Bad Request
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '404':
          description: Not Found
          content:
            application/vnd.dowjones.dna.risk-third-parties.v_0.2-beta+json:
              schema:
                $ref: '#/components/schemas/ErrorResponseModelV2'
        '401':
          description: Unauthorized
      security:
      - oauth2: []
components:
  schemas:
    ResponseThirdParty:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/ResponseDataThirdParty'
      additionalProperties: false
      description: ''
    RequestDataThirdPartyPatch:
      required:
      - attributes
      - id
      type: object
      properties:
        id:
          type: string
          description: ''
        attributes:
          $ref: '#/components/schemas/ThirdPartyPatch'
        type:
          type:
          - string
          - 'null'
          description: ''
      additionalProperties: false
      description: ''
    PagingMeta:
      type: object
      properties:
        context:
          type: string
          description: ''
      additionalProperties: false
      description: ''
    ErrorModelV2:
      type: object
      properties:
        status:
          type: integer
          description: ''
          format: int32
        code:
          type: integer
          description: ''
          format: int32
        title:
          type:
          - string
          - 'null'
          description: ''
        detail:
          type:
          - string
          - 'null'
          description: ''
      additionalProperties: false
      description: Updated Error model
    ThirdPartyPatch:
      type: object
      properties:
        name:
          type:
          - string
          - 'null'
          description: ''
        business_unit_id:
          type:
          - string
          - 'null'
          description: ''
        owner_group_id:
          type:
          - string
          - 'null'
          description: ''
        owner_employee_email:
          type:
          - string
          - 'null'
          description: ''
        tags:
          type:
          - array
          - 'null'
          items:
            type: string
          description: ''
        is_active:
          type: boolean
          description: ''
        internal_reference:
          type:
          - string
          - 'null'
          description: ''
      additionalProperties: false
      description: ''
    RequestDataThirdParty:
      required:
      - attributes
      type: object
      properties:
        attributes:
          $ref: '#/components/schemas/ThirdParty'
        type:
          type:
          - string
          - 'null'
          description: ''
      additionalProperties: false
      description: ''
    ResponseDataThirdParties:
      type: object
      properties:
        id:
          type: string
          description: ''
        attributes:
          $ref: '#/components/schemas/ThirdParty'
        type:
          type: string
          description: ''
      additionalProperties: false
      description: ''
    ResponseLinks:
      type: object
      properties:
        next:
          type: string
          description: ''
        self:
          type: string
          description: ''
      additionalProperties: false
      description: ''
    RequestThirdParty:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/RequestDataThirdParty'
      additionalProperties: false
      description: ''
    ResponseDataThirdParty:
      type: object
      properties:
        id:
          type: string
          description: ''
        attributes:
          $ref: '#/components/schemas/ThirdParty'
        type:
          type: string
          description: ''
      additionalProperties: false
      description: ''
    ResponseMeta:
      type: object
      properties:
        paging:
          $ref: '#/components/schemas/PagingMeta'
      additionalProperties: false
      description: ''
    ErrorResponseModelV2:
      type: object
      properties:
        errors:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/ErrorModelV2'
          description: ''
      additionalProperties: false
      description: Updated Error Response Model
    ThirdParty:
      type: object
      properties:
        process_id:
          type: string
          description: ''
        name:
          type: string
          description: ''
        business_unit_id:
          type: string
          description: ''
        owner_group_id:
          type:
          - string
          - 'null'
          description: ''
        owner_employee_email:
          type:
          - string
          - 'null'
          description: ''
        tags:
          type:
          - array
          - 'null'
          items:
            type: string
          description: ''
        is_active:
          type: boolean
          description: ''
        internal_reference:
          type:
          - string
          - 'null'
          description: ''
      additionalProperties: false
      description: ''
    ResponseThirdParties:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/ResponseDataThirdParties'
          description: ''
        links:
          $ref: '#/components/schemas/ResponseLinks'
        meta:
          $ref: '#/components/schemas/ResponseMeta'
      additionalProperties: false
      description: ''
    RequestThirdPartyPatch:
      required:
      - data
      type: object
      properties:
        data:
          $ref: '#/components/schemas/RequestDataThirdPartyPatch'
      additionalProperties: false
      description: ''
  securitySchemes:
    oauth2:
      type: apiKey
      description: 'Standard Authorization header using the Bearer scheme. Example: "bearer {token}"'
      name: Authorization
      in: header