Overview
Last updated
Was this helpful?
Welcome to the Linkie API, a RESTful API for all Linkie users, built for developers who want to connect Linkie with their own applications, automations, and backend services.
Use it to work with Linkie profiles, sync post items into a profile, and retrieve analytics data programmatically.
Access to the Linkie API is free for all users and does not require an active paid plan.
There's a couple of things you might want to interact with the API:
List your Linkie profiles
Add posts to a profile in bulk
Update or remove a post item from a profile
Retrieve analytics for traffic, sources, countries, user agents, and cards
Base URL
https://app.linkie.bio
Format
JSON
Authentication
Authorization: Bearer <key>
Version
v1
Rate Limits
60 req/min
Include your key in the Authorization header for every request:
Generate an API key in your Linkie account settings. Show me how.
Validate your key by listing your Linkie profiles:
Continue with Getting Started.
Last updated
Was this helpful?
Was this helpful?
Authorization: Bearer YOUR_API_KEY
Content-Type: application/jsoncurl -X GET https://app.linkie.bio/api/v1/profiles \
-H "Authorization: Bearer YOUR_API_KEY"