Get all entries with included images using Contentful REST API

2.3k Views Asked by At

I am using typescript,and the Contentful-ManagementAPI (that's the reason I'm not using the SDK client), and I want to retrieve all entries from a specific type. I am calling th Api like this: axios.get("https://api.contentful.com/spaces/" + space_id + "/entries?content_type=" + content_type+"&include="+2)

I am receiving all the entries requested, but in the image field I am getting this:

poster:en-US: sys: {type: "Link", linkType: "Asset", id: "222xxm9aaAu4GiAc2ESw0Q"}

So, How could I get the image URL? I would appreciate any help. Thanks

3

There are 3 best solutions below

0
On BEST ANSWER

From the Contentful docs:

The CMA does not support the include and locale parameters.

So, I might be better using the delivery api for retrieve content, and the management api for create/update/delete. That's the way it should be used.

0
On

Try include=10, If you are using multi locales provide fallback for each locale. This worked for me.

5
On

The referenced assets and entries can be found in the includes object in the API response.

The response should look something like this:

{
   "sys": {
       "type": "Array"
   },
  "total": 9,
  "skip": 0,
  "limit": 100,
  "items": [ // Your items here ],
  "includes": {
      "Asset": [ // Your included assets here, this is where you find the url to the image ]
      "Entry": [ // Any referenced entries not included in the items array above ]
  }

So to find the actual asset that includes all your data (including the url) you would have to find the correct asset, using the id of the reference (222xxm9aaAu4GiAc2ESw0Q), in the includes.Asset object.