GET
/
projects
curl --request GET \
  --url https://api.beyondwords.io/v1/projects \
  --header 'X-Api-Key: <api-key>'
[
  {
    "id": 1,
    "name": "My project",
    "language": "en_US",
    "auto_publish_enabled": true,
    "avatar_url": "https://example.com/avatar.jpg",
    "created": "2022-01-02 23:59:59 UTC",
    "updated": "2022-03-04 00:00:00 UTC"
  },
  {
    "id": 2,
    "name": "My second project",
    "language": "en_GB",
    "auto_publish_enabled": true,
    "avatar_url": "https://example.com/avatar.jpg",
    "created": "2022-01-02 23:59:59 UTC",
    "updated": "2022-03-04 00:00:00 UTC"
  }
]

Authorizations

X-Api-Key
string
header
required

Query Parameters

pagination[limit]
integer

'limit' sets the number of results to return in each page.

pagination[offset]
integer

'offset' sets the first position to return from the results of the query. The default is 0, which starts the page at the first result.

Response

200
application/json
OK
id
integer

Unique identifier for the object

name
string

The project name

language
string

The default language of the project

language_data
object

The default language data of the project

title
object
summary
object | null
body
object
background_track
object | null
auto_publish_enabled
boolean

Whether or not the content should be automatically distributed once it has been generated The default is true.

time_zone
string

The project time zone

avatar_url
string | null

The project's avatar url

created
string

Time at which the object was created (ISO 8601)

updated
string

Time at which the object was updated (ISO 8601)