Flicko Logo
v2 — Latest

Flicko API

Build bots, integrations, and experiences on Flicko's platform. Full REST API with real-time WebSocket events.

Base URL
Copy
https://api.flicko.com/v2
Getting Started

Authentication

All API requests require a Bearer token in the Authorization header. You can generate tokens from your developer dashboard. Flicko supports OAuth2 for user-scoped access and Bot tokens for server-side automation.

cURL Example
Bearer Token
$ curl -H "Authorization: Bearer YOUR_TOKEN" \
     https://api.flicko.com/v2/users/@me
OAuth2 — User-scoped access for third-party apps
Bot Token — Server-side automation and integrations
Reference

API Endpoints

Browse the full list of REST endpoints grouped by resource. All paths are relative to the base URL.

Users

3 endpoints
GET/users/@meGet the current authenticated user
GET/users/:idGet a user by their unique ID
PATCH/users/@meUpdate the current user's profile

Servers

4 endpoints
GET/serversList all servers the user belongs to
POST/serversCreate a new server
GET/servers/:idGet details for a specific server
DELETE/servers/:idDelete a server permanently

Channels

3 endpoints
GET/channels/:idGet a channel by ID
POST/channels/:id/messagesSend a message to a channel
GET/channels/:id/messagesRetrieve messages from a channel

Messages

3 endpoints
GET/messages/:idGet a single message by ID
PATCH/messages/:idEdit an existing message
DELETE/messages/:idDelete a message

Voice

2 endpoints
POST/voice/connectConnect to a voice channel session
GET/voice/regionsList available voice server regions
Limits

Rate Limiting

Every API key is subject to rate limits based on your plan tier. Exceeding limits returns HTTP 429 with a Retry-After header.

TierRequests / minBurstCost
Free6010$0
Pro30050$29/mo
EnterpriseUnlimitedCustomContact
Libraries

Official SDKs

Get started quickly with our officially maintained client libraries. Each SDK wraps the full v2 API with typed helpers and built-in retry logic.

JavaScript

$ npm install flicko.js

Python

$ pip install flicko-py

Go

$ go get github.com/flicko/flicko-go

Rust

$ cargo add flicko-rs
Developer Community

Ready to build?

Join thousands of developers building bots, integrations, and community tools on Flicko. Get your API key, explore the docs, and ship something great.