BAMF.ai·

bamf developer platform overview

# bamf developer platform here’s the deal: bamf gives you the tools to take full control of your linkedin content with their developer platform. you can draft, edit, schedule, analyze, and manage everything you need. entry points: REST API: https://api.bamf.ai/v1 Product MCP: https://mcp.bamf.ai OpenAPI schema: https://bamf.ai/openapi.json every API and MCP call revolves around a creator space. think of it as your exclusive zone to operate—everything is tailored to your roles and requests. ## authentication you’ll use bearer authentication to get in: ```http Authorization: Bearer bamf_live_... ``` there are two critical key types: User keys: these hit every creator space you have access to, limited by scopes. Creator keys: these are specific to one creator space. different creator_id? bamf says no way. make sure to send an Idempotency-Key with mutating requests to keep things tidy. ## scopes these are the capabilities you can access: posts:read posts:write posts:schedule analytics:read knowledge:write ai:generate and more. you’re covered from creating drafts to running analytics. keep it efficient and straightforward. ## bamf tokens tokens are in the pipeline to abstract usage for generation tasks. categories are not live yet but they’ll include: text generation research image generation analytics sync expect clear pricing and budget alerts to keep your operations smooth—details coming soon. ## common error shape when things go south, expect a structure like this: ```json { "error": { "code": "INSUFFICIENT_SCOPE", "message": "This key cannot publish now.", "request_id": "req_..." } } ``` keep an eye out for errors like 401, 403, and 429 to navigate smoothly. ## core REST endpoints you’ve got everything from lists of creator spaces to detailed post management: Creator Spaces: GET /v1/creator-spaces Posts management: create, read, update, delete, and schedule posts—get it all done effortlessly. ## analytics your go-to for post metrics comes from: ```http GET /v1/analytics/summary?creator_id={creator_id} ``` access insights on everything from impressions to reactions to keep your strategy sharp. this isn’t just a tool; it’s your big advantage for tackling linkedin content effectively. leverage it. originally from [BAMF.ai](https://bamf.ai/llms-full.txt).