---
canonical: https://amplience.com/developers/docs/apis/asset-management/overview/getting-started/
title: Getting started
description: Getting started with the Amplience GraphQL Management API, with an example query to retrieve assets using the API playground.
audience: Developer
date_published: 2022-06-23
date_modified: 2023-09-21
---

# Getting started

Try running the following query in the [API Playground](https://api.amplience.net/graphql) to retrieve all assets created since the beginning of 2022:

```graphql
{
  assetSearch(
    keyword: "*"
    first: 100
    filters: { createdDate: "2022-01-01T00:00:00.000Z TO NOW" }
    sort: { createdDate: DESC }
  ) {
    total
    pageInfo {
      hasNextPage
      endCursor
    }
    edges {
      node {
        id
        name
      }
    }
  }
}
```

For more query and mutation examples, visit the [Examples page](https://amplience.com/developers/docs/apis/asset-management/overview/examples).
