Start here

Getting started

The Bynli App is how you read, listen to, and contribute to data across the Bynli platform — community resources, webhooks, and an embed widget, all behind one bearer token.

What you can do

Get a key

Sign in at bynli.com/dash/login and open /dash/developers. Click Create key, give it a label (like my-side-project), and copy the token that appears. You'll only see it once.

Keep keys secret. Treat them like passwords. If you accidentally expose one, revoke it from the same page and create a new one.

Your first call

Try a public read — no team required:

curlbynli.com
curl https://bynli.com/dash/api/v1/resources \
  -H "Authorization: Bearer bapi_pk_your_key_here"

You should get back JSON that looks something like this:

200 OKapplication/json
{
  "success": true,
  "count": 12,
  "resources": [
    {
      "id": 101,
      "name": "Atlanta Community Food Bank",
      "category": "food",
      "address": "732 Joseph E. Lowery Blvd NW, Atlanta, GA",
      "website": "https://www.acfb.org"
    }
  ]
}

Next steps