# getAccessTokensResponse


[API catalog](/reference/api/) · [Docker Hub overview](/reference/api/hub/latest/) · [Product manual](https://docs.docker.com/docker-hub/) · [OpenAPI specification](/reference/api/hub/latest.yaml)

API version: 2-beta



Schema constraints and annotations:

```json
{
  "examples": [
    {
      "active_count": 1,
      "count": 1,
      "next": null,
      "previous": null,
      "results": [
        {
          "client_id": "HUB",
          "created_at": "2021-07-20T12:00:00.000000Z",
          "creator_ip": "127.0.0.1",
          "creator_ua": "some user agent",
          "expires_at": "2021-10-28T18:30:19.520861Z",
          "generated_by": "manual",
          "is_active": true,
          "last_used": null,
          "scopes": [
            "repo:read"
          ],
          "token": "***",
          "token_label": "My read only token",
          "uuid": "b30bbf97-506c-4ecd-aabc-842f3cb484fb"
        }
      ]
    }
  ],
  "properties": {
    "active_count": {
      "example": 1,
      "type": "number"
    },
    "count": {
      "example": 1,
      "type": "number"
    },
    "next": {
      "example": null,
      "type": [
        "string",
        "null"
      ]
    },
    "previous": {
      "example": null,
      "type": [
        "string",
        "null"
      ]
    },
    "results": {
      "items": {
        "allOf": [
          {
            "$ref": "#/components/schemas/accessToken"
          },
          {
            "properties": {
              "token": {
                "example": "***",
                "type": "string"
              }
            },
            "type": "object"
          }
        ]
      },
      "type": "array"
    }
  },
  "type": "object"
}
```



