Audits

Get all completed audits

List all completed audits.

GET https://alpha.radrugs.io/api/list-all

Query Parameters

{
  "projects": [
    {
      "_id": "1233344343",
      "name": "Project1",
      "certificate_url": "no-cert",
      "text": "Test Description",
      "version": 2,
      "status": "Pre Mint",
      "logo_url": "no-logo",
      "website": "",
      "twitter": "",
      "discord": "",
      "discord_invite": "",
      "chain": "SOL",
      "mint_supply": 0,
      "mint_price": 0,
      "is_doxed": true,
      "project_tags": ",",
      "onboarding_date": 1647969340832,
      "mint_date": 1647969340832,
      "created_at": 1647969340832,
      "updated_at": 1647969340832,
      "extra_red_flags": "",
      "badges": {
        "fundamentals": false,
        "utility": false,
        "social": false,
        "community": false,
        "partnership": true
      },
      "total_score": 33,
      "risk_level": "high"
    },
    {
      "_id": "1234432142",
      "name": "Project2",
      "certificate_url": "no-cert",
      "text": "Description 2",
      "version": 2,
      "status": "Pre Mint",
      "logo_url": "https://imagedelivery.net/image2.png",
      "website": "https://www.url.com/",
      "twitter": "gocoinfra",
      "discord": "12434323521",
      "discord_invite": "https://discord.gg/project2",
      "chain": "SOL",
      "mint_supply": "TBA",
      "mint_price": "TBA",
      "is_doxed": false,
      "project_tags": ",,,,",
      "onboarding_date": 1647934754009,
      "mint_date": 1647934740000,
      "created_at": 1647934754009,
      "updated_at": 1647965054599,
      "extra_red_flags": "Most items on the roadmap are unclear",
      "badges": {
        "fundamentals": false,
        "utility": false,
        "social": false,
        "community": false,
        "partnership": false
      },
      "total_score": 55,
      "risk_level": "medium"
    },
    {
      "_id": "623921d665b2a40a87075fd8",
      "name": "Project3",
      "certificate_url": "no-cert",
      "text": "Description 3",
      "version": 2,
      "status": "Pre Mint",
      "logo_url": "no-logo",
      "website": "https://website.io/",
      "twitter": "Project3_NFT",
      "discord": "98436732832623",
      "discord_invite": "https://discord.gg/project3",
      "chain": "SOL",
      "mint_supply": "1000",
      "mint_price": "TBA",
      "is_doxed": false,
      "project_tags": "token,staking,",
      "onboarding_date": 1647911385403,
      "mint_date": 1648853520000,
      "created_at": 1647911385403,
      "updated_at": 1647911385403,
      "extra_red_flags": "",
      "badges": {
        "fundamentals": true,
        "utility": false,
        "social": false,
        "community": true,
        "partnership": false
      },
      "total_score": 92,
      "risk_level": "low"
    }]
}

Find an audit by project name

Get the latest project's audit by project name.

GET https://alpha.radrugs.io/api/find-project

Path Parameters

Query Parameters

{
  "error": false,
  "data": {
    "_id": "123456778",
    "name": "Project ABC",
    "certificate_url": "no-cert",
    "text": "This project is an NFT project built on the Solana Blockchain.",
    "version": 2,
    "status": "Pre Mint",
    "logo_url": "https://imagedelivery.net/image.png",
    "website": "https://projectabc.com/",
    "twitter": "ProjectABC_NFT",
    "discord": "1233434432332",
    "discord_invite": "https://discord.gg/projectABC",
    "chain": "SOL",
    "mint_supply": "2222",
    "mint_price": "1",
    "is_doxed": false,
    "project_tags": "staking,metaverse",
    "onboarding_date": 1647561253286,
    "mint_date": "",
    "created_at": 1647561253286,
    "updated_at": 1647561489378,
    "extra_red_flags": "No mention of the team on the website, No tokenomics",
    "badges": {
      "fundamentals": true,
      "utility": false,
      "social": false,
      "community": true,
      "partnership": false
    },
    "total_score": 64,
    "risk_level": "high"
  }
}

Get audit count

Get the number of reviews in progress or completed.

GET https://alpha.radrugs.io/projects-count

Query Parameters

{
    projects_count: 245
}

Last updated