GET
/
review-forms
curl --request GET \
  --url https://api.feedspace.io/v3/review-forms \
  --header 'Authorization: Bearer <token>' \
  --header 'fs-workspace-id: <fs-workspace-id>'
{
  "data": {
    "current_page": 1,
    "data": [
      {
        "id": 10391,
        "project_id": 5022,
        "unique_form_id": "form_MbgOEoTSlvsjYg8wN7NTZ1fg",
        "name": "Test Review Form",
        "page_image": null,
        "updated_at": "2025-04-04T13:19:53.000000Z",
        "slug": "cGdkixR",
        "allow_custom_domain": 0,
        "video_feeds_count": 0,
        "audio_feeds_count": 0,
        "text_feeds_count": 0,
        "public_url": "https://www.feedspace.io/u/cGdkixR",
        "public_display_url": "feedspace.io/u/cGdkixR",
        "page_image_url": null,
        "workspace": {
          "id": 5022,
          "unique_workspace_id": "workspace_ZuYEOLliSpLzzH76bk5x7PPY",
          "user_id": 7243,
          "name": "G Workspace",
          "domain": null,
          "custom_domain": null,
          "logo": null,
          "environment": 0,
          "description": "Test",
          "website_url": "",
          "status": 1,
          "is_allowed_public_reviews": 0,
          "created_by": 7243,
          "created_at": "2025-04-04T12:35:54.000000Z",
          "updated_at": "2025-04-04T12:44:26.000000Z",
          "deleted_at": null,
          "logo_url": null
        }
      }
    ],
    "first_page_url": "https://api.feedspace.io/v3/forms?page=1",
    "from": 1,
    "next_page_url": null,
    "path": "https://api.feedspace.io/v3/forms",
    "per_page": 1000,
    "prev_page_url": null,
    "to": 1
  }
}

Authorizations

Authorization
string
header
required

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

Headers

fs-workspace-id
string
required

Workspace unique ID

Response

200 - application/json

A list of review forms.

The response is of type object[].

GET
/
review-forms
curl --request GET \
  --url https://api.feedspace.io/v3/review-forms \
  --header 'Authorization: Bearer <token>' \
  --header 'fs-workspace-id: <fs-workspace-id>'
{
  "data": {
    "current_page": 1,
    "data": [
      {
        "id": 10391,
        "project_id": 5022,
        "unique_form_id": "form_MbgOEoTSlvsjYg8wN7NTZ1fg",
        "name": "Test Review Form",
        "page_image": null,
        "updated_at": "2025-04-04T13:19:53.000000Z",
        "slug": "cGdkixR",
        "allow_custom_domain": 0,
        "video_feeds_count": 0,
        "audio_feeds_count": 0,
        "text_feeds_count": 0,
        "public_url": "https://www.feedspace.io/u/cGdkixR",
        "public_display_url": "feedspace.io/u/cGdkixR",
        "page_image_url": null,
        "workspace": {
          "id": 5022,
          "unique_workspace_id": "workspace_ZuYEOLliSpLzzH76bk5x7PPY",
          "user_id": 7243,
          "name": "G Workspace",
          "domain": null,
          "custom_domain": null,
          "logo": null,
          "environment": 0,
          "description": "Test",
          "website_url": "",
          "status": 1,
          "is_allowed_public_reviews": 0,
          "created_by": 7243,
          "created_at": "2025-04-04T12:35:54.000000Z",
          "updated_at": "2025-04-04T12:44:26.000000Z",
          "deleted_at": null,
          "logo_url": null
        }
      }
    ],
    "first_page_url": "https://api.feedspace.io/v3/forms?page=1",
    "from": 1,
    "next_page_url": null,
    "path": "https://api.feedspace.io/v3/forms",
    "per_page": 1000,
    "prev_page_url": null,
    "to": 1
  }
}

Authorizations

Authorization
string
header
required

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

Headers

fs-workspace-id
string
required

Workspace unique ID

Response

200 - application/json

A list of review forms.

The response is of type object[].