{
  "info": {
    "name": "Talenthic Public API",
    "_postman_id": "talenthic-public-v1",
    "description": "Enterprise jobs & employers intelligence.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "variable": [
    {
      "key": "TALENTHIC_API_KEY",
      "value": "your-api-key-here"
    },
    {
      "key": "baseUrl",
      "value": "https://talenthic.info/api/public/v1"
    }
  ],
  "item": [
    {
      "name": "System",
      "item": [
        {
          "name": "Health",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "x-api-key",
                "value": "{{TALENTHIC_API_KEY}}"
              }
            ],
            "url": {
              "raw": "https://talenthic.info/api/public/v1/health",
              "host": [
                "talenthic.info"
              ],
              "path": [
                "api",
                "public",
                "v1",
                "health"
              ],
              "query": []
            }
          }
        }
      ]
    },
    {
      "name": "Jobs",
      "item": [
        {
          "name": "Search jobs",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "x-api-key",
                "value": "{{TALENTHIC_API_KEY}}"
              }
            ],
            "url": {
              "raw": "https://talenthic.info/api/public/v1/jobs?q=react&work_mode=remote&limit=20",
              "host": [
                "talenthic.info"
              ],
              "path": [
                "api",
                "public",
                "v1",
                "jobs"
              ],
              "query": [
                {
                  "key": "q",
                  "value": "react"
                },
                {
                  "key": "work_mode",
                  "value": "remote"
                },
                {
                  "key": "limit",
                  "value": "20"
                }
              ]
            }
          }
        },
        {
          "name": "Get job by id",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "x-api-key",
                "value": "{{TALENTHIC_API_KEY}}"
              }
            ],
            "url": {
              "raw": "https://talenthic.info/api/public/v1/jobs/{{jobId}}",
              "host": [
                "talenthic.info"
              ],
              "path": [
                "api",
                "public",
                "v1",
                "jobs",
                "{{jobId}}"
              ],
              "query": []
            }
          }
        }
      ]
    },
    {
      "name": "Companies",
      "item": [
        {
          "name": "List companies",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "x-api-key",
                "value": "{{TALENTHIC_API_KEY}}"
              }
            ],
            "url": {
              "raw": "https://talenthic.info/api/public/v1/companies?verified=true&limit=50",
              "host": [
                "talenthic.info"
              ],
              "path": [
                "api",
                "public",
                "v1",
                "companies"
              ],
              "query": [
                {
                  "key": "verified",
                  "value": "true"
                },
                {
                  "key": "limit",
                  "value": "50"
                }
              ]
            }
          }
        },
        {
          "name": "Get company",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "x-api-key",
                "value": "{{TALENTHIC_API_KEY}}"
              }
            ],
            "url": {
              "raw": "https://talenthic.info/api/public/v1/companies/{{slug}}",
              "host": [
                "talenthic.info"
              ],
              "path": [
                "api",
                "public",
                "v1",
                "companies",
                "{{slug}}"
              ],
              "query": []
            }
          }
        },
        {
          "name": "Company jobs",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "x-api-key",
                "value": "{{TALENTHIC_API_KEY}}"
              }
            ],
            "url": {
              "raw": "https://talenthic.info/api/public/v1/companies/{{slug}}/jobs?limit=50",
              "host": [
                "talenthic.info"
              ],
              "path": [
                "api",
                "public",
                "v1",
                "companies",
                "{{slug}}",
                "jobs"
              ],
              "query": [
                {
                  "key": "limit",
                  "value": "50"
                }
              ]
            }
          }
        }
      ]
    },
    {
      "name": "Insights",
      "item": [
        {
          "name": "Trending skills",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "x-api-key",
                "value": "{{TALENTHIC_API_KEY}}"
              }
            ],
            "url": {
              "raw": "https://talenthic.info/api/public/v1/skills",
              "host": [
                "talenthic.info"
              ],
              "path": [
                "api",
                "public",
                "v1",
                "skills"
              ],
              "query": []
            }
          }
        },
        {
          "name": "Stats",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "x-api-key",
                "value": "{{TALENTHIC_API_KEY}}"
              }
            ],
            "url": {
              "raw": "https://talenthic.info/api/public/v1/stats",
              "host": [
                "talenthic.info"
              ],
              "path": [
                "api",
                "public",
                "v1",
                "stats"
              ],
              "query": []
            }
          }
        }
      ]
    }
  ]
}