> ## Documentation Index
> Fetch the complete documentation index at: https://whitebit-mintlify-spelling-grammar-fixes-1776039611.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Query all market fees

> Retrieve trading fee rates for all spot markets on WhiteBIT via the V4 API.

export const RelatedResources = ({children}) => {
  const ref = useRef(null);
  const [visible, setVisible] = useState(false);
  useEffect(() => {
    if (!ref.current) return;
    const el = ref.current;
    if (el.parentElement) {
      el.parentElement.appendChild(el);
    }
    setVisible(true);
  }, []);
  return <div ref={ref} className="related-resources" style={{
    marginTop: "2.5rem",
    paddingTop: "1.5rem",
    borderTop: "1px solid var(--border-color, #e5e7eb)",
    opacity: visible ? 1 : 0,
    transition: "opacity 0.15s ease-in"
  }}>
      <h2 style={{
    marginTop: 0
  }}>Related resources</h2>
      {children}
    </div>;
};

<RelatedResources>
  * [Query market fee](/api-reference/spot-trading/query-market-fee) — get fee rates for a specific market
</RelatedResources>
