Getir Products API

Endpoints in the products section can be used with product information obtained from restaurant endpoints.

Operations 8

GET /products/{productId}/status Get product status #
PUT /products/{productId}/status Update product status #
GET /products/chain-id/{chainProductId}/status Get product status with chain product id #
PUT /products/chain-id/{chainProductId}/status Update product status with chain product id #
POST /products/{productId}/inactivate-as-option Inactivate restaurant options with product id #
POST /products/{productId}/activate-as-option Activate restaurant options with product id #
POST /products/chain-id/{chainProductId}/inactivate-as-option Inactivate restaurant options with chain product id #
POST /products/chain-id/{chainProductId}/activate-as-option Activate restaurant options with chain product id #

Documentation

Specifications

Other Resources

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/getir-products-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

getir-products-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: GetirFood API Documentation Products API
  version: 1.5.8
  description: Endpoints in the products section can be used with product information obtained from restaurant endpoints.
servers:
- url: https://food-external-api-gateway.getirapi.com/
tags:
- name: products
  description: Endpoints in the products section can be used with product information obtained from restaurant endpoints.
paths:
  /products/{productId}/status:
    get:
      summary: Get product status
      operationId: getProductsProductidStatus
      parameters:
      - description: This token created after login.
        x-convert:
          trim: true
        name: token
        in: header
        required: true
        schema:
          type: string
      - description: Product's Id
        name: productId
        in: path
        required: true
        schema:
          type: string
      tags:
      - products
      responses:
        '200':
          description: Successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Model21'
    put:
      summary: Update product status
      operationId: putProductsProductidStatus
      description: 'Available status are ACTIVE: 100, INACTIVE: 200, DAILY_INACTIVE: 400'
      parameters:
      - description: This token created after login.
        x-convert:
          trim: true
        name: token
        in: header
        required: true
        schema:
          type: string
      - description: Product's Id
        name: productId
        in: path
        required: true
        schema:
          type: string
      tags:
      - products
      responses:
        default:
          description: Successful
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Model34'
  /products/chain-id/{chainProductId}/status:
    get:
      summary: Get product status with chain product id
      operationId: getProductsChainidChainproductidStatus
      parameters:
      - description: This token created after login.
        x-convert:
          trim: true
        name: token
        in: header
        required: true
        schema:
          type: string
      - description: Chain Product's Id
        name: chainProductId
        in: path
        required: true
        schema:
          type: string
      tags:
      - products
      responses:
        '200':
          description: Successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Model21'
    put:
      summary: Update product status with chain product id
      operationId: putProductsChainidChainproductidStatus
      description: 'Available status are ACTIVE: 100, INACTIVE: 200'
      parameters:
      - description: This token created after login.
        x-convert:
          trim: true
        name: token
        in: header
        required: true
        schema:
          type: string
      - description: Chain Product's Id
        name: chainProductId
        in: path
        required: true
        schema:
          type: string
      tags:
      - products
      responses:
        default:
          description: Successful
          content:
            application/json:
              schema:
                type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Model34'
  /products/{productId}/inactivate-as-option:
    post:
      summary: Inactivate restaurant options with product id
      operationId: postProductsProductidInactivateasoption
      description: The endpoint will no longer be supported as of January 1, 2025.
      parameters:
      - description: This token created after login.
        x-convert:
          trim: true
        name: token
        in: header
        required: true
        schema:
          type: string
      - description: Product's Id
        name: productId
        in: path
        required: true
        schema:
          type: string
      tags:
      - products
      responses:
        '200':
          description: Successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Model23'
      deprecated: true
  /products/{productId}/activate-as-option:
    post:
      summary: Activate restaurant options with product id
      operationId: postProductsProductidActivateasoption
      description: The endpoint will no longer be supported as of January 1, 2025.
      parameters:
      - description: This token created after login.
        x-convert:
          trim: true
        name: token
        in: header
        required: true
        schema:
          type: string
      - description: Product's Id
        name: productId
        in: path
        required: true
        schema:
          type: string
      tags:
      - products
      responses:
        '200':
          description: Successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Model23'
      deprecated: true
  /products/chain-id/{chainProductId}/inactivate-as-option:
    post:
      summary: Inactivate restaurant options with chain product id
      operationId: postProductsChainidChainproductidInactivateasoption
      description: The endpoint will no longer be supported as of January 1, 2025.
      parameters:
      - description: This token created after login.
        x-convert:
          trim: true
        name: token
        in: header
        required: true
        schema:
          type: string
      - description: Chain Product's Id
        name: chainProductId
        in: path
        required: true
        schema:
          type: string
      tags:
      - products
      responses:
        '200':
          description: Successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Model23'
      deprecated: true
  /products/chain-id/{chainProductId}/activate-as-option:
    post:
      summary: Activate restaurant options with chain product id
      operationId: postProductsChainidChainproductidActivateasoption
      description: The endpoint will no longer be supported as of January 1, 2025.
      parameters:
      - description: This token created after login.
        x-convert:
          trim: true
        name: token
        in: header
        required: true
        schema:
          type: string
      - description: Chain Product's Id
        name: chainProductId
        in: path
        required: true
        schema:
          type: string
      tags:
      - products
      responses:
        '200':
          description: Successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Model23'
      deprecated: true
components:
  schemas:
    Model23:
      type: object
      properties:
        result:
          type: boolean
    Model34:
      type: object
      properties:
        status:
          type: number
          enum:
          - 100
          - 200
          - 400
    Model21:
      type: object
      properties:
        id:
          type: string
        status:
          type: number