Platform

Big news: Success.co Public API is here 🎉

You can now generate API keys in Settings → API Keys and use our brand‑new public GraphQL API to read and write everything your Success.co workspace knows about Rocks, Meetings, Issues, Headlines, To‑Dos, People and more.

You can now generate API keys in Settings → API Keys and use our brand‑new public REST API to read and write everything your Success.co workspace knows about Rocks, Meetings, Issues, Headlines, To‑Dos, People and more.

What’s new?

  • Generate & manage keys. Owners/Admins can create, rotate and revoke personal or service tokens from the new API Keys panel.

  • Full CRUD access. Nearly every object you see in the UI – meetings, scorecard measurables, rocks, quarters, teams – is available via our new GraphQL schema.

  • Powerful & flexible. Ask for exactly what you need with precise queries and mutations.

  • Strong security. Bearer token auth over HTTPS, plus per‑token scopes and granular rate limits.

Why this matters

Success.co has always been your single source of truth for EOS® – and now, it’s fully programmable.

Whether you’re building internal dashboards, automating routine workflows, or syncing Success.co with the rest of your toolstack, the new API opens up a world of possibilities:

  • Pull scorecard data into BI tools like Power BI or Looker.

  • Automatically generate Headlines from Slack messages or external systems.

  • Trigger new Rocks or Issues when events happen in your product.

  • Build bots that send To-Do reminders or summarize L10 Issues.

Whatever your use case, the API gives you the power to customize and scale Success.co to fit exactly how your team works.

Quick start

# 1 – Generate a key in Settings → API Keys and export it

Note your API keys should start with "sk_live_..."

# 2 – Call any endpoint

Here's an example to get all issues:

curl 'https://www.success.co/graphql' \
-H 'accept: application/graphql-response+json; charset=utf-8, application/json; charset=utf-8' \
-H 'accept-language: en-US,en;q=0.9' \
-H 'authorization: Bearer API_KEY_HERE \
-H 'content-type: application/json' \
--data-raw '{"query":"query {\n issues {\n nodes {\n id\n name\n }\n }\n}\n"}'

What’s in Version 1.0?

  • Coverage: All key elements - add, edit, delete Meetings, Issues, Rocks, Measurables, People, Teams, Headlines, To‑Dos and 50+ more.

  • Rate limits: Currently 1,500 per hour.

We’re just getting started. Send feature requests and beta feedback to support@success.co

Give it a go!

  1. Generate a key in Settings → API Keys.

  2. Read the docs at https://coda.io/@successco/success-co-api

  3. Build something cool – integrations, dashboards, bots.

  4. Show it off! Let us know about what you build!

Happy API‑ing! 🛠️

— The Success.co Team

p.s. Just reach out if you need any help. support@success.co