GIPHY
Access GIPHY via the GIPHY API with API key authentication. Search GIFs, stickers, emojis, trending media, and upload assets.
This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure GIPHY API access yourself.
Setup in 3 Steps
| Step 1: Install | Step 2: Pair Account | Step 3: Connect GIPHY |
|:---:|:---:|:---:|
|
|
| App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect GIPHY |
How It Works
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ GIPHY API │
│ (User Chat) │ │ (OAuth) │ │ (REST) │
└─────────────────┘ └──────────────┘ └──────────────────┘
│ │ │
│ 1. Install Plugin │ │
│ 2. Pair Device │ │
│ 3. Connect GIPHY │ │
│ │ 4. Secure Token │
│ │ 5. Proxy Requests │
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│ SKILL │ │ Dashboard│ │ GIPHY │
│ File │ │ Auth │ │ Search │
└──────────┘ └──────────┘ └──────────┘
Install
Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.
openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
Then tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for GIPHY again."
Quick Start
# Search GIFs
clawlink_call_tool --tool "giphy_search_gifs" --params '{"query": "laughing"}'
# Get trending GIFs
clawlink_call_tool --tool "giphy_trending_gifs" --params '{}'
# Translate phrase to GIF
clawlink_call_tool --tool "giphy_translate" --params '{"phrase": "thumbs up"}'
Authentication
All GIPHY tool calls are authenticated automatically by ClawLink using the user's connected GIPHY account.
No API key is required in chat. ClawLink stores credentials securely and injects them into every GIPHY API request on the user's behalf.
Getting Connected
- Install the ClawLink plugin (see Install above).
- Pair the plugin with
clawlink_begin_pairingif it is not configured yet. - Open https://claw-link.dev/dashboard?add=giphy and connect GIPHY.
- Call
clawlink_list_integrationsto verify the connection is active.
Connection Management
List Connections
clawlink_list_integrations
Response: Returns all connected integrations. Look for giphy in the list.
Verify Connection
clawlink_list_tools --integration giphy
Response: Returns the live tool catalog for GIPHY.
Reconnect
If GIPHY tools are missing or the connection shows an error:
- Direct the user to https://claw-link.dev/dashboard?add=giphy
- After they confirm, call
clawlink_list_integrationsto verify - Then call
clawlink_list_tools --integration giphy
Security & Permissions
- Access is scoped to GIPHY content searchable and uploadable by the connected account.
- All write operations require explicit user confirmation. Before executing any create or upload, confirm the target resource and intended effect with the user.
- Uploading copyrighted material may violate GIPHY terms of service.
Tool Reference
Search & Discovery
| Tool | Description | Mode |
|------|-------------|------|
| giphy_search_gifs | Search for GIFs by keyword or phrase | Read |
| giphy_search_stickers | Search for stickers by keyword or phrase | Read |
| giphy_search_emoji | Search for emoji media by keyword | Read |
| giphy_search_channels | Search for GIPHY channels | Read |
| giphy_search_tags | Search for trending tags | Read |
Trending
| Tool | Description | Mode |
|------|-------------|------|
| giphy_trending_gifs | Get trending GIFs | Read |
| giphy_trending_stickers | Get trending stickers | Read |
| giphy_trending_searches | Get trending search terms | Read |
Translate
| Tool | Description | Mode |
|------|-------------|------|
| giphy_translate | Translate a phrase into a matching GIF or sticker | Read |
Media Retrieval
| Tool | Description | Mode |
|------|-------------|------|
| giphy_get_gif_by_id | Fetch a specific GIF by its GIPHY ID | Read |
| giphy_get_sticker_by_id | Fetch a specific sticker by its GIPHY ID | Read |
Upload
| Tool | Description | Mode |
|------|-------------|------|
| giphy_upload_gif | Upload a GIF or video asset to GIPHY | Write |
Code Examples
Search for reaction GIFs
clawlink_call_tool --tool "giphy_search_gifs" \
--params '{
"query": "thumbs up",
"limit": 10,
"rating": "pg-13"
}'
Get trending stickers
clawlink_call_tool --tool "giphy_trending_stickers" \
--params '{
"limit": 20
}'
Translate a phrase to a GIF
clawlink_call_tool --tool "giphy_translate" \
--params '{
"phrase": "facepalm",
"rating": "pg-13"
}'
Get a specific GIF by ID
clawlink_call_tool --tool "giphy_get_gif_by_id" \
--params '{
"gif_id": "abc123xyz"
}'
Discovery Workflow
- Call
clawlink_list_integrationsto confirm GIPHY is connected. - Call
clawlink_list_tools --integration giphyto see the live catalog. - Treat the returned list as the source of truth. Do not guess or assume what tools exist.
- If the user describes a capability but the exact tool is unclear, call
clawlink_search_toolswith a short query and integrationgiphy. - If no GIPHY tools appear, direct the user to https://claw-link.dev/dashboard?add=giphy.
Execution Workflow
┌─────────────────────────────────────────────────────────────┐
│ READ OPERATIONS (Safe) │
│ search → trending → translate → get by ID │
│ │
│ Example: Search GIFs → Display results → User picks │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ WRITE OPERATIONS (Require Confirmation) │
│ describe → preview → confirm → upload │
│ │
│ Example: Preview upload → User confirms → Execute upload │
└─────────────────────────────────────────────────────────────┘
- For unfamiliar tools, ambiguous requests, or any write action, call
clawlink_describe_toolfirst. - Use the returned guidance, schema,
whenToUse,askBefore,safeDefaults,examples, andfollowupsto shape the call. - Prefer search, trending, and content lookup flows before uploads.
- For uploads or anything marked as requiring confirmation, call
clawlink_preview_toolfirst. - Execute with
clawlink_call_tool. Pass confirmation only after the preview matches the user's intent. - If the tool call fails, report the real error. Do not invent results or restate the failure as a missing capability unless the live catalog supports that conclusion.
Notes
- GIPHY content is organized into GIFs, stickers, and emoji categories — use the appropriate tool for each type.
- Content ratings (
g,pg,pg-13,r) filter content appropriateness. Match the rating to your use case. - Uploaded media becomes part of the GIPHY library and may be searchable by other users.
- Trending content updates regularly; results may vary between calls.
Error Handling
| Status / Error | Meaning |
|----------------|---------|
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration giphy. |
| Missing connection | GIPHY is not connected. Direct the user to https://claw-link.dev/dashboard?add=giphy. |
| 404 Not Found | GIF or sticker ID does not exist. Verify the ID. |
| Write rejected | User did not confirm an upload action. Always confirm before uploading. |
Troubleshooting: Tools Not Visible
- Check that the ClawLink plugin is installed:
openclaw plugins list - If the plugin is installed but tools are missing, tell the user to send
/newas a standalone message to reload the catalog. - If a fresh chat does not help, run:
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json openclaw gateway restart - After restart, tell the user to send
/newagain and retry.
Troubleshooting: Invalid Tool Call
- Ensure the integration slug is exactly
giphy. - Use
clawlink_describe_toolto verify parameter names and types before calling. - For write operations, always call
clawlink_preview_toolfirst.
Resources
Related Skills
Powered by ClawLink — an integration hub for OpenClaw

微信扫一扫