Pixxel Project API

The Project API from Pixxel — 2 operation(s) for project.

Operations 2

GET /v0/projects List projects #
GET /v0/projects/{id} Get project #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/pixxel-project-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

pixxel-project-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Swagger doc for Stargate
  title: stargate AOI Project API
  contact:
    name: Team-Identity
    email: identity@pixxel.co.in
  version: v0.1.0
servers:
- url: https://api.pixxel.space
tags:
- name: Project
paths:
  /v0/projects:
    get:
      security:
      - ApiKeyAuth: []
      description: List projects for the service user
      tags:
      - Project
      summary: List projects
      operationId: ListProjects
      parameters:
      - description: Page number
        name: page_num
        in: query
        schema:
          type: integer
      - description: Page size
        name: page_size
        in: query
        schema:
          type: integer
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/frontier.listProjects'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
      externalDocs:
        description: View developer guide to learn more
        url: /developer/projects/list-get-projects
  /v0/projects/{id}:
    get:
      security:
      - ApiKeyAuth: []
      description: Get project by ID. Only the projects under current service user will be accessible.
      tags:
      - Project
      summary: Get project
      operationId: GetProjectById
      parameters:
      - description: Project ID
        name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/frontier.getProjectById'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
      externalDocs:
        description: View developer guide to learn more
        url: /developer/projects/list-get-projects
components:
  schemas:
    frontier.listProjects:
      type: object
      properties:
        count:
          description: Total count of records, to be used for pagination
          type: integer
        projects:
          type: array
          items:
            type: object
            properties:
              id:
                description: ID of the project
                type: string
                x-order: '0'
              name:
                description: Project slug
                type: string
                x-order: '1'
              title:
                description: Project name
                type: string
                x-order: '2'
              org_id:
                description: Workspace ID this project belongs to
                type: string
                x-order: '3'
              members_count:
                description: Number of users in this project
                type: integer
                x-order: '4'
              created_at:
                description: Project creation datetime
                type: string
                x-order: '5'
              updated_at:
                description: Project update datetime
                type: string
                x-order: '6'
              metadata:
                description: Additional data in the form of key-value pairs
                type: object
                x-order: '7'
    frontier.getProjectById:
      type: object
      properties:
        project:
          type: object
          properties:
            id:
              description: ID of the project
              type: string
              x-order: '0'
            name:
              description: Project slug
              type: string
              x-order: '1'
            title:
              description: Project name
              type: string
              x-order: '2'
            org_id:
              description: Workspace ID this project belongs to
              type: string
              x-order: '3'
            created_at:
              description: Project creation datetime
              type: string
              x-order: '4'
            updated_at:
              description: Project update datetime
              type: string
              x-order: '5'
            metadata:
              description: Additional data in the form of key-value pairs
              type: object
              x-order: '6'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      name: Authorization
      in: header