Diamond Search Fullfeed API

The Fullfeed API from Diamond Search — 1 operation(s) for fullfeed.

Operations 1

POST /fullfeed Diamond Search Retrieve Full Feed of Diamonds

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/diamond-search-fullfeed-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

diamond-search-fullfeed-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Diamond Search IDEX Data API - Report 3 Fullfeed API
  description: API for retrieving data report 3 in CSV format.
  version: 1.0.0
servers:
- url: https://api.idexonline.com/idexdataapi/api
tags:
- name: Fullfeed
paths:
  /fullfeed:
    post:
      summary: Diamond Search Retrieve Full Feed of Diamonds
      description: Fetches a file with full details of matching pre-filtered diamonds in the requested format.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                authentication_details:
                  type: object
                  properties:
                    api_key:
                      type: string
                      example: HNNSSA1223311
                    api_secret:
                      type: string
                      example: DDccdaaedf123
                  required:
                  - api_key
                  - api_secret
                parameters:
                  type: object
                  properties:
                    file_format:
                      type: string
                      example: csv
                      enum:
                      - csv
                    data_format:
                      type: string
                      example: format_20220530_extended
                      enum:
                      - format_20220525_basis
                      - format_20220530_extended
                      - format_20221026_extended
                      - format_20230628_extended
                    create_zip_file:
                      type: boolean
                      example: true
                      default: true
                  required:
                  - file_format
                  - data_format
              required:
              - authentication_details
              - parameters
      responses:
        '200':
          description: Successful response with file download or JSON data.
          content:
            application/json:
              schema:
                type: object
                properties:
                  file:
                    type: string
                    description: File content or download URL.
        '500':
          description: Error occurred during processing.
          content:
            application/json:
              schema:
                type: object
                properties:
                  result_info:
                    type: object
                    properties:
                      response_code:
                        type: integer
                        example: 32110
                      response_description:
                        type: string
                        example: A description of the exception.
                    required:
                    - response_code
                    - response_description
      tags:
      - Fullfeed