Documentation
organizations

List Organizations

get
/v1/organizations/
List organizations.
Sorting criterion. Several criteria can be used simultaneously and will be applied in order. Add a minus sign - before the criteria name to sort by descending order.
curl -X GET \
    https://api.polar.sh/v1/organizations/ \
    -H "Accept: application/json" \
    -H "Authorization: Bearer <token>" \
    
Responses
{
  "items": [
    {
      "created_at": "2024-09-19T00:00:00.000Z",
      "modified_at": "2024-09-19T00:00:00.000Z",
      "id": "00000000-0000-0000-0000-000000000000",
      "name": "string",
      "slug": "string",
      "avatar_url": "string",
      "bio": "string",
      "company": "string",
      "blog": "string",
      "location": "string",
      "email": "string",
      "twitter_username": "string",
      "pledge_minimum_amount": 0,
      "pledge_badge_show_amount": false,
      "default_upfront_split_to_contributors": 0,
      "donations_enabled": false,
      "profile_settings": {
        "enabled": false,
        "description": "string",
        "featured_projects": [
          "00000000-0000-0000-0000-000000000000"
        ],
        "featured_organizations": [
          "00000000-0000-0000-0000-000000000000"
        ],
        "links": [
          "string"
        ],
        "subscribe": {
          "promote": false,
          "show_count": false,
          "count_free": false
        },
        "accent_color": "string"
      },
      "feature_settings": {
        "articles_enabled": false,
        "issue_funding_enabled": false
      }
    }
  ],
  "pagination": {
    "total_count": 0,
    "max_page": 0
  }
}