RECONNED API
Build on RECONNED with our REST API and MCP server. Create API keys, integrate with your tools, and automate your airsoft community workflows.
API Keys
API keys allow you to authenticate with the RECONNED API and MCP server. You can create and manage your keys from your account settings.
Create an API key in your settingsUsage:
curl -H "X-API-Key: your-api-key" https://reconned.com/api/mcpAPI Documentation
Our REST API is fully documented using the OpenAPI 3.1 specification. Browse the interactive API reference to explore all available endpoints, request schemas, and response types.
Browse the API referenceMCP Server
RECONNED provides a Model Context Protocol (MCP) server that lets AI assistants and tools interact with the platform. The MCP server exposes tools for searching clubs, events, and players, as well as managing your RECONNED data.
Endpoint:
POST /api/mcpAuthentication:
Pass your API key via the X-API-Key header or the Authorization: Bearer header.
Client configuration:
{
"mcpServers": {
"reconned": {
"url": "https://reconned.com/api/mcp",
"headers": {
"X-API-Key": "your-api-key"
}
}
}
}Code Examples
Here are some example requests to get you started with the RECONNED API.
List upcoming events
curl https://reconned.com/api/events/upcoming?limit=5Search clubs
curl https://reconned.com/api/clubs?search=airsoft&limit=10