---
title: List codegen rulesets
description: Datadog, the leading service for cloud-scale monitoring.
breadcrumbs: Docs > API Reference > Security Monitoring
---

# List codegen rulesets{% #list-codegen-rulesets %}
Copy pageCopied
{% tab title="v2" %}
**Note**: This endpoint is in preview and is subject to change. If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
| Datadog site      | API endpoint                                                              |
| ----------------- | ------------------------------------------------------------------------- |
| ap1.datadoghq.com | GET https://api.ap1.datadoghq.com/api/v2/static-analysis/codegen/rulesets |
| ap2.datadoghq.com | GET https://api.ap2.datadoghq.com/api/v2/static-analysis/codegen/rulesets |
| app.datadoghq.eu  | GET https://api.datadoghq.eu/api/v2/static-analysis/codegen/rulesets      |
| app.ddog-gov.com  | GET https://api.ddog-gov.com/api/v2/static-analysis/codegen/rulesets      |
| us2.ddog-gov.com  | GET https://api.us2.ddog-gov.com/api/v2/static-analysis/codegen/rulesets  |
| app.datadoghq.com | GET https://api.datadoghq.com/api/v2/static-analysis/codegen/rulesets     |
| us3.datadoghq.com | GET https://api.us3.datadoghq.com/api/v2/static-analysis/codegen/rulesets |
| us5.datadoghq.com | GET https://api.us5.datadoghq.com/api/v2/static-analysis/codegen/rulesets |

### Overview

Get the rulesets relevant for code generation for the authenticated user.

OAuth apps require the `code_analysis_read` authorization [scope](https://docs.datadoghq.com/api/latest/scopes.md#security-monitoring) to access this endpoint.



### Response

{% tab title="200" %}
OK
{% tab title="Model" %}
The response payload containing a list of SAST rulesets and their rules.

| Parent field | Field                               | Type      | Description                                                                                           |
| ------------ | ----------------------------------- | --------- | ----------------------------------------------------------------------------------------------------- |
|              | data [*required*]              | [object]  | The list of SAST rulesets returned in the response.                                                   |
| data         | attributes [*required*]        | object    | The attributes of a SAST ruleset, including its name, description, and rules.                         |
| attributes   | description [*required*]       | string    | A detailed description of the ruleset's purpose and the types of issues it targets.                   |
| attributes   | name [*required*]              | string    | The unique name of the ruleset.                                                                       |
| attributes   | rules [*required*]             | [object]  | The list of static analysis rules included in this ruleset.                                           |
| rules        | arguments                           | [object]  | The list of configurable arguments accepted by this rule.                                             |
| arguments    | description                         | string    | A human-readable explanation of the argument's purpose and accepted values.                           |
| arguments    | name                                | string    | The name of the rule argument.                                                                        |
| rules        | category                            | string    | The category classifying the type of issue this rule detects (e.g., security, style, performance).    |
| rules        | checksum                            | string    | A checksum of the rule definition used to detect changes.                                             |
| rules        | code                                | string    | The rule implementation code used by the static analysis engine.                                      |
| rules        | created_at                          | date-time | The date and time when the rule was created.                                                          |
| rules        | created_by                          | string    | The identifier of the user or system that created the rule.                                           |
| rules        | cve                                 | string    | The CVE identifier associated with the vulnerability this rule detects, if applicable.                |
| rules        | cwe                                 | string    | The CWE identifier associated with the weakness category this rule detects, if applicable.            |
| rules        | data [*required*]              | object    | The resource identifier and type for a static analysis rule.                                          |
| data         | id                                  | string    | The unique identifier of the rule resource.                                                           |
| data         | type [*required*]              | enum      | Rules resource type. Allowed enum values: `rules`                                                     |
| rules        | description                         | string    | A detailed explanation of what the rule detects and why it matters.                                   |
| rules        | documentation_url                   | string    | A URL pointing to additional documentation for this rule.                                             |
| rules        | entity_checked                      | string    | The code entity type (e.g., function, class, variable) that this rule inspects.                       |
| rules        | is_published                        | boolean   | Indicates whether the rule is publicly published and available to all users.                          |
| rules        | is_testing                          | boolean   | Indicates whether the rule is in testing mode and not yet promoted to production.                     |
| rules        | language                            | string    | The programming language this rule applies to.                                                        |
| rules        | last_updated_at                     | date-time | The date and time when the rule was last modified.                                                    |
| rules        | last_updated_by                     | string    | The identifier of the user or system that last updated the rule.                                      |
| rules        | name                                | string    | The unique name identifying this rule within its ruleset.                                             |
| rules        | regex                               | string    | A regular expression pattern used by the rule for pattern-based detection.                            |
| rules        | severity                            | string    | The severity level of findings produced by this rule (e.g., ERROR, WARNING, NOTICE).                  |
| rules        | short_description                   | string    | A brief summary of what the rule detects, suitable for display in listings.                           |
| rules        | should_use_ai_fix                   | boolean   | Indicates whether an AI-generated fix suggestion should be offered for findings from this rule.       |
| rules        | tests                               | [object]  | The list of test cases used to validate the rule's behavior.                                          |
| tests        | annotation_count                    | int64     | The expected number of annotations (findings) the rule should produce when run against the test code. |
| tests        | code                                | string    | The source code snippet used as input for the rule test.                                              |
| tests        | filename                            | string    | The filename associated with the test code snippet.                                                   |
| rules        | tree_sitter_query                   | string    | The Tree-sitter query expression used by the rule to match code patterns in the AST.                  |
| rules        | type                                | string    | The rule type indicating the detection mechanism used (e.g., tree_sitter, regex).                     |
| attributes   | short_description [*required*] | string    | A brief summary of the ruleset, suitable for display in listings.                                     |
| data         | id [*required*]                | string    | The unique identifier of the ruleset resource.                                                        |
| data         | type [*required*]              | enum      | Rulesets resource type. Allowed enum values: `rulesets`                                               |

{% /tab %}

{% tab title="Example" %}

```json
{
  "data": [
    {
      "attributes": {
        "description": "A collection of Python best practice rules.",
        "name": "python-best-practices",
        "rules": [
          {
            "arguments": [
              {
                "description": "string",
                "name": "string"
              }
            ],
            "category": "string",
            "checksum": "string",
            "code": "string",
            "created_at": "2019-09-19T10:00:00.000Z",
            "created_by": "string",
            "cve": "string",
            "cwe": "string",
            "data": {
              "id": "string",
              "type": "rules"
            },
            "description": "string",
            "documentation_url": "string",
            "entity_checked": "string",
            "is_published": false,
            "is_testing": false,
            "language": "string",
            "last_updated_at": "2019-09-19T10:00:00.000Z",
            "last_updated_by": "string",
            "name": "string",
            "regex": "string",
            "severity": "string",
            "short_description": "string",
            "should_use_ai_fix": false,
            "tests": [
              {
                "annotation_count": "integer",
                "code": "string",
                "filename": "string"
              }
            ],
            "tree_sitter_query": "string",
            "type": "string"
          }
        ],
        "short_description": "Python best practices ruleset."
      },
      "id": "python-best-practices",
      "type": "rulesets"
    }
  ]
}
```

{% /tab %}

{% /tab %}

{% tab title="400" %}
Bad Request
{% tab title="Model" %}
API error response.

| Parent field | Field                    | Type     | Description                                                                     |
| ------------ | ------------------------ | -------- | ------------------------------------------------------------------------------- |
|              | errors [*required*] | [object] | A list of errors.                                                               |
| errors       | detail                   | string   | A human-readable explanation specific to this occurrence of the error.          |
| errors       | meta                     | object   | Non-standard meta-information about the error                                   |
| errors       | source                   | object   | References to the source of the error.                                          |
| source       | header                   | string   | A string indicating the name of a single request header which caused the error. |
| source       | parameter                | string   | A string indicating which URI query parameter caused the error.                 |
| source       | pointer                  | string   | A JSON pointer to the value in the request document that caused the error.      |
| errors       | status                   | string   | Status code of the response.                                                    |
| errors       | title                    | string   | Short human-readable summary of the error.                                      |

{% /tab %}

{% tab title="Example" %}

```json
{
  "errors": [
    {
      "detail": "Missing required attribute in body",
      "meta": {},
      "source": {
        "header": "Authorization",
        "parameter": "limit",
        "pointer": "/data/attributes/title"
      },
      "status": "400",
      "title": "Bad Request"
    }
  ]
}
```

{% /tab %}

{% /tab %}

{% tab title="401" %}
Unauthorized
{% tab title="Model" %}
API error response.

| Parent field | Field                    | Type     | Description                                                                     |
| ------------ | ------------------------ | -------- | ------------------------------------------------------------------------------- |
|              | errors [*required*] | [object] | A list of errors.                                                               |
| errors       | detail                   | string   | A human-readable explanation specific to this occurrence of the error.          |
| errors       | meta                     | object   | Non-standard meta-information about the error                                   |
| errors       | source                   | object   | References to the source of the error.                                          |
| source       | header                   | string   | A string indicating the name of a single request header which caused the error. |
| source       | parameter                | string   | A string indicating which URI query parameter caused the error.                 |
| source       | pointer                  | string   | A JSON pointer to the value in the request document that caused the error.      |
| errors       | status                   | string   | Status code of the response.                                                    |
| errors       | title                    | string   | Short human-readable summary of the error.                                      |

{% /tab %}

{% tab title="Example" %}

```json
{
  "errors": [
    {
      "detail": "Missing required attribute in body",
      "meta": {},
      "source": {
        "header": "Authorization",
        "parameter": "limit",
        "pointer": "/data/attributes/title"
      },
      "status": "400",
      "title": "Bad Request"
    }
  ]
}
```

{% /tab %}

{% /tab %}

{% tab title="429" %}
Too many requests
{% tab title="Model" %}
API error response.

| Field                    | Type     | Description       |
| ------------------------ | -------- | ----------------- |
| errors [*required*] | [string] | A list of errors. |

{% /tab %}

{% tab title="Example" %}

```json
{
  "errors": [
    "Bad Request"
  ]
}
```

{% /tab %}

{% /tab %}

### Code Example

##### 
                  \# Curl command curl -X GET "https://api.datadoghq.com/api/v2/static-analysis/codegen/rulesets" \
-H "Accept: application/json" \
-H "DD-API-KEY: ${DD_API_KEY}" \
-H "DD-APPLICATION-KEY: ${DD_APP_KEY}" 
                
{% /tab %}
