Explee Product Skill — AI Agents
Use this skill for extraction, reasoning, and automation tasks powered by Explee Agents.
Authentication
Use API key auth:
- Header:
X-API-Key: <api_key> - Base URL:
https://api.explee.com
export EXPLEE_API_KEY='<your_api_key>'
Primary Endpoints
GET /public/api/v1/agentsPOST /public/api/v1/agents/{agent_id}/runsPOST /public/api/v1/agents/runsGET /public/api/v1/agents/runs/{run_id}
Execution Pattern
- List available agents and inspect input schema.
- Choose pre-built agent if available; otherwise run custom agent.
- Submit run with minimal valid input.
- Poll until completion, then return normalized result.
Request Templates
List Agents
curl 'https://api.explee.com/public/api/v1/agents' \
-H 'Accept: application/json' \
-H "X-API-Key: ${EXPLEE_API_KEY}"
Run Pre-built Agent
curl 'https://api.explee.com/public/api/v1/agents/<agent_id>/runs' \
-X POST \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-H "X-API-Key: ${EXPLEE_API_KEY}" \
--data '{"input":{}}'
Poll Agent Run
curl "https://api.explee.com/public/api/v1/agents/runs/${RUN_ID}" \
-H 'Accept: application/json' \
-H "X-API-Key: ${EXPLEE_API_KEY}"
Guardrails
- Validate payload against returned
input_schemabefore run. - For custom agents, keep system prompts concise and deterministic.
- Always report run status lifecycle (
pending→completed/failed).