GET
/
organizations
cURL
curl --request GET \
  --url https://donation-api.com/organizations \
  --header 'Authorization: Bearer <token>'
{
  "organizations": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "address": "<string>",
      "eth_address": "<string>",
      "sol_address": "<string>",
      "logo": "<string>",
      "organization_slug": "<string>",
      "website": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer

The maximum number of results to return

Response

200
application/json

Organizations response

The response is of type object.