API Documentation
The Infogram API platform connects your website or application with the infographics.

GET infographics

Returns all infographics (both public and non-public) of the current user

Resource URL

https://infogr.am/service/v1/infographics

Parameters

none

Response

A successful response contains HTTP status 200 “OK” with response body containing a string representing JSON array with elements with the same structure as described in GET infographics/:id.

Example request

curl -XGET "http://infogr.am/service/v1/infographics?api_key=nMECGhmHe9&api_sig=VD4TishLdxlaktbItPM8JPdYdzg%3D"

Example response

HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Content-Length: 658
[
    {
        "id": "cea779c3-4f05-4b91-bcb0-1c1871148814",
        "title": "Testing API",
        "theme_id": 45,
        "published": false,
        "thumbnail_url": "https://s3-eu-west-1.amazonaws.com/infogram-thumbs-200/cea779c3-4f05-4b91-bcb0-1c1871148814.jpg",
        "date_modified": "2014-11-19T12:06:36.000Z"
    }, {
        "id": "e04ceaf9-5a3f-4c5b-9d24-455e89d97e89",
        "title": "Hello world",
        "theme_id": 20,
        "published": true,
        "thumbnail_url": "https://s3-eu-west-1.amazonaws.com/infogram-thumbs-200/e04ceaf9-5a3f-4c5b-9d24-455e89d97e89.jpg",
        "date_modified": "2014-11-24T13:05:41.000Z",
        "url": "https://infogr.am/e04ceaf9-5a3f-4c5b-9d24-455e89d97e89"
    }
]