Provider Share Button Guide
Copy provider tables as images, links, HTML, or Markdown from the Share button.
Provider Share Button Guide
Use the Share button in any provider speed page to copy the supported models table or the recent test table into chats, blogs, or documents.

Screenshot: clicking Share opens four copy options.
How to Use
- Scroll to the table you want to share and wait until it finishes loading.
- Click the rounded “Share” button to open the menu, then pick one of the four actions:
- Copy Image – copies a fresh screenshot of the table, ready to paste into Slack, Linear, WeChat, etc.
- Copy Link – copies the public image URL so others can open it directly.
- Copy Embed (HTML) – copies a ready-to-use
<a><img></a>block for blogs or docs that accept HTML. - Copy Markdown – copies a Markdown image link for GitHub, Notion, or any markdown-friendly editor.
- Paste into your target app. If the browser asks for clipboard permission, allow it and try again.
OG Image Endpoint
https://lmspeed.net/api/og/provider/{identifier}/{type}identifier: provider slug if available, otherwise the numeric/string ID (e.g.,openai,anthropic).type:modelsfor the Supported Models table,recentfor the Recent Test Records table.
Add optional params like ?theme=dark&border=0 if you want different styles.
HTML Embed
<a href="https://lmspeed.net/{locale}/provider/{providerIdentifier}" target="_blank" rel="noopener noreferrer">
<img
src="https://lmspeed.net/api/og/provider/{identifier}/{type}?theme=light"
alt="{providerName} {tableLabel}"
style="max-width:100%;height:auto;"
loading="lazy"
/>
</a>{locale}: language code such asenorzh.{providerIdentifier}: the ID from the provider page URL.{tableLabel}: auto-switches between “Supported Models” and “Recent Test Records”.
Replace the placeholders with real values and embed anywhere.
Markdown Embed
[![{providerName} {tableLabel}]](https://lmspeed.net/{locale}/provider/{providerIdentifier})Or with a custom image:
[](https://lmspeed.net/{locale}/provider/{providerIdentifier})- Works in GitHub Issues, docs portals, Notion (Markdown mode), etc.
- Append
?theme=lightor?theme=darkto the image URL for different styles.
FAQ
- Copy failed: HTTPS is required for clipboard access. Refresh or switch browsers if blocked.
- Image not loading: Check the
identifier/typevalues and ensure the provider exists. - Outdated data: OG images are generated on demand—reload the URL for the latest numbers.
MkSaaS文档